From: Ivan Maidanski Date: Mon, 8 Oct 2012 08:15:48 +0000 (+0400) Subject: Enable Makefile.msft for Win64 X-Git-Tag: v7.2h~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99abe508fdd2d268c0d2cdd7b844c60862192905;p=libatomic_ops Enable Makefile.msft for Win64 (Cherry-pick commit 3556ba3 from 'release-7_4' branch.) * src/Makefile.msft (libatomic_ops_gpl.lib): Do not pass "/MACHINE:i386" option to "lib" tool (to select the proper target architecture automatically). --- diff --git a/src/Makefile.msft b/src/Makefile.msft index bdb526d..4146c02 100644 --- a/src/Makefile.msft +++ b/src/Makefile.msft @@ -35,7 +35,7 @@ test_malloc: ..\tests\test_malloc.c ..\tests\test_atomic_include.h \ /Fo.\test_malloc libatomic_ops_gpl.lib libatomic_ops_gpl.lib: $(LIB_OBJS) - lib /MACHINE:i386 /out:libatomic_ops_gpl.lib $(LIB_OBJS) + lib /out:libatomic_ops_gpl.lib $(LIB_OBJS) check: test_atomic test_atomic_w95 test_malloc echo The following will print lots of \"Missing ...\" messages.