Author: Matti Picus <[email protected]>
Branch: 
Changeset: r95519:0d8bf1346514
Date: 2018-12-21 12:56 +0200
http://bitbucket.org/pypy/pypy/changeset/0d8bf1346514/

Log:    do not force 64bit architecture

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
@@ -15,7 +15,7 @@
 
 HASGENREFLEX:=$(shell command -v genreflex 2> /dev/null)
 
-cppflags=-std=c++14 -O3 -m64 -fPIC -rdynamic
+cppflags=-std=c++14 -O3 -fPIC -rdynamic
 ifdef HASGENREFLEX
   genreflex_flags:=$(shell genreflex --cppflags)
   cppflags+=$(genreflex_flags)
@@ -25,7 +25,7 @@
 
 PLATFORM := $(shell uname -s)
 ifeq ($(PLATFORM),Darwin)
-  cppflags+=-dynamiclib -single_module -arch x86_64 -undefined dynamic_lookup
+  cppflags+=-dynamiclib -single_module -undefined dynamic_lookup
 endif
 
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to