summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Siek <jeremy.siek@gmail.com>2000-12-09 16:48:26 +0000
committerJeremy Siek <jeremy.siek@gmail.com>2000-12-09 16:48:26 +0000
commit9e4f9eaff6515de6a8cec2dc407631795976f3f0 (patch)
tree763ffde306912c1f884ca6deca0f059cabbf9424
parent81ec0bb4dd82ee8df863fbb6d9336a508008c12b (diff)
downloadboost-9e4f9eaff6515de6a8cec2dc407631795976f3f0.tar.gz
added -Wno-long-long to suppress warnings about long long
[SVN r8424]
-rw-r--r--libs/regrtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/regrtest.py b/libs/regrtest.py
index 3986babb27..c8f9fe5f57 100644
--- a/libs/regrtest.py
+++ b/libs/regrtest.py
@@ -87,7 +87,7 @@ def compile( program ):
if compiler_arg == "*" or compiler_arg =="suncc":
invoke("Sun WorkShop 6 2000/04/07 C++ 5.1", 'CC -c -I' + path + ' ' + fullpath )
if compiler_arg == "*" or compiler_arg == "gcc":
- invoke( "GCC 2.95.2", 'g++ -Wall -pedantic -ftemplate-depth-30 -c -I' + path + ' ' + fullpath )
+ invoke( "GCC 2.95.2", 'g++ -Wall -pedantic -ftemplate-depth-30 -Wno-long-long -c -I' + path + ' ' + fullpath )
if compiler_arg == "*" or compiler_arg == "kcc":
invoke( "KCC 3.4g", 'KCC --strict_warnings -I' + path + ' ' + fullpath )