forked from OSchip/llvm-project
Use --enable-werror
Use --enable-werror during configure time rather than --with-extra-options. This is cleaner and easier to read. llvm-svn: 172581
This commit is contained in:
parent
a1f0557200
commit
9aa10443ae
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue