[llvm-commits] [llvm] r172581 - /llvm/trunk/utils/llvm-compilers-check

David Greene greened at obbligato.org
Tue Jan 15 16:17:39 PST 2013


Author: greened
Date: Tue Jan 15 18:17:38 2013
New Revision: 172581

URL: http://llvm.org/viewvc/llvm-project?rev=172581&view=rev
Log:
Use --enable-werror

Use --enable-werror during configure time rather than
--with-extra-options.  This is cleaner and easier to read.

Modified:
    llvm/trunk/utils/llvm-compilers-check

Modified: llvm/trunk/utils/llvm-compilers-check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/llvm-compilers-check?rev=172581&r1=172580&r2=172581&view=diff
==============================================================================
--- llvm/trunk/utils/llvm-compilers-check (original)
+++ llvm/trunk/utils/llvm-compilers-check Tue Jan 15 18:17:38 2013
@@ -353,16 +353,16 @@
 
         configure_flags = dict(
             llvm=dict(debug=["--prefix=" + self.install_prefix,
-                             "--with-extra-options=-Werror",
+                             "--enable-werror",
                              "--enable-assertions",
                              "--disable-optimized",
                              "--with-gcc-toolchain=" + cxxroot],
                       release=["--prefix=" + self.install_prefix,
-                               "--with-extra-options=-Werror",
+                               "--enable-werror",
                                "--enable-optimized",
                                "--with-gcc-toolchain=" + cxxroot],
                       paranoid=["--prefix=" + self.install_prefix,
-                                "--with-extra-options=-Werror",
+                                "--enable-werror",
                                 "--enable-assertions",
                                 "--enable-expensive-checks",
                                 "--disable-optimized",





More information about the llvm-commits mailing list