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
When running morphic via PATH="/opt/homebrew/opt/llvm@14/bin:$PATH" LDFLAGS="-L/opt/homebrew/opt/llvm@14/lib" CPPFLAGS="-I/opt/homebrew/opt/llvm@14/include" LLVM_SYS_140_PREFIX=/opt/homebrew/Cellar/llvm@14/14.0.6 cargo run -- run ./samples/concat.mor on MacOS I get...
ld: unknown option: --gc-sections
clang-14: error: linker command failed with exit code 1 (use -v to see invocation)
could not spawn child process, IO error: No such file or directory (os error 2)
This seems to be some binary size optimization, so it appears to build and run fine if I comment out the relevant line...
src/llvm_gen.rs
2220: //.arg("-Wl,--gc-sections")
The text was updated successfully, but these errors were encountered:
When running morphic via
PATH="/opt/homebrew/opt/llvm@14/bin:$PATH" LDFLAGS="-L/opt/homebrew/opt/llvm@14/lib" CPPFLAGS="-I/opt/homebrew/opt/llvm@14/include" LLVM_SYS_140_PREFIX=/opt/homebrew/Cellar/llvm@14/14.0.6 cargo run -- run ./samples/concat.mor
on MacOS I get...This seems to be some binary size optimization, so it appears to build and run fine if I comment out the relevant line...
The text was updated successfully, but these errors were encountered: