]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #34383 - alexcrichton:less-compiler-checks, r=brson
authorManish Goregaokar <manishsmail@gmail.com>
Wed, 22 Jun 2016 08:51:08 +0000 (09:51 +0100)
committerGitHub <noreply@github.com>
Wed, 22 Jun 2016 08:51:08 +0000 (09:51 +0100)
commit094032f5fc2343aeba820dbe6ab54a1d1d22a1c2
treecf78f060670bbdd4b8f92914f65376d3efa70569
parentf753689115dac2ce6ddf92be60493ec3b5c36851
parent3c778953d559ca420449421f9415589ef2976a18
Rollup merge of #34383 - alexcrichton:less-compiler-checks, r=brson

configure: Remove clang version checks

We no C++ and an incredibly small amount of C code as part of the build, so
there's not really much need for us to strictly check the version of compilers
as we're not really stressing anything. LLVM is a pretty huge chunk of C++ but
it should be the responsibility of LLVM to ensure that it can build with a
particular clang/gcc version, not ours (as this logic changes over time).

These version checks seem to basically just by us a regular stream of PRs every
six weeks or so when a new version is releases, so they're not really buying us
much. As a result, remove them and we can add then back piecemeal perhaps as a
blacklist if we really need to.