From c357381da4b63eb50f5e133066fb72838b4b6ddf Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 9 Sep 2008 09:37:37 -0700 Subject: [PATCH] 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 --- output/outcoff.mac | 2 +- output/outmacho.mac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outcoff.mac b/output/outcoff.mac index c9ecb54c..fffb1051 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 c135bf43..9f58638e 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