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
In #60981 we switched to detecting compiler-rt's presence in src/llvm-project/compiler-rt and enabling the c feature for compiler-builtins if present, falling back to rust-only otherwise.
In the git checkout, this works fine, however the compiler-rt directory is missing from the rustc-1.37.0-src.tar.gz vendored source tarball. As a result, builds from this tarball fall back to rust-only implementations, resulting in possibly less optimized code.
The text was updated successfully, but these errors were encountered:
…richton
Include compiler-rt in the source tarball
In rust-lang#60981 we switched to using src/llvm-project/compiler-rt inside
compiler-builtins rather than a separate copy of it.
In order to have the "c" feature turn on in builds from the source
tarball, we need to include that path in its creation.
fixesrust-lang#64239
In rust-lang#60981 we switched to using src/llvm-project/compiler-rt inside
compiler-builtins rather than a separate copy of it.
In order to have the "c" feature turn on in builds from the source
tarball, we need to include that path in its creation.
fixesrust-lang#64239
In #60981 we switched to detecting compiler-rt's presence in
src/llvm-project/compiler-rt
and enabling thec
feature forcompiler-builtins
if present, falling back to rust-only otherwise.In the git checkout, this works fine, however the
compiler-rt
directory is missing from therustc-1.37.0-src.tar.gz
vendored source tarball. As a result, builds from this tarball fall back to rust-only implementations, resulting in possibly less optimized code.The text was updated successfully, but these errors were encountered: