B.J.
Results
2
comments of
B.J.
I tried the @wisxxx solution, but can't get it to link. I'm on a Intel MacBook running Sequoia 15.3.1. ``` rayhunter-main % cargo build --release --bin='serial' Compiling pkg-config v0.3.30 Compiling...
@mmilleror , solved. Add the following to ~/.cargo/config ``` [target.x86_64-apple-darwin] rustflags = [ "-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup", ] [target.aarch64-apple-darwin] rustflags = [ "-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup", ] ``` Found this...