]> granicus.if.org Git - libatomic_ops/commitdiff
Enable Makefile.msft for Win64
authorIvan Maidanski <ivmai@mail.ru>
Mon, 8 Oct 2012 08:15:48 +0000 (12:15 +0400)
committerIvan Maidanski <ivmai@mail.ru>
Mon, 8 Oct 2012 08:15:48 +0000 (12:15 +0400)
* src/Makefile.msft (libatomic_ops_gpl.lib): Do not pass
"/MACHINE:i386" option to "lib" tool (to select the proper target
architecture automatically).

src/Makefile.msft

index 6786cc8bdf9785c84aa559fc4bd2b730ce11d236..8fa147b30eb8c8e9edce239d96418c1c1596ba32 100644 (file)
@@ -32,7 +32,7 @@ atomic_ops_malloc.obj:
        cl $(CFLAGS) -c atomic_ops_malloc.c
 
 libatomic_ops_gpl.lib: $(LIB_OBJS)
-       lib /MACHINE:i386 /out:libatomic_ops_gpl.lib $(LIB_OBJS)
+       lib /out:libatomic_ops_gpl.lib $(LIB_OBJS)
 
 test_atomic: ..\tests\test_atomic.c ..\tests\test_atomic_include.h
        cl $(CFLAGS) -I. ..\tests\test_atomic.c /Fo.\test_atomic