Cures for _57 in AIX 4.1.5.0.
authorJarkko Hietaniemi <jhi@iki.fi>
Tue, 25 May 1999 21:59:21 +0000 (21:59 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 25 May 1999 21:59:21 +0000 (21:59 +0000)
(1) The lddlflags lost its -lc by change #3660
    (and the politeness of change #3257).
(2) optype_size must end up in perl.exp (as PL_optype_size).
    Added it to perlvars.h, fixed bytecode.pl,
    regen'ed the relevant headers.

p4raw-link: @3660 (not found)
p4raw-link: @3257 on //depot/cfgperl: 5f3774a9b49fbaa1b06fec2cad77079ee509d6ca

p4raw-id: //depot/perl@3479

hints/aix.sh

index d5ce755..995fc9c 100644 (file)
@@ -104,10 +104,10 @@ esac
 #                           symbol: boot_$(EXP)  can it be auto-generated?
 case "$osvers" in
 3*) 
-    lddlflags='-H512 -T512 -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -e _nostart'
+    lddlflags="$lddlflags -H512 -T512 -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -e _nostart -c"
     ;;
 *) 
-    lddlflags='-bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -b noentry'
+    lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -b noentry -c"
     ;;
 esac