
* Fixes to main * Add librasan * Party like it's 2024 * Fix snapshot module to work with guest asan * Fix guest_asan module * Fixes to runner * Fix linking issues using a REL * Fix qemu_launcher * Change modify_mapping to a method * Fix gasan_test * Remove debug from Justfile * Optimize release build of librasan * Set ulimit for qasan and gasan tests * Tidy up symbol renaming * Add missing symbols for PPC * Change to support rustix 1.0.0 * Canonicalize the CUSTOM_ASAN_PATH * Review changes * Restructure backends * release_max_level_info * More review changes * Clippy fixes * Changes to reduce the burden on the CI * Fix macos clippy --------- Co-authored-by: Your Name <you@example.com>
8 lines
281 B
Plaintext
8 lines
281 B
Plaintext
CROSS_TARGET="x86_64-unknown-linux-gnu"
|
|
CROSS_CC="x86_64-linux-gnu-gcc"
|
|
CROSS_CXX="x86_64-linux-gnu-g++"
|
|
CROSS_OBJCOPY="x86_64-linux-gnu-objcopy"
|
|
CROSS_STRIP="x86_64-linux-gnu-strip"
|
|
CROSS_CFLAGS=""
|
|
LIBRASAN_CFLAGS="-m64 -no-pie -Wl,--no-relax -mcmodel=large -fno-stack-protector"
|