Merge "Don't use prebuilt rust stdlibs for linux bionic" am: 4b1fe58b7d am: c60fc51c0a

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2143993

Change-Id: I1b438b28e983071eb1cf83d005b29a5137e4fd14
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2022-07-01 21:01:33 +00:00
committed by Automerger Merge Worker

View File

@@ -371,8 +371,9 @@ func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
if !Bool(compiler.Properties.No_stdlibs) {
for _, stdlib := range config.Stdlibs {
// If we're building for the build host, use the prebuilt stdlibs
if ctx.Host() && !ctx.Target().HostCross {
// If we're building for the build host, use the prebuilt stdlibs, unless the host
// is linux_bionic which doesn't have prebuilts.
if ctx.Host() && !ctx.Target().HostCross && ctx.Target().Os != android.LinuxBionic {
stdlib = "prebuilt_" + stdlib
}
deps.Stdlibs = append(deps.Stdlibs, stdlib)