diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-09-09 09:37:37 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-09-09 09:37:37 -0700 |
commit | c357381da4b63eb50f5e133066fb72838b4b6ddf (patch) | |
tree | 6ba5edf7a5b26b4e3847308878e3dae5ad6dd101 /output | |
parent | fe1e649b7ccb93f30133a151a830749a6aa56726 (diff) | |
download | nasm-c357381da4b63eb50f5e133066fb72838b4b6ddf.tar.gz nasm-c357381da4b63eb50f5e133066fb72838b4b6ddf.tar.bz2 nasm-c357381da4b63eb50f5e133066fb72838b4b6ddf.zip |
macros: win32 and win64 are COFF, not Mach-O
Somehow the win32 and win64 aliases got listed on Mach-O, not on
COFF. This doesn't have any effect on the current code, but might in
the future. Correct.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'output')
-rw-r--r-- | output/outcoff.mac | 2 | ||||
-rw-r--r-- | output/outmacho.mac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/output/outcoff.mac b/output/outcoff.mac index c9ecb54..fffb105 100644 --- a/output/outcoff.mac +++ b/output/outcoff.mac @@ -1,4 +1,4 @@ -OUT: coff +OUT: coff win32 win64 %define __SECT__ [section .text] %macro __NASM_CDecl__ 1 %endmacro diff --git a/output/outmacho.mac b/output/outmacho.mac index c135bf4..9f58638 100644 --- a/output/outmacho.mac +++ b/output/outmacho.mac @@ -1,4 +1,4 @@ -OUT: macho win32 win64 +OUT: macho %define __SECT__ [section .text] %macro __NASM_CDecl__ 1 %endmacro |