Disable scudo feature

The feature will trigger rebuilds on every cargo build invocation.
A fix is submitted: https://github.com/google/rust-scudo/pull/6
Until then, let's disable it.

BUG=None
TEST=health-check

Change-Id: Id328bd976b65674b50f9845490eb5083008781e8
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3964927
Commit-Queue: Dennis Kempin <denniskempin@google.com>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
Dennis Kempin 2022-10-20 19:38:19 +00:00 committed by crosvm LUCI
parent ca2049f982
commit 89f0a34eff
2 changed files with 2 additions and 1 deletions

View file

@ -300,7 +300,7 @@ all-aarch64 = [
]
## All features that are compiled and tested for x86_64
all-x86_64 = ["all-aarch64", "plugin", "scudo"]
all-x86_64 = ["all-aarch64", "plugin"]
## All features that are compiled and tested for armhf
## Note: This platform is deprecated and will be phased out.

View file

@ -113,6 +113,7 @@ KNOWN_DISABLED_FEATURES = [
"default-no-sandbox",
"direct",
"libvda",
"scudo",
"whpx",
]