Skip to content

Commit

Permalink
Use --enable-werror
Browse files Browse the repository at this point in the history
Use --enable-werror during configure time rather than
--with-extra-options.  This is cleaner and easier to read.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172581 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
greened committed Jan 16, 2013
1 parent 6623730 commit 68b8d4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/llvm-compilers-check
Original file line number Diff line number Diff line change
Expand Up @@ -353,16 +353,16 @@ class Builder(threading.Thread):

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",
Expand Down

0 comments on commit 68b8d4f

Please sign in to comment.