in reply to Problem Compiling Perl 5.20.1 on AIX
Your -Dcc cannot have a regex.
You do not have - by accident - $CC also set or (through a symlink) pointing to a different cc.
Use -Duse64bitall instead of -Duse64bitint.
$ env OBJECT_MODE=64 ./Configure -Dusethreads -Duse64bitall \ -Dprefix=/db/sched1/common/perl5/perl-5.20.1 -des
should do the trick. If you really want to specify your compiler, do it without regex or in the env:
$ export OBJECT_MODE=64 $ export CC=/usr/vac/bin/cc99_r $ ./Configure -Dusethreads -Duse64bitall \ -Dprefix=/db/sched1/common/perl5/perl-5.20.1 -des
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem Compiling Perl 5.20.1 on AIX
by ChuckP (Novice) on Dec 05, 2014 at 16:06 UTC | |
by Tux (Canon) on Dec 05, 2014 at 19:27 UTC | |
by ChuckP (Novice) on Dec 08, 2014 at 02:46 UTC |