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 settings llvm-libunwind = true the "native" build works just fine, but all cross targets ends up using the host compiler and not the target one for building llvm-libunwind.
I guess we probably should set CC and friends in the libstd build environment so that the cc crates picks the right configured one?
The text was updated successfully, but these errors were encountered:
Replaces rust-lang#61544Fixesrust-lang#59917
We need CXX to build llvm-libunwind which can be enabled for all
targets.
As we needed it for all hosts anyways, just move the detection so that
it is ran for all targets (which contains all hosts) instead.
Signed-off-by: Marc-Antoine Perennou <[email protected]>
rustbuild: detect cxx for all targets
Replaces #61544Fixes#59917
We need CXX to build llvm-libunwind which can be enabled for alltargets.
As we needed it for all hosts anyways, just move the detection so that it is ran for all targets (which contains all hosts) instead.
When settings
llvm-libunwind = true
the "native" build works just fine, but all cross targets ends up using the host compiler and not the target one for building llvm-libunwind.I guess we probably should set
CC
and friends in the libstd build environment so that the cc crates picks the right configured one?The text was updated successfully, but these errors were encountered: