[pypy-commit] pypy quad-color-gc: remove configure_external_library, as it seems to compile the GC separately, which is not possible

Raemi pypy.commits at gmail.com
Fri Aug 19 09:52:34 EDT 2016


Author: Remi Meier <remi.meier at gmail.com>
Branch: quad-color-gc
Changeset: r86319:c3000b80ab0b
Date: 2016-08-19 15:51 +0200
http://bitbucket.org/pypy/pypy/changeset/c3000b80ab0b/

Log:	remove configure_external_library, as it seems to compile the GC
	separately, which is not possible

diff --git a/rpython/rtyper/tool/rffi_platform.py b/rpython/rtyper/tool/rffi_platform.py
--- a/rpython/rtyper/tool/rffi_platform.py
+++ b/rpython/rtyper/tool/rffi_platform.py
@@ -901,10 +901,7 @@
                 ["qcgc.c", "arena.c", "allocator.c", "bag.c", "event_logger.c",
                     "gray_stack.c", "shadow_stack.c"]],
             )
-    return configure_external_library(
-            'qcgc', eci, [dict(prefix='qcgc-', include_dir='include',
-                library_dir=library_dir)],
-            symbol='qcgc_initialize')
+    return eci
 
 if __name__ == '__main__':
     doc = """Example:


More information about the pypy-commit mailing list