From 7301e4df06fb57f36857436d2011774bf58b94c4 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Sun, 6 Aug 2000 20:31:30 +0000 Subject: [PATCH] Always need to use "g++" (not "gcc") to get the proper libraries [SVN r7687] --- libs/regrtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/regrtest.py b/libs/regrtest.py index 9760e6074c..d4b1286c91 100644 --- a/libs/regrtest.py +++ b/libs/regrtest.py @@ -70,7 +70,7 @@ def compile( program ): if compiler_arg == "*" or compiler_arg == "gcc-stlport": invoke( "GCC 2.95.2 STLport 4.0b8", 'g++ -V 2.95.2-stlport -ftemplate-depth-30 -I' + path + ' ' + fullpath ) # if compiler_arg == "*" or compiler_arg == "gcc-exp": -# invoke( "GCC 2.96-xxx experimental", '/opt/exp/gcc/bin/gcc -ftemplate-depth-30 -I' + path + ' ' + fullpath ) +# invoke( "GCC pre-2.96 experimental", '/opt/exp/gcc/bin/g++ -ftemplate-depth-30 -I' + path + ' ' + fullpath ) else: if compiler_arg=="*" or compiler_arg=="bcc54": bcc54_path=os.environ["BOOST_BCC54_PATH"] @@ -165,7 +165,7 @@ if sys.platform == "linux2": if compiler_arg == "*" or compiler_arg == "gcc-stlport": f.write( "GNU
GCC
2.95.2
STLport
4.0 beta 8\n" ) # if compiler_arg == "*" or compiler_arg == "gcc-exp": -# f.write( "GNU
GCC
2.96-xxx experimental\n" ) +# f.write( "GNU
GCC
pre-2.96 experimental\n" ) else: if compiler_arg=="*" or compiler_arg=="bcc54": f.write( "Borland
BCC
5.4\n" )