diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2024-05-31 15:23:45 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2024-05-31 15:23:45 +0900 |
commit | 0b718d0b0c9e886f899f5d2d60c8ca9177ba6a86 (patch) | |
tree | 577e90410a5f20cefb821800a32980b54194fc9b | |
parent | 24f5ec96b70d175c49e15205698428697bb27c4e (diff) | |
download | tar-accepted/tizen_9.0_base.tar.gz tar-accepted/tizen_9.0_base.tar.bz2 tar-accepted/tizen_9.0_base.zip |
Fix Werrors with GCC-14.1.0tizen_9.0_m2_releaseaccepted/tizen/base/x/asan/20240624.231356accepted/tizen/base/x/20240612.012429accepted/tizen/base/toolchain/20240604.070938accepted/tizen/base/asan/20240806.090146accepted/tizen/base/20240612.043318accepted/tizen/9.0/base/20241030.075434tizen_basetizen_9.0_baseaccepted/tizen_base_x_asanaccepted/tizen_base_xaccepted/tizen_base_toolchainaccepted/tizen_base_asanaccepted/tizen_baseaccepted/tizen_9.0_base
-Wimplicit-function-declaration
-Wint-conversion
Change-Id: I41e7d7a8d65b72b68c0d9ab73cf35804d7bebc4d
-rw-r--r-- | packaging/tar.spec | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packaging/tar.spec b/packaging/tar.spec index 02c0cc9..23d1f8e 100644 --- a/packaging/tar.spec +++ b/packaging/tar.spec @@ -38,8 +38,9 @@ cp %{SOURCE1001} . # --disable-silent-rules \ # --disable-nls -CFLAGS+=" -fPIE" -LDFLAGS+=" -pie" +export CFLAGS+=" -Wno-error=implicit-function-declaration -Wno-error=int-conversion" +export CFLAGS+=" -fPIE" +export LDFLAGS+=" -pie" %configure --disable-static \ --disable-nls |