[pypy-svn] r17212 - pypy/dist/pypy/translator/c

tismer at codespeak.net tismer at codespeak.net
Sun Sep 4 22:11:34 CEST 2005


Author: tismer
Date: Sun Sep  4 22:11:33 2005
New Revision: 17212

Modified:
   pypy/dist/pypy/translator/c/genc.py
Log:
hackish patch to make the boehm includes be found under windows.
No idea how to make distutils happy another way, yet.
I will undo this when I know.
Now the assumption is that gc6.5 is living in translator/c

Modified: pypy/dist/pypy/translator/c/genc.py
==============================================================================
--- pypy/dist/pypy/translator/c/genc.py	(original)
+++ pypy/dist/pypy/translator/c/genc.py	Sun Sep  4 22:11:33 2005
@@ -104,7 +104,8 @@
         python_inc = sysconfig.get_python_inc()
         self.executable_name = build_executable([self.c_source_filename],
                                          include_dirs = [autopath.this_dir,
-                                                         python_inc],
+                                                         python_inc,
+                                                         autopath.this_dir+'/gc6.5/include',],
                                          libraries=self.libraries)
         self._compiled = True
         return self.executable_name



More information about the Pypy-commit mailing list