[pypy-commit] pypy reflex-support: fix for CINT builds

wlav noreply at buildbot.pypy.org
Sat Aug 31 01:21:38 CEST 2013


Author: Wim Lavrijsen <WLavrijsen at lbl.gov>
Branch: reflex-support
Changeset: r66689:aa21223f7dbe
Date: 2013-08-27 16:03 -0700
http://bitbucket.org/pypy/pypy/changeset/aa21223f7dbe/

Log:	fix for CINT builds

diff --git a/pypy/module/cppyy/test/Makefile b/pypy/module/cppyy/test/Makefile
--- a/pypy/module/cppyy/test/Makefile
+++ b/pypy/module/cppyy/test/Makefile
@@ -32,7 +32,9 @@
 
 ifeq ($(DUMMY),t)
   cppflags2=-O3 -fPIC -rdynamic
-else ifeq ($(CINT),)
+else ifeq ($(CINT),t)
+  cppflags2=-O3 -fPIC -rdynamic
+else
   ifeq ($(shell $(genreflex) --help | grep -- --with-methptrgetter),)
     genreflexflags=
     cppflags2=-O3 -fPIC


More information about the pypy-commit mailing list