David v.Knobelsdorff
David v.Knobelsdorff
Yes that works since its run from the terminal where my path is set. Ccache is installed via homebrew and the installation directory is part of my terminal path. However...
I'll give it a shot. I won't be able to have a look at this before next week but will comment back with a PR next week.
Sorry to comment again without having a PR ready for you. I just had a look at the problem. I think the .xcode.env (and .local) files would be the right...
Xcode passes parameters to ccache which is why I tried to call with-environment.sh from inside the ccache scripts. They pass all variables to ccache via $@. I will recreate my...
I added a printenv to the script to see what environment values are available inside the ccache script: ``` CA_DEBUG_TRANSACTIONS=1 SHELL=/bin/zsh TMPDIR=/var/folders/x3/lr5jdrkx0_34k92lf27vt5_c0000gq/T/ CCACHE_CONFIGPATH=/my/project/path/node_modules/react-native/scripts/xcode/ccache.conf LLBUILD_LANE_ID=6 USER=MyUserName LD_LIBRARY_PATH=/Applications/Xcode.app/Contents/Developer/../SharedFrameworks/ COMMAND_MODE=unix2003 LLBUILD_BUILD_ID=3364094211 UsePerConfigurationBuildLocations=YES SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.VSXXhHK684/Listeners...
Another option might be to echo a warning if ccache can't be found and use clang or clang++ directly in that case. While this does not solve the issue at...
Nothing too fancy I am aware of. We have a bridging header which includes this line: ``` #import ``` Also the build issues do not occur with Xcode 15.4 only...
Oh and also we are using Sentry via react-native-sentry here are the important lines from Podfile which states we are using 8.34.0: ``` - RNSentry (5.30.0): - hermes-engine - React-Core...
I just did. 1. Created a new project via `npx @react-native-community/cli init` 2. Added sentry dependency to the package.json 3. Ran yarn, bundle install, bundle exec pod install 4. Opened...
Do you think it makes sense to forward this to the react-native-sentry repository? As it is a problem with Xcode and the error seems to be happening compiling the Sentry...