]> git.lizzy.rs Git - rust.git/commit
auto merge of #10970 : erickt/rust/master, r=alexcrichton
authorbors <bors@rust-lang.org>
Sun, 15 Dec 2013 11:06:24 +0000 (03:06 -0800)
committerbors <bors@rust-lang.org>
Sun, 15 Dec 2013 11:06:24 +0000 (03:06 -0800)
commit09bfb3b47383d566a5bbf5aef9429e5c24a93b6d
tree6a5c9ea889e30ad3c56ad223e94d9f77bae462e4
parent386b455b1b00f418f1e19255023593e724036cb4
parent460a966a588da1e947ae0873a28048203bd3c684
auto merge of #10970 : erickt/rust/master, r=alexcrichton

This modifies the `configure` to set `CFG_ENABLE_CLANG=1` if `gcc` is actually `clang`. This is needed because OS X's clang enables warning on unused command line arguments. Our build system suppresses this by default, but when `CFG_ENABLE_CLANGE=0`, we do not. This causes one of the tests to fail. This patch changes rust to directly use clang, which fixes the build failure.

Closes #10811