| 1 | If you read this file _as_is_, just ignore the funny characters you see.
|
|---|
| 2 | It is written in the POD format (see pod/perlpod.pod) which is specially
|
|---|
| 3 | designed to be readable as is.
|
|---|
| 4 |
|
|---|
| 5 | =head1 NAME
|
|---|
| 6 |
|
|---|
| 7 | README.qnx - Perl version 5 on QNX
|
|---|
| 8 |
|
|---|
| 9 | =head1 DESCRIPTION
|
|---|
| 10 |
|
|---|
| 11 | As of perl5.7.2 all tests pass under:
|
|---|
| 12 |
|
|---|
| 13 | QNX 4.24G
|
|---|
| 14 | Watcom 10.6 with Beta/970211.wcc.update.tar.F
|
|---|
| 15 | socket3r.lib Nov21 1996.
|
|---|
| 16 |
|
|---|
| 17 | As of perl5.8.1 there is at least one test still failing.
|
|---|
| 18 |
|
|---|
| 19 | Some tests may complain under known circumstances.
|
|---|
| 20 |
|
|---|
| 21 | See below and hints/qnx.sh for more information.
|
|---|
| 22 |
|
|---|
| 23 | Under QNX 6.2.0 there are still a few tests which fail.
|
|---|
| 24 | See below and hints/qnx.sh for more information.
|
|---|
| 25 |
|
|---|
| 26 | =head2 Required Software for Compiling Perl on QNX4
|
|---|
| 27 |
|
|---|
| 28 | As with many unix ports, this one depends on a few "standard"
|
|---|
| 29 | unix utilities which are not necessarily standard for QNX4.
|
|---|
| 30 |
|
|---|
| 31 | =over 4
|
|---|
| 32 |
|
|---|
| 33 | =item /bin/sh
|
|---|
| 34 |
|
|---|
| 35 | This is used heavily by Configure and then by
|
|---|
| 36 | perl itself. QNX4's version is fine, but Configure
|
|---|
| 37 | will choke on the 16-bit version, so if you are
|
|---|
| 38 | running QNX 4.22, link /bin/sh to /bin32/ksh
|
|---|
| 39 |
|
|---|
| 40 | =item ar
|
|---|
| 41 |
|
|---|
| 42 | This is the standard unix library builder.
|
|---|
| 43 | We use wlib. With Watcom 10.6, when wlib is
|
|---|
| 44 | linked as "ar", it behaves like ar and all is
|
|---|
| 45 | fine. Under 9.5, a cover is required. One is
|
|---|
| 46 | included in ../qnx
|
|---|
| 47 |
|
|---|
| 48 | =item nm
|
|---|
| 49 |
|
|---|
| 50 | This is used (optionally) by configure to list
|
|---|
| 51 | the contents of libraries. I will generate
|
|---|
| 52 | a cover function on the fly in the UU directory.
|
|---|
| 53 |
|
|---|
| 54 | =item cpp
|
|---|
| 55 |
|
|---|
| 56 | Configure and perl need a way to invoke a C
|
|---|
| 57 | preprocessor. I have created a simple cover
|
|---|
| 58 | for cc which does the right thing. Without this,
|
|---|
| 59 | Configure will create its own wrapper which works,
|
|---|
| 60 | but it doesn't handle some of the command line arguments
|
|---|
|
|---|