|
Boost-Commit : |
From: john_at_[hidden]
Date: 2008-04-18 06:03:46
Author: johnmaddock
Date: 2008-04-18 06:03:46 EDT (Fri, 18 Apr 2008)
New Revision: 44533
URL: http://svn.boost.org/trac/boost/changeset/44533
Log:
Removed command line options that screw up Intel on Darwin.
Added warning suppression to code instead.
Text files modified:
trunk/libs/math/test/Jamfile.v2 | 9 ++++-----
trunk/libs/math/test/handle_test_result.hpp | 5 +++++
2 files changed, 9 insertions(+), 5 deletions(-)
Modified: trunk/libs/math/test/Jamfile.v2
==============================================================================
--- trunk/libs/math/test/Jamfile.v2 (original)
+++ trunk/libs/math/test/Jamfile.v2 2008-04-18 06:03:46 EDT (Fri, 18 Apr 2008)
@@ -13,11 +13,8 @@
<toolset>gcc:<cxxflags>-Wno-missing-braces
<toolset>darwin:<cxxflags>-Wno-missing-braces
<toolset>acc:<cxxflags>+W2068,2461,2236,4070,4069
- <toolset>intel:<cxxflags>-Qwd264
- <toolset>intel:<cxxflags>-Qwd239
- <toolset>intel:<cxxflags>/nologo
- <toolset>intel-linux:<cxxflags>-wd239
- <toolset>intel:<linkflags>/nologo
+ <toolset>intel:<cxxflags>-nologo
+ <toolset>intel:<linkflags>-nologo
<toolset>msvc:<warnings>all
<toolset>msvc:<asynch-exceptions>on
<toolset>msvc:<cxxflags>/wd4996
@@ -492,3 +489,5 @@
run complex_test.cpp ;
+
+
Modified: trunk/libs/math/test/handle_test_result.hpp
==============================================================================
--- trunk/libs/math/test/handle_test_result.hpp (original)
+++ trunk/libs/math/test/handle_test_result.hpp 2008-04-18 06:03:46 EDT (Fri, 18 Apr 2008)
@@ -12,6 +12,11 @@
#include <boost/regex.hpp>
#include <boost/test/test_tools.hpp>
+#if defined(BOOST_INTEL)
+# pragma warning(disable:239)
+# pragma warning(disable:264)
+#endif
+
//
// Every client of this header has to define this function,
// and initialise the table of expected results:
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk