mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 03:57:24 +00:00
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:
parent
ca2049f982
commit
89f0a34eff
2 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -113,6 +113,7 @@ KNOWN_DISABLED_FEATURES = [
|
|||
"default-no-sandbox",
|
||||
"direct",
|
||||
"libvda",
|
||||
"scudo",
|
||||
"whpx",
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue