Author: Wim Lavrijsen <[email protected]>
Branch: reflex-support
Changeset: r56743:7aa317058dbe
Date: 2012-08-14 16:07 -0700
http://bitbucket.org/pypy/pypy/changeset/7aa317058dbe/
Log: From Uwe Hoffmann: use libraries instead of link_extra
diff --git a/pypy/module/cppyy/capi/cint_capi.py
b/pypy/module/cppyy/capi/cint_capi.py
--- a/pypy/module/cppyy/capi/cint_capi.py
+++ b/pypy/module/cppyy/capi/cint_capi.py
@@ -53,7 +53,7 @@
include_dirs=[incpath] + rootincpath,
includes=["cintcwrapper.h"],
library_dirs=rootlibpath,
- link_extra=["-lCore", "-lCint"],
+ libraries=["Core", "Cint"],
use_cpp_linker=True,
)
diff --git a/pypy/module/cppyy/capi/reflex_capi.py
b/pypy/module/cppyy/capi/reflex_capi.py
--- a/pypy/module/cppyy/capi/reflex_capi.py
+++ b/pypy/module/cppyy/capi/reflex_capi.py
@@ -35,7 +35,7 @@
include_dirs=[incpath] + rootincpath,
includes=["reflexcwrapper.h"],
library_dirs=rootlibpath,
- link_extra=["-lReflex"],
+ libraries=["Reflex"],
use_cpp_linker=True,
)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit