[llvm-commits] CVS: llvm/include/boost/config/compiler/gcc.hpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Nov 4 19:32:01 PST 2003
Changes in directory llvm/include/boost/config/compiler:
gcc.hpp updated: 1.3 -> 1.4
---
Log message:
This works with GCC 3.4 also
---
Diffs of the changes: (+2 -2)
Index: llvm/include/boost/config/compiler/gcc.hpp
diff -u llvm/include/boost/config/compiler/gcc.hpp:1.3 llvm/include/boost/config/compiler/gcc.hpp:1.4
--- llvm/include/boost/config/compiler/gcc.hpp:1.3 Fri Jul 25 12:33:45 2003
+++ llvm/include/boost/config/compiler/gcc.hpp Tue Nov 4 19:31:12 2003
@@ -49,8 +49,8 @@
# error "Compiler not configured - please reconfigure"
#endif
//
-// last known and checked version is 3.3:
-#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 3))
+// last known and checked version is 3.4:
+#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 4))
# if defined(BOOST_ASSERT_CONFIG)
# error "Unknown compiler version - please run the configure tests and report the results"
# else
More information about the llvm-commits
mailing list