Author: Wim Lavrijsen <[email protected]> Branch: reflex-support Changeset: r62420:26033cd8f0a7 Date: 2013-03-18 16:38 -0700 http://bitbucket.org/pypy/pypy/changeset/26033cd8f0a7/
Log: fix Makefile for MacOS X 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 @@ -19,7 +19,7 @@ PLATFORM := $(shell uname -s) ifeq ($(PLATFORM),Darwin) - cppflags+=-dynamiclib -single_module -arch x86_64 + cppflags+=-dynamiclib -single_module -arch x86_64 -undefined dynamic_lookup endif ifeq ($(CINT),) _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
