Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions testing/scenario_app/compile_ios_aot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ echo "Using $SYSROOT as sysroot."
echo "Compiling Assembly..."

cc -arch arm64 \
-fembed-bitcode \
-isysroot "$SYSROOT" \
-miphoneos-version-min=8.0 \
-c "$OUTDIR/snapshot_assembly.S" \
Expand All @@ -55,6 +56,7 @@ cc -arch arm64 \
echo "Linking App using $SYSROOT..."

clang -arch arm64 \
-fembed-bitcode \
-isysroot "$SYSROOT" \
-miphoneos-version-min=8.0 \
-dynamiclib -Xlinker -rpath -Xlinker @executable_path/Frameworks \
Expand Down
1 change: 1 addition & 0 deletions testing/scenario_app/compile_ios_jit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ echo "Creating stub App using $SYSROOT..."

echo "static const int Moo = 88;" | xcrun clang -x c \
-arch x86_64 \
-fembed-bitcode-marker \
-isysroot "$SYSROOT" \
-miphoneos-version-min=8.0 \
-dynamiclib \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,6 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_BITCODE = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
Expand Down Expand Up @@ -471,7 +470,6 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_BITCODE = NO;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
Expand All @@ -497,7 +495,6 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = S8QB4VV633;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand All @@ -521,7 +518,6 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = S8QB4VV633;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand Down