From 1f49a51ce22a5d264114d5139a85a468e7792b39 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Wed, 2 Jun 2021 21:51:26 +0300 Subject: [PATCH] infra: show RUSTFLAGS as well (#5867) It should make it easier to see where all the rustc flags come from. RUSTFLAGS along with `cargo fuzz build --verbose` should help to track down weird issues like https://github.com/google/oss-fuzz/pull/5865#issuecomment-852685588 It's a follow-up to ecf3d384fb0b62069 --- infra/base-images/base-builder/compile | 1 + 1 file changed, 1 insertion(+) diff --git a/infra/base-images/base-builder/compile b/infra/base-images/base-builder/compile index 129dec3f8..6882e1790 100755 --- a/infra/base-images/base-builder/compile +++ b/infra/base-images/base-builder/compile @@ -144,6 +144,7 @@ echo "CC=$CC" echo "CXX=$CXX" echo "CFLAGS=$CFLAGS" echo "CXXFLAGS=$CXXFLAGS" +echo "RUSTFLAGS=$RUSTFLAGS" echo "---------------------------------------------------------------" BUILD_CMD="bash -eux $SRC/build.sh"