[pypy-commit] pypy default: more fixes for debug build on windows

mattip noreply at buildbot.pypy.org
Sun Feb 9 21:13:44 CET 2014


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r69109:682b833547c5
Date: 2014-02-09 22:11 +0200
http://bitbucket.org/pypy/pypy/changeset/682b833547c5/

Log:	more fixes for debug build on windows

diff --git a/rpython/translator/platform/windows.py b/rpython/translator/platform/windows.py
--- a/rpython/translator/platform/windows.py
+++ b/rpython/translator/platform/windows.py
@@ -412,7 +412,7 @@
                     'mt.exe -nologo -manifest $*.manifest -outputresource:$@;1',
                     ])
             m.rule('debugmode_$(DEFAULT_TARGET)', ['debugmode_$(TARGET)', 'main.obj'],
-                   ['$(CC_LINK) /nologo /DEBUG main.obj $(SHARED_IMPORT_LIB) /out:$@'
+                   ['$(CC_LINK) /nologo /DEBUG main.obj debugmode_$(SHARED_IMPORT_LIB) /out:$@'
                     ])
 
         return m


More information about the pypy-commit mailing list