diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-10 12:49:51 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-10 12:49:51 (GMT) |
commit | 9a37a543ac3f1208101954b3a3a3cc5bbb35349f (patch) | |
tree | b06266eb5f0b71c2d8da0989b6a0d3ab2a511e78 /CGAL-Valgrind-Enable-Hack.patch | |
parent | 8b1cd86d7f57723d4102a685149364672acb6b0e (diff) |
Clifford Wolf:
Added little CGAL patch to allow running with valgrind
Added valgind suppressions file
git-svn-id: http://svn.clifford.at/openscad/trunk@259 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'CGAL-Valgrind-Enable-Hack.patch')
-rw-r--r-- | CGAL-Valgrind-Enable-Hack.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CGAL-Valgrind-Enable-Hack.patch b/CGAL-Valgrind-Enable-Hack.patch new file mode 100644 index 0000000..90733fc --- /dev/null +++ b/CGAL-Valgrind-Enable-Hack.patch @@ -0,0 +1,16 @@ +--- CGAL-3.4/include/CGAL/Interval_nt.h ++++ CGAL-3.4/include/CGAL/Interval_nt.h +@@ -149,11 +149,13 @@ + // The macros CGAL_IA_MUL and CGAL_IA_DIV stop constant propagation only + // on the second argument, so if -fno-rounding-math, the compiler optimizes + // the 2 negations and we get wrong rounding. ++#if 0 + typename Interval_nt<>::Internal_protector P; + CGAL_assertion_msg(-CGAL_IA_MUL(-1.1, 10.1) != CGAL_IA_MUL(1.1, 10.1), + "Wrong rounding: did you forget the -frounding-math option if you use GCC?"); + CGAL_assertion_msg(-CGAL_IA_DIV(-1, 10) != CGAL_IA_DIV(1, 10), + "Wrong rounding: did you forget the -frounding-math option if you use GCC?"); ++#endif + } + }; + |