aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/install.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/install.html b/doc/install.html
index bbc71c98..efeda33c 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -479,14 +479,15 @@ Or use Android. :-p
479ISDKP=$(xcrun --sdk iphoneos --show-sdk-path) 479ISDKP=$(xcrun --sdk iphoneos --show-sdk-path)
480ICC=$(xcrun --sdk iphoneos --find clang) 480ICC=$(xcrun --sdk iphoneos --find clang)
481ISDKF="-arch armv7 -isysroot $ISDKP" 481ISDKF="-arch armv7 -isysroot $ISDKP"
482make HOST_CC="clang -m32 -arch i386" CROSS="$(dirname $ICC)/" \ 482make DEFAULT_CC=clang HOST_CC="clang -m32 -arch i386" \
483 TARGET_FLAGS="$ISDKF" TARGET_SYS=iOS 483 CROSS="$(dirname $ICC)/" TARGET_FLAGS="$ISDKF" TARGET_SYS=iOS
484 484
485# iOS/ARM64 485# iOS/ARM64
486ISDKP=$(xcrun --sdk iphoneos --show-sdk-path) 486ISDKP=$(xcrun --sdk iphoneos --show-sdk-path)
487ICC=$(xcrun --sdk iphoneos --find clang) 487ICC=$(xcrun --sdk iphoneos --find clang)
488ISDKF="-arch arm64 -isysroot $ISDKP" 488ISDKF="-arch arm64 -isysroot $ISDKP"
489make CROSS="$(dirname $ICC)/" TARGET_FLAGS="$ISDKF" TARGET_SYS=iOS 489make DEFAULT_CC=clang CROSS="$(dirname $ICC)/" \
490 TARGET_FLAGS="$ISDKF" TARGET_SYS=iOS
490</pre> 491</pre>
491 492
492<h3 id="consoles">Cross-compiling for consoles</h3> 493<h3 id="consoles">Cross-compiling for consoles</h3>