aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorS. Davilla <davilla@4pi.com>2011-05-11 17:06:12 -0400
committerS. Davilla <davilla@4pi.com>2011-05-11 17:06:40 -0400
commit9da3bbd42b69cd24a4f2e0fce7c2ab11b9576ef3 (patch)
treeccf934de86b3d9d7a14edbf6b44ebb26e3e76180 /Makefile.in
parent05a4fcebb592b3e80aea37f939d1701f9445ef6a (diff)
[osx/ios] remove ARCHTYPE, it is not needed anymore as -arch is passed in LDFLAGS
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 1f76068106..f1d517790f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -361,9 +361,9 @@ lib/cpluff/libcpluff/.libs/libcpluff.a: force
system/libcpluff-@ARCH@.so: lib/cpluff/libcpluff/.libs/libcpluff.a
ifeq ($(findstring osx,@ARCH@), osx)
ifeq (@ARCH@, arm-osx)
- $(CXX) $(LDFLAGS) -all_load -bundle -flat_namespace -undefined dynamic_lookup -read_only_relocs suppress -arch armv7 -o $@ $<
+ $(CXX) $(LDFLAGS) -all_load -bundle -flat_namespace -undefined dynamic_lookup -read_only_relocs suppress -o $@ $<
else
- $(CXX) $(LDFLAGS) -all_load -bundle -flat_namespace -undefined dynamic_lookup -arch @ARCHTYPE@ -lexpat $(BUNDLE1_O) -o $@ $<
+ $(CXX) $(LDFLAGS) -all_load -bundle -flat_namespace -undefined dynamic_lookup -lexpat $(BUNDLE1_O) -o $@ $<
endif
else
cp lib/cpluff/libcpluff/.libs/libcpluff.so $@