You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
✗ cargo swift package -n ExpressionInterpreter -p macos
✔ Building target macOS
cargo build --target x86_64-apple-darwin
cargo build --target aarch64-apple-darwin
mkdir -p target/universal-macos/debug
lipo target/x86_64-apple-darwin/debug/libexpression_interpreter.a \
target/aarch64-apple-darwin/debug/libexpression_interpreter.a -create -output \
target/universal-macos/debug/libexpression_interpreter.a x Generating Swift bindings...
Failed due to the following error:
Could not generate UniFFI bindings for udl files due to the following error:
No such file or directory (os error 2)
More info
Lipo should have succeeded because the files are present:
✗ file target/x86_64-apple-darwin/debug/libexpression_interpreter.a
target/x86_64-apple-darwin/debug/libexpression_interpreter.a: current ar archive
✗ file target/aarch64-apple-darwin/debug/libexpression_interpreter.a
target/aarch64-apple-darwin/debug/libexpression_interpreter.a: current ar archive
✗ file target/universal-macos/debug/libexpression_interpreter.a
target/universal-macos/debug/libexpression_interpreter.a: Mach-O universal binary with 2 architectures: [x86_64:current ar archive] [arm64]
target/universal-macos/debug/libexpression_interpreter.a (for architecture x86_64): current ar archive
target/universal-macos/debug/libexpression_interpreter.a (for architecture arm64): current ar archive
The text was updated successfully, but these errors were encountered:
I am running into the following error:
Steps to reproduce:
Cargo.toml
build.rs
lib.rs
lib.udl
Full build output:
✗ cargo swift package -n ExpressionInterpreter -p macos ✔ Building target macOS cargo build --target x86_64-apple-darwin cargo build --target aarch64-apple-darwin mkdir -p target/universal-macos/debug lipo target/x86_64-apple-darwin/debug/libexpression_interpreter.a \ target/aarch64-apple-darwin/debug/libexpression_interpreter.a -create -output \ target/universal-macos/debug/libexpression_interpreter.a x Generating Swift bindings... Failed due to the following error: Could not generate UniFFI bindings for udl files due to the following error: No such file or directory (os error 2)
More info
Lipo should have succeeded because the files are present:
The text was updated successfully, but these errors were encountered: