Skip to content

Commit

Permalink
updated README
Browse files Browse the repository at this point in the history
updated oneliner to compile to iOS from CLI with latest iOS SDK
  • Loading branch information
gpakosz committed Oct 16, 2013
1 parent 719c793 commit 94a95a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,19 +199,19 @@ If you prefer compiling from command line and deploying to a jailbroken device
through SSH, launch one of the following from your terminal prompt.

$ mkdir -p bin/ios
$ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -arch armv7 -o bin/ios/PackedArraySelfTest -DPACKEDARRAY_SELF_TEST -DNDEBUG -O2 PackedArray.c
$ $(xcode-select --print-path)/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot $(xcodebuild -version -sdk | grep 'SDKs/iPhoneOS.*\.sdk' | cut -d' ' -f2 | sort -rn | head -1) -arch armv7 -o bin/ios/PackedArraySelfTest -DPACKEDARRAY_SELF_TEST -DNDEBUG -O2 PackedArray.c
$ codesign -s "iPhone Developer" ./bin/ios/PackedArraySelfTest

$ mkdir -p bin/ios
$ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -arch armv7 -o bin/ios/PackedArraySelfBench -DPACKEDARRAY_SELF_BENCH -DNDEBUG -O2 PackedArray.c
$ $(xcode-select --print-path)/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot $(xcodebuild -version -sdk | grep 'SDKs/iPhoneOS.*\.sdk' | cut -d' ' -f2 | sort -rn | head -1) -arch armv7 -o bin/ios/PackedArraySelfBench -DPACKEDARRAY_SELF_BENCH -DNDEBUG -O2 PackedArray.c
$ codesign -s "iPhone Developer" ./bin/ios/PackedArraySelfBench

$ mkdir -p bin/ios
$ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -arch armv7 -o bin/ios/PackedArraySIMDSelfTest -DPACKEDARRAY_SELF_TEST -DNDEBUG -O2 PackedArraySIMD.c
$ $(xcode-select --print-path)/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot $(xcodebuild -version -sdk | grep 'SDKs/iPhoneOS.*\.sdk' | cut -d' ' -f2 | sort -rn | head -1) -arch armv7 -o bin/ios/PackedArraySIMDSelfTest -DPACKEDARRAY_SELF_TEST -DNDEBUG -O2 PackedArraySIMD.c
$ codesign -s "iPhone Developer" ./bin/ios/PackedArraySIMDSelfTest

$ mkdir -p bin/ios
$ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -arch armv7 -o bin/ios/PackedArraySIMDSelfBench -DPACKEDARRAY_SELF_BENCH -DNDEBUG -O2 PackedArraySIMD.c
$ $(xcode-select --print-path)/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -isysroot $(xcodebuild -version -sdk | grep 'SDKs/iPhoneOS.*\.sdk' | cut -d' ' -f2 | sort -rn | head -1) -arch armv7 -o bin/ios/PackedArraySIMDSelfBench -DPACKEDARRAY_SELF_BENCH -DNDEBUG -O2 PackedArraySIMD.c
$ codesign -s "iPhone Developer" ./bin/ios/PackedArraySIMDSelfBench

### Compiling for Android
Expand Down

0 comments on commit 94a95a4

Please sign in to comment.