perl 5.003_05: hints/sco.sh
Perl 5 Porters [Mon, 2 Sep 1996 22:18:45 +0000 (22:18 +0000)]
Turn off optimization for stock cc.  This appears to
prevent miniperl core dumps.

hints/sco.sh

index 7b20073..a9e3eff 100644 (file)
@@ -76,7 +76,11 @@ icc)# Apparently, SCO's cc gives rather verbose warnings
        esac
        ;;
 
-*)     # Apparently, SCO's cc gives rather verbose warnings
+*)     # Apparently, miniperl core dumps if -O is used.
+       case "$optimize" in
+       '') optimize=none ;;
+       esac
+       # Apparently, SCO's cc gives rather verbose warnings
        # Set -w0 to turn them off.
        case $scorls in
        3) ccflags="$ccflags -W0 -quiet -U M_XENIX" ;;