the order of assembler parameters were changed, because some compiler like SDCC requires the output file at the last place.
This commit is contained in:
parent
e04e128a59
commit
ee76163a8c
|
@ -123,7 +123,7 @@ endif
|
|||
|
||||
ifndef CUSTOM_RULE_S_TO_OBJECTDIR_O
|
||||
$(OBJECTDIR)/%.o: %.S
|
||||
$(AS) $(ASFLAGS) $< -o $@
|
||||
$(AS) $(ASFLAGS) -o $@ $<
|
||||
endif
|
||||
|
||||
ifndef CUSTOM_RULE_C_TO_O
|
||||
|
|
Loading…
Reference in a new issue