diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install.html | 7 |
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 | |||
479 | ISDKP=$(xcrun --sdk iphoneos --show-sdk-path) | 479 | ISDKP=$(xcrun --sdk iphoneos --show-sdk-path) |
480 | ICC=$(xcrun --sdk iphoneos --find clang) | 480 | ICC=$(xcrun --sdk iphoneos --find clang) |
481 | ISDKF="-arch armv7 -isysroot $ISDKP" | 481 | ISDKF="-arch armv7 -isysroot $ISDKP" |
482 | make HOST_CC="clang -m32 -arch i386" CROSS="$(dirname $ICC)/" \ | 482 | make 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 |
486 | ISDKP=$(xcrun --sdk iphoneos --show-sdk-path) | 486 | ISDKP=$(xcrun --sdk iphoneos --show-sdk-path) |
487 | ICC=$(xcrun --sdk iphoneos --find clang) | 487 | ICC=$(xcrun --sdk iphoneos --find clang) |
488 | ISDKF="-arch arm64 -isysroot $ISDKP" | 488 | ISDKF="-arch arm64 -isysroot $ISDKP" |
489 | make CROSS="$(dirname $ICC)/" TARGET_FLAGS="$ISDKF" TARGET_SYS=iOS | 489 | make 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> |