summaryrefslogtreecommitdiff
path: root/tools/make.inc
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-07-08 20:46:11 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-07-08 20:47:30 -0400
commit2e9b93dc5df5aff35a64c55493bc2d2d74b4aa0d (patch)
tree612e9d9a70ed50088ee643b7ea3bc6e0edae1ae2 /tools/make.inc
parent2c984f3714067a38980dae51d1cb7d66d49f84f8 (diff)
downloadrockbox-2e9b93dc5df5aff35a64c55493bc2d2d74b4aa0d.tar.gz
rockbox-2e9b93dc5df5aff35a64c55493bc2d2d74b4aa0d.zip
build: Nuke the ASMFLAGS workaround for gcc 3.4.x
Change-Id: I0f21e9539d39afd54916fa8d84ce798eef474a2c
Diffstat (limited to 'tools/make.inc')
-rw-r--r--tools/make.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make.inc b/tools/make.inc
index d03898b2e1..5521612f62 100644
--- a/tools/make.inc
+++ b/tools/make.inc
@@ -11,7 +11,7 @@ $(OBJDIR)/%.o: %.c
11 11
12$(OBJDIR)/%.o: %.S 12$(OBJDIR)/%.o: %.S
13 $(SILENT)mkdir -p $(dir $@) 13 $(SILENT)mkdir -p $(dir $@)
14 $(call PRINTS,CC $<)$(CC) $(CFLAGS) $(ASMFLAGS) -c $< -o $@ 14 $(call PRINTS,CC $<)$(CC) $(CFLAGS) -c $< -o $@
15 15
16# The echo stuff last in the dep update shell magic is to prevent any compiler 16# The echo stuff last in the dep update shell magic is to prevent any compiler
17# errors/warnings to cause an error code to get returned and thus stop the 17# errors/warnings to cause an error code to get returned and thus stop the