[x264-devel] x86inc: Check for __OUTPUT_FORMAT__ having a value of "x64"
Derek Buitenhuis
git at videolan.org
Fri Aug 23 23:06:32 CEST 2013
x264 | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Fri Aug 9 13:39:27 2013 -0400| [3361d59a0a83dcb8b321cc0eb8e6ba68ca49c7d4] | committer: Jason Garrett-Glaser
x86inc: Check for __OUTPUT_FORMAT__ having a value of "x64"
This is also a valid value for WIN64.
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=3361d59a0a83dcb8b321cc0eb8e6ba68ca49c7d4
---
common/x86/x86inc.asm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/common/x86/x86inc.asm b/common/x86/x86inc.asm
index 586cf68..a389485 100644
--- a/common/x86/x86inc.asm
+++ b/common/x86/x86inc.asm
@@ -49,6 +49,8 @@
%define WIN64 1
%elifidn __OUTPUT_FORMAT__,win64
%define WIN64 1
+ %elifidn __OUTPUT_FORMAT__,x64
+ %define WIN64 1
%else
%define UNIX64 1
%endif
More information about the x264-devel
mailing list