Merge pull request #3009 from terrelln/asm-flags

[build][asm] Pass ASFLAGS to the assembler instead of CFLAGS
This commit is contained in:
Nick Terrell
2022-01-18 15:48:11 -08:00
committed by GitHub
6 changed files with 16 additions and 11 deletions
+1 -1
View File
@@ -320,7 +320,7 @@ $(BUILD_DIR)/%.o : %.c $(BUILD_DIR)/%.d | $(BUILD_DIR)
$(BUILD_DIR)/%.o : %.S | $(BUILD_DIR)
@echo AS $@
$(COMPILE.c) $(OUTPUT_OPTION) $<
$(COMPILE.S) $(OUTPUT_OPTION) $<
MKDIR ?= mkdir
$(BUILD_DIR): ; $(MKDIR) -p $@