Skip to content

Fully optimize by default #24205

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 12 commits into from
Closed
Prev Previous commit
Nightly gets LLVM assertions
  • Loading branch information
brson committed Apr 9, 2015
commit 0e0c841bd5f7bbf3f5788e9e96aa682e6e7726b2
10 changes: 7 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -617,11 +617,15 @@ fi
step_msg "validating $CFG_SELF args"
validate_opt

# Validate the release channel
# Validate the release channel, and configure options
case "$CFG_RELEASE_CHANNEL" in
(dev | nightly | beta | stable)
nightly )
msg "overriding settings for $CFG_RELEASE_CHANNEL"
CFG_ENABLE_LLVM_ASSERTIONS=1
;;
(*)
dev | beta | stable)
;;
*)
err "release channel must be 'dev', 'nightly', 'beta' or 'stable'"
;;
esac
Expand Down