From: Jaehyun Kim Date: Wed, 14 Feb 2024 05:12:31 +0000 (+0900) Subject: Avoid build error from nonnull gcc13 option X-Git-Tag: accepted/tizen/unified/20240215.130033^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a577fe538a26800dcfc52c634f41e4daa105a29a;p=platform%2Fupstream%2Ftoybox.git Avoid build error from nonnull gcc13 option There was a build issue due to a false alarm in gcc13, so the option is disabled. Change-Id: I9cf137f365ce77b7c45e06b1e058188ed79fab2e Signed-off-by: Jaehyun Kim --- diff --git a/packaging/toybox.spec b/packaging/toybox.spec index ec015f9..f51a7c8 100644 --- a/packaging/toybox.spec +++ b/packaging/toybox.spec @@ -88,13 +88,13 @@ cp %{SOURCE1001} . # create a minimum dynamic toybox (ELF) that consists of 'nslookup', 'ping', and 'dhcpd'. cp %{SOURCE1} .config export LDFLAGS=" -ldlog" -make -j 4 CC+="gcc $RPM_OPT_FLAGS" CFLAGS="$CFLAGS -fPIE -I/usr/include/dlog/" LDOPTIMIZE="-Wl,--gc-sections -pie" +make -j 4 CC+="gcc $RPM_OPT_FLAGS" CFLAGS="$CFLAGS -fPIE -I/usr/include/dlog/ -Wno-nonnull" LDOPTIMIZE="-Wl,--gc-sections -pie" cp toybox toybox-dynamic # create a dynamic toybox-full (ELF) that include most of the applets including 'init'. cp %{SOURCE11} .config export LDFLAGS=" -ldlog" -make -j 4 CC+="gcc $RPM_OPT_FLAGS" CFLAGS="$CFLAGS -fPIE -I/usr/include/dlog/" LDOPTIMIZE="-Wl,--gc-sections -pie" +make -j 4 CC+="gcc $RPM_OPT_FLAGS" CFLAGS="$CFLAGS -fPIE -I/usr/include/dlog/ -Wno-nonnull" LDOPTIMIZE="-Wl,--gc-sections -pie" cp toybox toybox-dynamic-full %install