Author: Matti Picus <[email protected]>
Branch: precompiled-headers
Changeset: r69082:8c1b2356d7bd
Date: 2014-02-05 22:01 +0200
http://bitbucket.org/pypy/pypy/changeset/8c1b2356d7bd/

Log:    copy seperate_module_files even when no makefile is used

diff --git a/rpython/translator/c/dlltool.py b/rpython/translator/c/dlltool.py
--- a/rpython/translator/c/dlltool.py
+++ b/rpython/translator/c/dlltool.py
@@ -31,6 +31,8 @@
         extsymeci = ExternalCompilationInfo(export_symbols=export_symbols)
         self.eci = self.eci.merge(extsymeci)
         files = [self.c_source_filename] + self.extrafiles
+        files += self.eventually_copy(self.eci.separate_module_files)
+        self.eci.separate_module_files = ()
         oname = self.name
         self.so_name = self.translator.platform.compile(files, self.eci,
                                                         standalone=False,
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to