summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-05-10 13:10:09 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-05-10 13:10:09 -0400
commit6b870e88c3acc3843c5639af64fe12eccf64e712 (patch)
treeb043d52aeb234aa767121a600a27aec32835eebb
parentca2e39c684eada4aec909f6f222806b7914b97d0 (diff)
Silence warnings about empty sections
-rw-r--r--arm9/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm9/Makefile b/arm9/Makefile
index c9cdd9fc..18586a6d 100644
--- a/arm9/Makefile
+++ b/arm9/Makefile
@@ -183,7 +183,7 @@ $(BUILD_DIR)/$(LD_SCRIPT): $(LD_SCRIPT) $(LD_TEMPLATE) undefined_syms.txt macros
$(ROM): $(O_FILES) $(BUILD_DIR)/$(LD_SCRIPT) $(BIN_FILES)
$(LD) $(LDFLAGS) $(BUILD_DIR)/$(LD_SCRIPT) -o $(ELF) $(O_FILES) $(BIN_FILES)
- $(OBJCOPY) --update-section arm9=$@ -j arm9 $(ELF)
+ $(OBJCOPY) --update-section arm9=$@ -j arm9 $(ELF) 2>/dev/null
# Make sure build directory exists before compiling anything
DUMMY != mkdir -p $(ALL_DIRS)