Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: ios build tweaks #12

Merged
merged 1 commit into from
Sep 17, 2024
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ example/android/app/src/main/assets/*.bin
venv
.venv

# environment variables
.env

# place to put non source-controlled files
ungitable/

Expand Down
12 changes: 2 additions & 10 deletions example/ios/LlmMediapipeExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -586,11 +586,7 @@
"-DFOLLY_USE_LIBCPP=1",
"-DFOLLY_CFG_NO_COROUTINES=1",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
USE_HERMES = true;
Expand Down Expand Up @@ -658,11 +654,7 @@
"-DFOLLY_USE_LIBCPP=1",
"-DFOLLY_CFG_NO_COROUTINES=1",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
USE_HERMES = true;
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ PODS:
- React-Mapbuffer (0.73.7):
- glog
- React-debug
- react-native-llm-mediapipe (0.2.0):
- react-native-llm-mediapipe (0.4.1):
- glog
- MediaPipeTasksGenAI
- RCT-Folly (= 2022.05.16.00)
Expand Down Expand Up @@ -1359,7 +1359,7 @@ SPEC CHECKSUMS:
React-jsinspector: f356e49aa086380d3a4892708ca173ad31ac69c1
React-logger: 7b19bdfb254772a0332d6cd4d66eceb0678b6730
React-Mapbuffer: 6f392912435adb8fbf4c3eee0e79a0a0b4e4b717
react-native-llm-mediapipe: a98f35b3298dbe4b1d050c4d65e153fabab0b146
react-native-llm-mediapipe: 61c6d9f67406b55327ea93c0c818422bc026b41c
React-nativeconfig: 754233aac2a769578f828093b672b399355582e6
React-NativeModulesApple: a03b2da2b8e127d5f5ee29c683e0deba7a9e1575
React-perflogger: 68ec84e2f858a3e35009aef8866b55893e5e0a1f
Expand Down
Loading