Giter Club home page Giter Club logo

Comments (14)

messense avatar messense commented on May 23, 2024

No, the error is from warning(link): framework not found for '-framework Security' because zig does not bundle all the macOS frameworks.

from cargo-zigbuild.

messense avatar messense commented on May 23, 2024

You can supply a SDKROOT env var to tell zig cc about the path to macOS SDK.

from cargo-zigbuild.

messense avatar messense commented on May 23, 2024

I think you can use

SDKROOT=`xcrun --show-sdk-path` cargo zigbuild ...

if you are building on macOS.

from cargo-zigbuild.

Dreamacro avatar Dreamacro commented on May 23, 2024

Thanks for the quick reply. It works 👍

from cargo-zigbuild.

Dreamacro avatar Dreamacro commented on May 23, 2024

Unfortunately, the artifacts of zigbuild are not executable on macOS.

project on main [$!] is 📦 v0.1.0 via 🦀 v1.62.1 
❯ cargo zigbuild --release --target aarch64-apple-darwin
    Finished release [optimized] target(s) in 0.06s

project on main [$!] is 📦 v0.1.0 via 🦀 v1.62.1 
❯ ./target/aarch64-apple-darwin/release/binary          
[1]    92924 killed     ./target/aarch64-apple-darwin/release/binary

But the result of cargo build --release --target aarch64-apple-darwin is worked.

How can I help you debug this problem?

from cargo-zigbuild.

messense avatar messense commented on May 23, 2024

Can you run it through lldb and paste the backtrace?

from cargo-zigbuild.

Dreamacro avatar Dreamacro commented on May 23, 2024

I tried some parameters and finally found that the build profile was the problem. When I removed strip = true, everything was fine.

[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"

Could you please describe in more detail some of the operations of lldb if you need some additional information?

from cargo-zigbuild.

messense avatar messense commented on May 23, 2024
lldb ./target/aarch64-apple-darwin/release/binary
run

If it crashes lldb should stop and present you a stacktrace, run bt all to get full backtrace.

from cargo-zigbuild.

Dreamacro avatar Dreamacro commented on May 23, 2024

Something strange happened:

When I run cargo build --release --target aarch64-apple-darwin for the first time and execute it with lldb run, it executes fine.

But when I execute it the second time using lldb it exits directly.

❯ lldb ./target/aarch64-apple-darwin/release/binary
(lldb) target create "./target/aarch64-apple-darwin/release/binary"
[1]    4572 killed     lldb ./target/aarch64-apple-darwin/release/binary

from cargo-zigbuild.

Dreamacro avatar Dreamacro commented on May 23, 2024

After simple testing, the problem appears to exist only in target aarch64-apple-darwin.

on Intel Macbook Pro:
aarch64-apple-darwin: killed
x86_64-apple-darwin: work
x86_64-unknown-linux-gnu: work

on M1 Pro:
aarch64-apple-darwin: killed
x86_64-apple-darwin: work
x86_64-unknown-linux-gnu: work

from cargo-zigbuild.

messense avatar messense commented on May 23, 2024

FYI, if you are already building on macOS, cargo build should just work, no need to use cargo-zigbuild.

from cargo-zigbuild.

Dreamacro avatar Dreamacro commented on May 23, 2024

Thanks, I mainly use cargo-zigbuild for Linux artifacts. Just tried macOS out of curiosity, but found this problem

from cargo-zigbuild.

messense avatar messense commented on May 23, 2024

I suspect it's a zig issue, consider report to zig if you can reproduce it with zig cc only.

from cargo-zigbuild.

appelgriebsch avatar appelgriebsch commented on May 23, 2024

FYI, if you are already building on macOS, cargo build should just work, no need to use cargo-zigbuild.

Might still be helpful because of this issue: rust-lang/rust#55235.

Just stumbled over this today... currently not able to build a x86_64 Apple binary on M1 MacBook Pro :(

EDIT: found a workaround.... install the x86_64 toolchain along with the aarch64 one

rustup toolchain install stable-x86_64-apple-darwin

and then run

cargo +stable-x86_64-apple-darwin build --release

Worked even with some C (-sys) crates involved.

from cargo-zigbuild.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.