Skip to content

Commit

Permalink
Disable strip of assembler output
Browse files Browse the repository at this point in the history
  • Loading branch information
djphoenix committed Nov 18, 2016
1 parent d9c5fc4 commit 02dbb45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefiles/rules.mk
Expand Up @@ -31,7 +31,7 @@ $(OOBJDIR)/%.o: $(SRCDIR)/%.cpp
$(OOBJDIR)/%.o: $(SRCDIR)/%.s
@ mkdir -p $(dir $@)
$(QECHO) AS $(subst $(SRCDIR)/,,$<)
$(Q) $(CC) -c -s $< -o $@
$(Q) $(CC) -c $< -o $@

$(BIN).elf: $(KERNOBJS) $(OOBJDIR)/modules-linked.o
@ mkdir -p $(dir $@)
Expand Down

0 comments on commit 02dbb45

Please sign in to comment.