Skip to content

Commit 92276dc

Browse files
committed
Update LLVM fork to include a backported fix for broken debug locations
Fixes #28947
1 parent 3f2ad61 commit 92276dc

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

mk/main.mk

+5-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ endif
132132

133133
ifdef CFG_ENABLE_DEBUGINFO
134134
$(info cfg: enabling debuginfo (CFG_ENABLE_DEBUGINFO))
135-
CFG_RUSTC_FLAGS += -g
135+
# FIXME: Re-enable -g in stage0 after new snapshot
136+
#CFG_RUSTC_FLAGS += -g
137+
RUSTFLAGS_STAGE1 += -g
138+
RUSTFLAGS_STAGE2 += -g
139+
RUSTFLAGS_STAGE3 += -g
136140
endif
137141

138142
ifdef SAVE_TEMPS

src/rustllvm/llvm-auto-clean-trigger

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# If this file is modified, then llvm will be forcibly cleaned and then rebuilt.
22
# The actual contents of this file do not matter, but to trigger a change on the
33
# build bots then the contents should be changed so git updates the mtime.
4-
2015-09-11
4+
2015-10-18

0 commit comments

Comments
 (0)