summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-06-17 16:27:39 +0200
committerAnton Khirnov <anton@khirnov.net>2020-06-17 16:27:39 +0200
commit3a21032e1e0f8ca68a8798066be5997adae5f08a (patch)
tree68c28610e5dffda3e2e6eba262974689a76cebc2
parentf5c0e15f4b1dbd51c305312f5dcd6b3148be3e71 (diff)
Switch from yasm to nasm.HEADmaster
-rw-r--r--lib/make/make.config.rules.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/make.config.rules.in b/lib/make/make.config.rules.in
index 0c633b4d..806bb35b 100644
--- a/lib/make/make.config.rules.in
+++ b/lib/make/make.config.rules.in
@@ -252,7 +252,7 @@ endef
# Build rules for C
%.asm.o: $(SRCDIR)/%.asm
- current_wd=`$(GET_WD)` ; cd $(SCRATCH_BUILD) ; yasm -f elf -m amd64 -g dwarf2 -o $$current_wd$(DIRSEP)$@ $<
+ current_wd=`$(GET_WD)` ; cd $(SCRATCH_BUILD) ; nasm -f elf -g -o $$current_wd$(DIRSEP)$@ $<
%.c.o: $(SRCDIR)/%.c
$(NOTIFY_PREPROCESSING)