Skip to content

Commit

Permalink
configure: Disable debuginfo lines on MinGW
Browse files Browse the repository at this point in the history
Looks like these are causing assertions on the bots, let's disable them for now
(rust-lang#37364).
  • Loading branch information
alexcrichton committed Oct 23, 2016
1 parent 174838f commit f96a4cc
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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)
;;
Expand Down

0 comments on commit f96a4cc

Please sign in to comment.