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
Linkers (both rust-lld and ld) attempt to link against the built GCC's crtbegin.o, which may not match the host architecture. Locally I've solved this by commenting out the LIBRARY_PATH environment variable then specifying RUSTFLAGS="-Lgcc-install/lib" to link against libgccjit.
The text was updated successfully, but these errors were encountered:
rustc_codegen_gcc/build_system/src/build.rs
Line 194 in fcac229
Linkers (both
rust-lld
andld
) attempt to link against the built GCC'scrtbegin.o
, which may not match the host architecture. Locally I've solved this by commenting out theLIBRARY_PATH
environment variable then specifyingRUSTFLAGS="-Lgcc-install/lib"
to link against libgccjit.The text was updated successfully, but these errors were encountered: