configure: Disable debuginfo lines on MinGW

Looks like these are causing assertions on the bots, let's disable them for now
(#37364).
This commit is contained in:
Alex Crichton 2016-10-23 10:25:01 -07:00
parent 174838f7f9
commit f96a4cca81
1 changed files with 16 additions and 2 deletions

18
configure vendored
View File

@ -722,11 +722,25 @@ case "$CFG_RELEASE_CHANNEL" in
nightly )
msg "overriding settings for $CFG_RELEASE_CHANNEL"
CFG_ENABLE_LLVM_ASSERTIONS=1
CFG_ENABLE_DEBUGINFO_LINES=1
# FIXME(#37364) shouldn't have to disable this on windows-gnu
case "$CFG_BUILD" in
*-pc-windows-gnu)
;;
*)
CFG_ENABLE_DEBUGINFO_LINES=1
;;
esac
;;
beta | stable)
msg "overriding settings for $CFG_RELEASE_CHANNEL"
CFG_ENABLE_DEBUGINFO_LINES=1
case "$CFG_BUILD" in
*-pc-windows-gnu)
;;
*)
CFG_ENABLE_DEBUGINFO_LINES=1
;;
esac
;;
dev)
;;