Attention is currently required from: Martin L Roth.
Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85753?usp=email )
Change subject: xcompile: Add "Wno-unterminated-string-initialization" ......................................................................
xcompile: Add "Wno-unterminated-string-initialization"
Change-Id: I996471f8a91f1cb1efc986fabfc18bd2ff536732 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M util/xcompile/xcompile 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/53/85753/1
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 3271e2f..ae87469 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -241,6 +241,9 @@ testcc "$GCC" "$CFLAGS_GCC -Wextra" && CFLAGS_GCC="$CFLAGS_GCC -Wextra"
+ testcc "$GCC" "$CFLAGS_GCC -Wno-unterminated-string-initialization" && + CFLAGS_GCC="$CFLAGS_GCC -Wno-unterminated-string-initialization" + # Disable warning on segments with RWX. # All loadable sections are placed in the same segment for simplicity. testld "$GCC" "$FLAGS_GCC" "${GCCPREFIX}ld${LINKER_SUFFIX}" \