From: Ronald S. Bultje Date: Wed, 8 Feb 2012 21:10:31 +0000 (-0800) Subject: x86inc: support yasm -f win64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a5f2fe30aeb5314b74f83b1960e9a40776347e9;p=libx264 x86inc: support yasm -f win64 Not necessary for x264, as -m amd64 already does the right thing, but used by external users of x86inc. --- diff --git a/common/x86/x86inc.asm b/common/x86/x86inc.asm index 4b2229ec..63b654fd 100644 --- a/common/x86/x86inc.asm +++ b/common/x86/x86inc.asm @@ -41,6 +41,8 @@ %if ARCH_X86_64 %ifidn __OUTPUT_FORMAT__,win32 %define WIN64 1 + %elifidn __OUTPUT_FORMAT__,win64 + %define WIN64 1 %else %define UNIX64 1 %endif