forked from google/oss-fuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CRAS: Use CARGO_BUILD_TARGET="x86_64-unknown-linux-gnu"
In oss-fuzz, to build with MemorySanitizer, Rust part needs to use ``` CARGO_BUILD_TARGET="x86_64-unknown-linux-gnu" ``` to resolve libc `MemorySanitizer: use-of-uninitialized-value` error according to google#3469.
- Loading branch information
paulhsia
committed
Jul 27, 2022
1 parent
6945f4c
commit 7e8b7fd
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,9 @@ auto_ccs: | |
- "[email protected]" | ||
- "[email protected]" | ||
- "[email protected]" | ||
builds_per_day: 2 | ||
sanitizers: | ||
- address | ||
- memory | ||
- undefined | ||
builds_per_day: 4 | ||
main_repo: 'https://chromium.googlesource.com/chromiumos/third_party/adhd' |