Skip to content

Rollup of 6 pull requests #33154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 31 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ccaa2f8
Suppress fallback and ambiguity errors
nikomatsakis Mar 15, 2016
a4e0e6b
avoid "type must be known here" errors if tainted
nikomatsakis Apr 5, 2016
b023fcc
move checking for unsized target type into `cast`
nikomatsakis Apr 11, 2016
47d3b80
move regr test into same directory
nikomatsakis Apr 11, 2016
2c9dfaf
fix various error messages
nikomatsakis Apr 12, 2016
89bbd2c
Be a bit more constrained in our early check
nikomatsakis Apr 14, 2016
9db6a41
etc: Add debugger.Terminate() to lldb_batchmode.py
alexcrichton Apr 18, 2016
ede8944
rustbuild: Run all markdown documentation tests
alexcrichton Apr 15, 2016
cbe6292
mk: Force system python for LLDB tests on OSX
alexcrichton Apr 19, 2016
4c01c93
Remove unused trait imports flagged by lint
sanxiyn Apr 19, 2016
e4f534c
Warn unused trait imports
sanxiyn Apr 19, 2016
6ede0f8
Fix tests related to no_std
sanxiyn Apr 20, 2016
baf2fff
Fix more tests
sanxiyn Apr 20, 2016
01d2b4a
port compiletest to use JSON output
nikomatsakis Apr 16, 2016
bf624c4
improve tidy to give you file that failed
nikomatsakis Apr 16, 2016
28a3c88
pacify the merciless acrichto (somewhat)
nikomatsakis Apr 18, 2016
6ce5e77
move json.rs file
nikomatsakis Apr 19, 2016
7aa5947
fix broken test revealed by compiletest
nikomatsakis Apr 19, 2016
906cc48
add serialize as a dep for compiletest
nikomatsakis Apr 19, 2016
399149a
fix `transmute-from-fn-item-types-lint`
nikomatsakis Apr 21, 2016
fd0632f
Fix for filepath for cfail tests in windows
Apr 22, 2016
d81de48
Merge remote-tracking branch 'rust-lang/master' into compiletest-json
Apr 22, 2016
b22c8ec
configure: Support --disable-option-checking
gbonnet1 Jan 21, 2016
46b75eb
configure: Move --disable-option-checking to a more appropriate location
gbonnet1 Feb 3, 2016
10d4cda
Fix filepath check for macro backtrace
Apr 22, 2016
db8e996
Rollup merge of #31169 - gmbonnet:disable-option-checking, r=brson
Manishearth Apr 22, 2016
fbb1a0b
Rollup merge of #32258 - nikomatsakis:fewer-errors, r=arielb1
Manishearth Apr 22, 2016
6c0e63e
Rollup merge of #33020 - nikomatsakis:compiletest-json, r=alexcrichton
Manishearth Apr 22, 2016
20a8cf9
Rollup merge of #33084 - alexcrichton:osx-python-sanity, r=michaelwoe…
Manishearth Apr 22, 2016
9cdfc10
Rollup merge of #33091 - sanxiyn:unused-trait-import-3, r=nrc
Manishearth Apr 22, 2016
9e07a74
Rollup merge of #33092 - alexcrichton:rustbuild-docs, r=brson
Manishearth Apr 22, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
configure: Support --disable-option-checking
  • Loading branch information
gbonnet1 committed Apr 22, 2016
commit b22c8ec5c74e75cf579aad50e3948e8c01f9d343
8 changes: 6 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,7 @@ fi
BOOL_OPTIONS=""
VAL_OPTIONS=""

opt option-checking 1 "complain about unrecognized options"
opt debug 0 "debug mode; disables optimization unless \`--enable-optimize\` given"
opt valgrind 0 "run tests with valgrind (memcheck by default)"
opt helgrind 0 "run tests with helgrind instead of memcheck"
Expand Down Expand Up @@ -674,8 +675,11 @@ then
fi

# Validate Options
step_msg "validating $CFG_SELF args"
validate_opt
if [ -z "$CFG_DISABLE_OPTION_CHECKING" ]
then
step_msg "validating $CFG_SELF args"
validate_opt
fi

# Validate the release channel, and configure options
case "$CFG_RELEASE_CHANNEL" in
Expand Down