mirror of
https://github.com/python/cpython.git
synced 2025-11-13 15:40:05 +00:00
SF patch #719359, fix test_long failure on OSF/1 with vendor cc
This also fixes several other bugs and patches by providing the proper arguments to cc: 738066 and 741806 need -ieee, 693094 needs -std
This commit is contained in:
parent
54f871e193
commit
b44f16592f
2 changed files with 7 additions and 1 deletions
5
configure
vendored
5
configure
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 1.411 .
|
# From configure.in Revision: 1.412 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.53 for python 2.3.
|
# Generated by GNU Autoconf 2.53 for python 2.3.
|
||||||
#
|
#
|
||||||
|
|
@ -3648,6 +3648,9 @@ yes)
|
||||||
OpenUNIX*|UnixWare*)
|
OpenUNIX*|UnixWare*)
|
||||||
BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
|
BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
|
||||||
;;
|
;;
|
||||||
|
OSF*)
|
||||||
|
BASECFLAGS="$BASECFLAGS -ieee -std"
|
||||||
|
;;
|
||||||
SCO_SV*)
|
SCO_SV*)
|
||||||
BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
|
BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
|
|
@ -646,6 +646,9 @@ yes)
|
||||||
OpenUNIX*|UnixWare*)
|
OpenUNIX*|UnixWare*)
|
||||||
BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
|
BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
|
||||||
;;
|
;;
|
||||||
|
OSF*)
|
||||||
|
BASECFLAGS="$BASECFLAGS -ieee -std"
|
||||||
|
;;
|
||||||
SCO_SV*)
|
SCO_SV*)
|
||||||
BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
|
BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue