tauri
tauri copied to clipboard
[bug] [v2] [iOS] Manual Xcode build fails with `cargo: command not found`
Describe the bug
I generate an Xcode project through cargo tauri
. When I then open it and try to build in Xcode manually, the script execution phase fails with the following error (long line, scroll to the end):
/Users/stijn/Library/Developer/Xcode/DerivedData/temp-epvdqgocduaasecmmqocxpzwtttl/Build/Intermediates.noindex/temp.build/debug-iphoneos/temp_iOS.build/Script-6BC118688969AAE7C46FEBA4.sh: line 2: cargo: command not found
Command PhaseScriptExecution failed with a nonzero exit code
I looked at the script it tries to execute, which is only this:
#!/bin/sh
cargo tauri ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths "${FRAMEWORK_SEARCH_PATHS:?}" --header-search-paths "${HEADER_SEARCH_PATHS:?}" --gcc-preprocessor-definitions "${GCC_PREPROCESSOR_DEFINITIONS:-}" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?}
That's weird, because cargo
is obviously installed on my system. The shell listed is /bin/sh
, and when I manually open a terminal by running /bin/sh
, I can run e.g. cargo --version
just fine.
Replacing cargo
in the script with /Users/stijn/.cargo/bin/cargo
does the trick, so there's probably something wrong with the PATH
.
Reproduction
- Create a new project. I used
pnpm
+ Svelte + TS, but I guess this fails with any combination. - I also ran
pnpm install
for good measure -
cargo tauri ios init
-
cargo tauri ios dev --open --host
- When Xcode has opened, hit Cmd + B and see the failure
Expected behavior
I expect the Xcode build to finish
Full tauri info
output
[✔] Environment
- OS: Mac OS 14.6.1 X64
✔ Xcode Command Line Tools: installed
✔ rustc: 1.80.1 (3f5fd8dd4 2024-08-06)
✔ cargo: 1.80.1 (376290515 2024-07-16)
✔ rustup: 1.27.1 (54dd3d00f 2024-04-24)
✔ Rust toolchain: stable-x86_64-apple-darwin (environment override by RUSTUP_TOOLCHAIN)
- node: 20.14.0
- pnpm: 9.6.0
- yarn: 1.22.22
- npm: 10.7.0
[-] Packages
- tauri [RUST]: 2.0.0-rc (no lockfile)
- tauri-build [RUST]: no manifest (no lockfile)
- wry [RUST]: no manifest (no lockfile)
- tao [RUST]: no manifest (no lockfile)
- tauri-cli [RUST]: 2.0.0-rc.4
- @tauri-apps/api [NPM]: 2.0.0-rc.1
- @tauri-apps/cli [NPM]: 2.0.0-rc.4
[-] App
- build-type: bundle
- CSP: unset
- frontendDist: ../build
- devUrl: http://localhost:1420/
- framework: Svelte
- bundler: Vite
[-] iOS
- Developer Teams: <redacted>
### Stack trace
```text
N.A.
Additional context
N.A.