Skip to content

Commit f96a4cc

Browse files
committed
configure: Disable debuginfo lines on MinGW
Looks like these are causing assertions on the bots, let's disable them for now (#37364).
1 parent 174838f commit f96a4cc

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

configure

+16-2
Original file line numberDiff line numberDiff line change
@@ -722,11 +722,25 @@ case "$CFG_RELEASE_CHANNEL" in
722722
nightly )
723723
msg "overriding settings for $CFG_RELEASE_CHANNEL"
724724
CFG_ENABLE_LLVM_ASSERTIONS=1
725-
CFG_ENABLE_DEBUGINFO_LINES=1
725+
726+
# FIXME(#37364) shouldn't have to disable this on windows-gnu
727+
case "$CFG_BUILD" in
728+
*-pc-windows-gnu)
729+
;;
730+
*)
731+
CFG_ENABLE_DEBUGINFO_LINES=1
732+
;;
733+
esac
726734
;;
727735
beta | stable)
728736
msg "overriding settings for $CFG_RELEASE_CHANNEL"
729-
CFG_ENABLE_DEBUGINFO_LINES=1
737+
case "$CFG_BUILD" in
738+
*-pc-windows-gnu)
739+
;;
740+
*)
741+
CFG_ENABLE_DEBUGINFO_LINES=1
742+
;;
743+
esac
730744
;;
731745
dev)
732746
;;

0 commit comments

Comments
 (0)