@@ -8,18 +8,25 @@ PYTHON_VERSION=2.7.1
8
8
FFI_VERSION =3.0.13
9
9
10
10
# IPHONE build commands and flags
11
- IPHONE_SDK_ROOT =$(shell xcrun --sdk iphoneos --show-sdk-path)
12
- IPHONE_CC =$(shell xcrun -find -sdk iphoneos clang)
13
- IPHONE_LD =$(shell xcrun -find -sdk iphoneos ld)
14
- IPHONE_CFLAGS =-arch armv7 -pipe -no-cpp-precomp -isysroot $(IPHONE_SDK_ROOT ) -miphoneos-version-min=4.0
15
- IPHONE_LDFLAGS =-arch armv7 -isysroot $(IPHONE_SDK_ROOT ) -miphoneos-version-min=4.0
11
+ IPHONE_ARMV7_SDK_ROOT =$(shell xcrun --sdk iphoneos --show-sdk-path)
12
+ IPHONE_ARMV7_CC =$(shell xcrun -find -sdk iphoneos clang)
13
+ IPHONE_ARMV7_LD =$(shell xcrun -find -sdk iphoneos ld)
14
+ IPHONE_ARMV7_CFLAGS =-arch armv7 -pipe -no-cpp-precomp -isysroot $(IPHONE_ARMV7_SDK_ROOT ) -miphoneos-version-min=5.1.1
15
+ IPHONE_ARMV7_LDFLAGS =-arch armv7 -isysroot $(IPHONE_ARMV7_SDK_ROOT ) -miphoneos-version-min=5.1.1
16
16
17
- # IPHONESIMULATOR build commands and flags
18
- IPHONESIMULATOR_SDK_ROOT =$(shell xcrun --sdk iphonesimulator --show-sdk-path)
19
- IPHONESIMULATOR_CC =$(shell xcrun -find -sdk iphonesimulator clang)
20
- IPHONESIMULATOR_LD =$(shell xcrun -find -sdk iphonesimulator ld)
21
- IPHONESIMULATOR_CFLAGS =-arch i386 -pipe -no-cpp-precomp -isysroot $(IPHONESIMULATOR_SDK_ROOT ) -miphoneos-version-min=4.0
22
- IPHONESIMULATOR_LDFLAGS =-arch i386 -isysroot $(IPHONESIMULATOR_SDK_ROOT ) -miphoneos-version-min=4.0
17
+ # IPHONE build commands and flags
18
+ IPHONE_ARMV7S_SDK_ROOT =$(shell xcrun --sdk iphoneos --show-sdk-path)
19
+ IPHONE_ARMV7S_CC =$(shell xcrun -find -sdk iphoneos clang)
20
+ IPHONE_ARMV7S_LD =$(shell xcrun -find -sdk iphoneos ld)
21
+ IPHONE_ARMV7S_CFLAGS =-arch armv7s -pipe -no-cpp-precomp -isysroot $(IPHONE_ARMV7S_SDK_ROOT ) -miphoneos-version-min=5.1.1
22
+ IPHONE_ARMV7S_LDFLAGS =-arch armv7s -isysroot $(IPHONE_ARMV7S_SDK_ROOT ) -miphoneos-version-min=5.1.1
23
+
24
+ # IPHONE_SIMULATOR build commands and flags
25
+ IPHONE_SIMULATOR_SDK_ROOT =$(shell xcrun --sdk iphonesimulator --show-sdk-path)
26
+ IPHONE_SIMULATOR_CC =$(shell xcrun -find -sdk iphonesimulator clang)
27
+ IPHONE_SIMULATOR_LD =$(shell xcrun -find -sdk iphonesimulator ld)
28
+ IPHONE_SIMULATOR_CFLAGS =-arch i386 -pipe -no-cpp-precomp -isysroot $(IPHONE_SIMULATOR_SDK_ROOT ) -miphoneos-version-min=5.1.1
29
+ IPHONE_SIMULATOR_LDFLAGS =-arch i386 -isysroot $(IPHONE_SIMULATOR_SDK_ROOT ) -miphoneos-version-min=5.1.1
23
30
24
31
25
32
all : working-dirs build/ffi.framework build/Python.framework
@@ -118,7 +125,7 @@ build/python/ios-simulator/Python: src/Python-$(PYTHON_VERSION)/build
118
125
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /xcompile.patch
119
126
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /setuppath.patch
120
127
# Configure and build Simulator library
121
- cd src/Python-$(PYTHON_VERSION ) && ./configure CC=" $( IPHONESIMULATOR_CC ) " LD=" $( IPHONESIMULATOR_LD ) " CFLAGS=" $( IPHONESIMULATOR_CFLAGS ) -I../../build/ffi.framework/Headers" LDFLAGS=" $( IPHONESIMULATOR_LDFLAGS ) -L../../build/ffi.framework/ -lsqlite3 -undefined dynamic_lookup" --without-pymalloc --disable-toolbox-glue --prefix=/python --without-doc-strings
128
+ cd src/Python-$(PYTHON_VERSION ) && ./configure CC=" $( IPHONE_SIMULATOR_CC ) " LD=" $( IPHONE_SIMULATOR_LD ) " CFLAGS=" $( IPHONE_SIMULATOR_CFLAGS ) -I../../build/ffi.framework/Headers" LDFLAGS=" $( IPHONE_SIMULATOR_LDFLAGS ) -L../../build/ffi.framework/ -lsqlite3 -undefined dynamic_lookup" --without-pymalloc --disable-toolbox-glue --prefix=/python --without-doc-strings
122
129
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /ctypes_duplicate.patch
123
130
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /pyconfig.patch
124
131
mkdir -p build/python/ios-simulator
@@ -133,22 +140,22 @@ build/python/ios-simulator/Python: src/Python-$(PYTHON_VERSION)/build
133
140
cd src/Python-$(PYTHON_VERSION ) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION ) /ctypes_duplicate.patch
134
141
# cd src/Python-$(PYTHON_VERSION) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION)/pyconfig.patch
135
142
# Clean up build directory
136
- cd build/python/ios-simulator/lib/python2.7 && rm config/libpython2.7 .a config/python.o config/config.c.in config/makesetup
137
- cd build/python/ios-simulator/lib/python2.7 && rm -rf * test* lib* wsgiref bsddb curses idlelib hotshot
138
- cd build/python/ios-simulator/lib/python2.7 && find . -iname ' *.pyc' | xargs rm
139
- cd build/python/ios-simulator/lib/python2.7 && find . -iname ' *.py' | xargs rm
143
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && rm config/libpython $( basename $( PYTHON_VERSION ) ) .a config/python.o config/config.c.in config/makesetup
144
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && rm -rf * test* lib* wsgiref bsddb curses idlelib hotshot
145
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && find . -iname ' *.pyc' | xargs rm
146
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && find . -iname ' *.py' | xargs rm
140
147
cd build/python/ios-simulator/lib && rm -rf pkgconfig
141
148
# Pack libraries into .zip file
142
- cd build/python/ios-simulator/lib/python2.7 && mv config ..
143
- cd build/python/ios-simulator/lib/python2.7 && mv site-packages ..
144
- cd build/python/ios-simulator/lib/python2.7 && zip -r ../python27.zip *
145
- cd build/python/ios-simulator/lib/python2.7 && rm -rf *
146
- cd build/python/ios-simulator/lib/python2.7 && mv ../config .
147
- cd build/python/ios-simulator/lib/python2.7 && mv ../site-packages .
149
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && mv config ..
150
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && mv site-packages ..
151
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && zip -r ../python27.zip *
152
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && rm -rf *
153
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && mv ../config .
154
+ cd build/python/ios-simulator/lib/python $( basename $( PYTHON_VERSION ) ) && mv ../site-packages .
148
155
# Move all headers except for pyconfig.h into a Headers directory
149
156
mkdir -p build/python/ios-simulator/Headers
150
- cd build/python/ios-simulator/Headers && mv ../include/python2.7 /* .
151
- cd build/python/ios-simulator/Headers && mv pyconfig.h ../include/python2.7
157
+ cd build/python/ios-simulator/Headers && mv ../include/python $( basename $( PYTHON_VERSION ) ) /* .
158
+ cd build/python/ios-simulator/Headers && mv pyconfig.h ../include/python $( basename $( PYTHON_VERSION ) )
152
159
153
160
154
161
build/python/ios-armv7/Python : src/Python-$(PYTHON_VERSION ) /build
@@ -159,7 +166,7 @@ build/python/ios-armv7/Python: src/Python-$(PYTHON_VERSION)/build
159
166
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /xcompile.patch
160
167
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /setuppath.patch
161
168
# Configure and build iPhone library
162
- cd src/Python-$(PYTHON_VERSION ) && ./configure CC=" $( IPHONE_CC ) " LD=" $( IPHONE_LD ) " CFLAGS=" $( IPHONE_CFLAGS ) -I../../build/ffi.framework/Headers" LDFLAGS=" $( IPHONE_LDFLAGS ) -L../../build/ffi.framework/ -lsqlite3 -undefined dynamic_lookup" --without-pymalloc --disable-toolbox-glue --host=armv7-apple-darwin --prefix=/python --without-doc-strings
169
+ cd src/Python-$(PYTHON_VERSION ) && ./configure CC=" $( IPHONE_ARMV7_CC ) " LD=" $( IPHONE_ARMV7_LD ) " CFLAGS=" $( IPHONE_ARMV7_CFLAGS ) -I../../build/ffi.framework/Headers" LDFLAGS=" $( IPHONE_ARMV7_LDFLAGS ) -L../../build/ffi.framework/ -lsqlite3 -undefined dynamic_lookup" --without-pymalloc --disable-toolbox-glue --host=armv7-apple-darwin --prefix=/python --without-doc-strings
163
170
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /ctypes_duplicate.patch
164
171
cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /pyconfig.patch
165
172
mkdir -p build/python/ios-armv7
@@ -174,51 +181,96 @@ build/python/ios-armv7/Python: src/Python-$(PYTHON_VERSION)/build
174
181
cd src/Python-$(PYTHON_VERSION ) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION ) /ctypes_duplicate.patch
175
182
# cd src/Python-$(PYTHON_VERSION) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION)/pyconfig.patch
176
183
# Clean up build directory
177
- cd build/python/ios-armv7/lib/python2.7 && rm config/libpython2.7 .a config/python.o config/config.c.in config/makesetup
178
- cd build/python/ios-armv7/lib/python2.7 && rm -rf * test* lib* wsgiref bsddb curses idlelib hotshot
179
- cd build/python/ios-armv7/lib/python2.7 && find . -iname ' *.pyc' | xargs rm
180
- cd build/python/ios-armv7/lib/python2.7 && find . -iname ' *.py' | xargs rm
184
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && rm config/libpython $( basename $( PYTHON_VERSION ) ) .a config/python.o config/config.c.in config/makesetup
185
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && rm -rf * test* lib* wsgiref bsddb curses idlelib hotshot
186
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && find . -iname ' *.pyc' | xargs rm
187
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && find . -iname ' *.py' | xargs rm
181
188
cd build/python/ios-armv7/lib && rm -rf pkgconfig
182
189
# Pack libraries into .zip file
183
- cd build/python/ios-armv7/lib/python2.7 && mv config ..
184
- cd build/python/ios-armv7/lib/python2.7 && mv site-packages ..
185
- cd build/python/ios-armv7/lib/python2.7 && zip -r ../python27.zip *
186
- cd build/python/ios-armv7/lib/python2.7 && rm -rf *
187
- cd build/python/ios-armv7/lib/python2.7 && mv ../config .
188
- cd build/python/ios-armv7/lib/python2.7 && mv ../site-packages .
190
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && mv config ..
191
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && mv site-packages ..
192
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && zip -r ../python27.zip *
193
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && rm -rf *
194
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && mv ../config .
195
+ cd build/python/ios-armv7/lib/python $( basename $( PYTHON_VERSION ) ) && mv ../site-packages .
189
196
# Move all headers except for pyconfig.h into a Headers directory
190
- mkdir -p build/python/ios-simulator /Headers
191
- cd build/python/ios-simulator /Headers && mv ../include/python2.7 /* .
192
- cd build/python/ios-simulator /Headers && mv pyconfig.h ../include/python2.7
197
+ mkdir -p build/python/ios-armv7 /Headers
198
+ cd build/python/ios-armv7 /Headers && mv ../include/python $( basename $( PYTHON_VERSION ) ) /* .
199
+ cd build/python/ios-armv7 /Headers && mv pyconfig.h ../include/python $( basename $( PYTHON_VERSION ) )
193
200
194
- build/Python.framework : build/python/ios-simulator/Python build/python/ios-armv7/Python
201
+ build/python/ios-armv7s/Python : src/Python-$(PYTHON_VERSION ) /build
202
+ # Apply extra patches for iPhone build
203
+ cp patch/Python/$(PYTHON_VERSION ) /ModulesSetup src/Python-$(PYTHON_VERSION ) /Modules/Setup.local
204
+ cat patch/Python/$(PYTHON_VERSION ) /ModulesSetup.mobile >> src/Python-$(PYTHON_VERSION ) /Modules/Setup.local
205
+ cp patch/Python/$(PYTHON_VERSION ) /_scproxy.py src/Python-$(PYTHON_VERSION ) /Lib/_scproxy.py
206
+ cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /xcompile.patch
207
+ cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /setuppath.patch
208
+ # Configure and build iPhone library
209
+ cd src/Python-$(PYTHON_VERSION ) && ./configure CC=" $( IPHONE_ARMV7_CC) " LD=" $( IPHONE_ARMV7S_LD) " CFLAGS=" $( IPHONE_ARMV7S_CFLAGS) -I../../build/ffi.framework/Headers" LDFLAGS=" $( IPHONE_ARMV7S_LDFLAGS) -L../../build/ffi.framework/ -lsqlite3 -undefined dynamic_lookup" --without-pymalloc --disable-toolbox-glue --host=armv7s-apple-darwin --prefix=/python --without-doc-strings
210
+ cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /ctypes_duplicate.patch
211
+ cd src/Python-$(PYTHON_VERSION ) && patch -p1 < ../../patch/Python/$(PYTHON_VERSION ) /pyconfig.patch
212
+ mkdir -p build/python/ios-armv7s
213
+ cd src/Python-$(PYTHON_VERSION ) && make altbininstall libinstall inclinstall libainstall HOSTPYTHON=./hostpython CROSS_COMPILE_TARGET=yes prefix=" ../../build/python/ios-armv7s"
214
+ # Relocate and rename the libpython binary
215
+ cd build/python/ios-armv7s/lib && mv libpython$(basename $(PYTHON_VERSION ) ) .a ../Python
216
+ # Clean out all the build data
217
+ cd src/Python-$(PYTHON_VERSION ) && make distclean
218
+ # Reverse the source patches.
219
+ cd src/Python-$(PYTHON_VERSION ) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION ) /xcompile.patch
220
+ cd src/Python-$(PYTHON_VERSION ) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION ) /setuppath.patch
221
+ cd src/Python-$(PYTHON_VERSION ) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION ) /ctypes_duplicate.patch
222
+ # cd src/Python-$(PYTHON_VERSION) && patch -p1 -R < ../../patch/Python/$(PYTHON_VERSION)/pyconfig.patch
223
+ # Clean up build directory
224
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && rm config/libpython$(basename $(PYTHON_VERSION ) ) .a config/python.o config/config.c.in config/makesetup
225
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && rm -rf * test* lib* wsgiref bsddb curses idlelib hotshot
226
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && find . -iname ' *.pyc' | xargs rm
227
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && find . -iname ' *.py' | xargs rm
228
+ cd build/python/ios-armv7s/lib && rm -rf pkgconfig
229
+ # Pack libraries into .zip file
230
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && mv config ..
231
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && mv site-packages ..
232
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && zip -r ../python27.zip *
233
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && rm -rf *
234
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && mv ../config .
235
+ cd build/python/ios-armv7s/lib/python$(basename $(PYTHON_VERSION ) ) && mv ../site-packages .
236
+ # Move all headers except for pyconfig.h into a Headers directory
237
+ mkdir -p build/python/ios-armv7s/Headers
238
+ cd build/python/ios-armv7s/Headers && mv ../include/python$(basename $(PYTHON_VERSION ) ) /* .
239
+ cd build/python/ios-armv7s/Headers && mv pyconfig.h ../include/python$(basename $(PYTHON_VERSION ) )
240
+
241
+ build/Python.framework : build/python/ios-simulator/Python build/python/ios-armv7/Python build/python/ios-armv7s/Python
195
242
# Create the framework directory from the compiled resrouces
196
243
mkdir -p build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /
197
244
cd build/Python.framework/Versions && ln -fs $(basename $(PYTHON_VERSION ) ) Current
198
- # Copy the headers from the simulator
245
+ # Copy the headers from the simulator build
199
246
cp -r build/python/ios-simulator/Headers build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /Headers
200
247
cd build/Python.framework && ln -fs Versions/Current/Headers
248
+ # Copy the standard library from the simulator build
249
+ mkdir -p build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /Resources
250
+ cp -r build/python/ios-simulator/lib build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /Resources
251
+ cd build/Python.framework && ln -fs Versions/Current/Resources
252
+ # Copy the pyconfig headers from the builds, and install the fat header.
253
+ mkdir -p build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /Resources/include/python$(basename $(PYTHON_VERSION ) )
254
+ cp build/python/ios-simulator/include/python$(basename $(PYTHON_VERSION ) ) /pyconfig.h build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /Resources/include/pyconfig-simulator.h
255
+ cp build/python/ios-armv7/include/python$(basename $(PYTHON_VERSION ) ) /pyconfig.h build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /Resources/include/pyconfig-armv7.h
256
+ cp patch/Python/$(PYTHON_VERSION ) /pyconfig.h build/Python.framework/Versions/$(basename $(PYTHON_VERSION ) ) /Resources/include
201
257
# Build a fat library with all targets included.
202
- xcrun lipo -create -output build/Python.framework/Versions/Current/Python build/python/ios-simulator/Python build/python/ios-armv7/Python
258
+ xcrun lipo -create -output build/Python.framework/Versions/Current/Python build/python/ios-simulator/Python build/python/ios-armv7/Python build/python/ios-armv7s/Python
203
259
cd build/Python.framework && ln -fs Versions/Current/Python
204
- # Clean up simulator dir
205
- rm -rf build/python/ios-simulator/bin
206
- rm -rf build/python/ios-simulator/Python
207
- # Clean up armv7 dir
208
- rm -rf build/python/ios-armv7/bin
209
- rm -rf build/python/ios-armv7/Python
260
+ # Clean up temporary build dirs
261
+ rm -rf build/python
210
262
211
263
env :
212
264
# PYTHON_VERSION $(PYTHON_VERSION)
213
265
# FFI_VERSION $(FFI_VERSION)
214
266
# OSX_SDK_ROOT $(OSX_SDK_ROOT)
215
- # IPHONE_SDK_ROOT $(IPHONE_SDK_ROOT )
216
- # IPHONE_CC $(IPHONE_CC )
217
- # IPHONE_LD $(IPHONE_LD )
218
- # IPHONE_CFLAGS $(IPHONE_CFLAGS )
219
- # IPHONE_LDFLAGS $(IPHONE_LDFLAGS )
220
- # IPHONESIMULATOR_SDK_ROOT $(IPHONESIMULATOR_SDK_ROOT )
221
- # IPHONESIMULATOR_CC $(IPHONESIMULATOR_CC )
222
- # IPHONESIMULATOR_LD $(IPHONESIMULATOR_LD )
223
- # IPHONESIMULATOR_CFLAGS $(IPHONESIMULATOR_CFLAGS )
224
- # IPHONESIMULATOR_LDFLAGS $(IPHONESIMULATOR_LDFLAGS )
267
+ # IPHONE_ARMV7_SDK_ROOT $(IPHONE_ARMV7_SDK_ROOT )
268
+ # IPHONE_ARMV7_CC $(IPHONE_ARMV7_CC )
269
+ # IPHONE_ARMV7_LD $(IPHONE_ARMV7_LD )
270
+ # IPHONE_ARMV7_CFLAGS $(IPHONE_ARMV7_CFLAGS )
271
+ # IPHONE_ARMV7_LDFLAGS $(IPHONE_ARMV7_LDFLAGS )
272
+ # IPHONE_SIMULATOR_SDK_ROOT $(IPHONE_SIMULATOR_SDK_ROOT )
273
+ # IPHONE_SIMULATOR_CC $(IPHONE_SIMULATOR_CC )
274
+ # IPHONE_SIMULATOR_LD $(IPHONE_SIMULATOR_LD )
275
+ # IPHONE_SIMULATOR_CFLAGS $(IPHONE_SIMULATOR_CFLAGS )
276
+ # IPHONE_SIMULATOR_LDFLAGS $(IPHONE_SIMULATOR_LDFLAGS )
0 commit comments