1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: YOKOTA Hiroshi <yokota.hgml@gmail.com>
Date: Thu, 26 Dec 2024 23:27:17 +0900
Subject: Use "-c" flags for asmc
No needs to build executable files while in assembling.
---
CPP/7zip/7zip_gcc.mak | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CPP/7zip/7zip_gcc.mak b/CPP/7zip/7zip_gcc.mak
index 51c73b5..4b0cc27 100644
--- a/CPP/7zip/7zip_gcc.mak
+++ b/CPP/7zip/7zip_gcc.mak
@@ -194,7 +194,7 @@ AFLAGS_ABI = -elf -DABI_LINUX -DABI_CDECL
# -DABI_LINUX
# -DABI_CDECL
endif
-AFLAGS = -nologo $(AFLAGS_ABI) -Fo$(O)/
+AFLAGS = -nologo $(AFLAGS_ABI) -Fo$(O)/ -c
endif # IS_MINGW
|