We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a725426 commit 0e0c841Copy full SHA for 0e0c841
configure
@@ -617,11 +617,15 @@ fi
617
step_msg "validating $CFG_SELF args"
618
validate_opt
619
620
-# Validate the release channel
+# Validate the release channel, and configure options
621
case "$CFG_RELEASE_CHANNEL" in
622
- (dev | nightly | beta | stable)
+ nightly )
623
+ msg "overriding settings for $CFG_RELEASE_CHANNEL"
624
+ CFG_ENABLE_LLVM_ASSERTIONS=1
625
;;
- (*)
626
+ dev | beta | stable)
627
+ ;;
628
+ *)
629
err "release channel must be 'dev', 'nightly', 'beta' or 'stable'"
630
631
esac
0 commit comments