Changeset 560 for python


Ignore:
Timestamp:
Feb 26, 2015, 5:22:48 PM (10 years ago)
Author:
Yuri Dario
Message:

python: -O3 breaks the build, at least for pentium4 march.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk/configure

    r400 r560  
    59565956                OPT="-g -O0 -Wall $STRICT_PROTO"
    59575957            else
    5958                 OPT="-g $WRAP -O3 -Wall $STRICT_PROTO"
     5958                OPT="-g $WRAP -O2 -Wall $STRICT_PROTO"
    59595959            fi
    59605960            ;;
    59615961        *)
    5962             OPT="-O3 -Wall $STRICT_PROTO"
     5962            OPT="-O2 -Wall $STRICT_PROTO"
    59635963            ;;
    59645964        esac
  • python/trunk/configure.ac

    r400 r560  
    10811081                OPT="-g -O0 -Wall $STRICT_PROTO"
    10821082            else
    1083                 OPT="-g $WRAP -O3 -Wall $STRICT_PROTO"
     1083                OPT="-g $WRAP -O2 -Wall $STRICT_PROTO"
    10841084            fi
    10851085            ;;
    10861086        *)
    1087             OPT="-O3 -Wall $STRICT_PROTO"
     1087            OPT="-O2 -Wall $STRICT_PROTO"
    10881088            ;;
    10891089        esac
Note: See TracChangeset for help on using the changeset viewer.