From e8ce7b2fb23bf8e5c60badcdf013c559fbcb4ff8 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Wed, 27 Sep 2000 21:53:21 +0000 Subject: [PATCH] moved from STLport 4.0b8 to STLport 4.0 (release) added Comeau C++ 4.2.44 beta3 with gcc 2.95.2 as back-end and STLport 4.0 [SVN r7863] --- libs/cs-linux2.html | 21 +++++++++++++++++++-- libs/regrtest.py | 9 +++++++-- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/libs/cs-linux2.html b/libs/cs-linux2.html index f03582028e..91a8d0a80e 100644 --- a/libs/cs-linux2.html +++ b/libs/cs-linux2.html @@ -6,93 +6,110 @@ Compiler Status: Linux/x86

Compiler Status: Linux/x86

-

Run Date: 23 Sep 2000 GMT

+

Run Date: 27 Sep 2000 GMT

- + + + + + + + + + + + + + + + + + +
Program GNU
GCC
2.95.2
GNU
GCC
2.95.2
STLport
4.0 beta 8
GNU
GCC
2.95.2
STLport
4.0
Comeau C++
4.2.44 beta3
STLport
4.0
config/config_test.cpp yes yesyes
array/array1.cpp no yesyes
functional/function_test.cpp yes yesno
integer/cstdint_test.cpp yes yesyes
integer/integer_test.cpp yes yesyes
integer/integer_traits_test.cpp yes yesyes
rational/rational_example.cpp yes yesyes
random/random_test.cpp yes yesyes
random/random_demo.cpp yes yesyes
smart_ptr/smart_ptr_test.cpp yes yesyes
utility/call_traits_test.cpp yes yesyes
utility/cast_test.cpp yes yesyes
utility/compressed_pair_test.cpp yes yesyes
utility/iterators_test.cpp yes yesyes
utility/operators_test.cpp yes yesyes
utility/type_traits_test.cpp yes yesyes
diff --git a/libs/regrtest.py b/libs/regrtest.py index 7f88236ae3..10f200f0d8 100644 --- a/libs/regrtest.py +++ b/libs/regrtest.py @@ -10,6 +10,7 @@ # bcc55 = Borland 5.5.1 # cw = Metrowerks CodeWarrior # gcc = GNU GCC/egcs +# como = Comeau C++ # vc = Microsoft Visual C++ # vcstlport = Microsoft Visual C++ with STLport library # @@ -68,9 +69,11 @@ def compile( program ): if compiler_arg == "*" or compiler_arg == "gcc": invoke( "GCC 2.95.2", 'g++ -ftemplate-depth-30 -I' + path + ' ' + fullpath ) 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 ) + invoke( "GCC 2.95.2 STLport 4.0", 'g++ -V 2.95.2-stlport -ftemplate-depth-30 -I' + path + ' ' + fullpath ) # if compiler_arg == "*" or compiler_arg == "gcc-exp": # invoke( "GCC pre-2.96 experimental", '/opt/exp/gcc/bin/g++ -ftemplate-depth-30 -I' + path + ' ' + fullpath ) + if compiler_arg == "*" or compiler_arg == "como": + invoke( "Comeau C++ 4.2.44 beta3", 'como -I' + path + ' ' + fullpath) else: if compiler_arg=="*" or compiler_arg=="bcc54": bcc54_path=os.environ["BOOST_BCC54_PATH"] @@ -163,9 +166,11 @@ if sys.platform == "linux2": if compiler_arg == "*" or compiler_arg == "gcc": f.write( "GNU
GCC
2.95.2\n" ) if compiler_arg == "*" or compiler_arg == "gcc-stlport": - f.write( "GNU
GCC
2.95.2
STLport
4.0 beta 8\n" ) + f.write( "GNU
GCC
2.95.2
STLport
4.0\n" ) # if compiler_arg == "*" or compiler_arg == "gcc-exp": # f.write( "GNU
GCC
pre-2.96 experimental\n" ) + if compiler_arg == "*" or compiler_arg == "como": + f.write( "Comeau C++
4.2.44 beta3
STLport
4.0\n" ) else: if compiler_arg=="*" or compiler_arg=="bcc54": f.write( "Borland
BCC
5.4 up2\n" )