Skip to content

Commit a9687a1

Browse files
committed
makefile: CCDEBUG: disable -gdwarf-5 -g3 (produce no debug info).
Due to an issue with ez80-clang 15.0.7, this is disabled for now. Not that this makes no difference for users, as there exists no tool that uses the produced .dbg files. CEmu's source-level-debugging branch did use them, but was never finished and does not actually work in its current state.
1 parent 6bebb17 commit a9687a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/makefile.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,9 @@ all: $(BINDIR)/$(TARGET8XP)
284284
# this rule is trigged to build debug everything
285285
debug: DEBUGMODE = DEBUG
286286
debug: LDDEBUG = 1
287-
debug: CCDEBUG = -gdwarf-5 -g3
287+
# Due to an issue with ez80-clang 15.0.7, this is disabled for now. Previously: -gdwarf-5 -g3
288+
# Then again, no tool using the produced .dbg files currently exists (CEmu's source-level-debugging was never finished)
289+
debug: CCDEBUG = -g0
288290
debug: $(BINDIR)/$(TARGET8XP)
289291

290292
$(BINDIR)/$(TARGET8XP): $(BINDIR)/$(TARGETBIN) $(MAKEFILE_LIST) $(DEPS)

0 commit comments

Comments
 (0)