diff options
author | Wook Song <wook16.song@samsung.com> | 2024-06-07 13:40:00 +0900 |
---|---|---|
committer | Wook Song <wook16.song@samsung.com> | 2024-06-07 13:43:15 +0900 |
commit | f196ee89ce02e8be2603299bc1a5cb79e534b8b5 (patch) | |
tree | 05d74c9a7d9ddfb93a6faba989d95c1ab1b403e9 | |
parent | 429e3e2a85f4846fde809df60817c0ec9142ef7b (diff) | |
download | dldt-accepted/tizen/unified/20240611.123217.tar.gz dldt-accepted/tizen/unified/20240611.123217.tar.bz2 dldt-accepted/tizen/unified/20240611.123217.zip |
Dist/Tizen: Fix build errors with gcc-14tizen_9.0_m2_releaseaccepted/tizen/unified/x/asan/20240625.092402accepted/tizen/unified/x/20240610.223345accepted/tizen/unified/toolchain/20240610.172805accepted/tizen/unified/dev/20240620.010643accepted/tizen/unified/20240611.123217accepted/tizen/9.0/unified/20241030.232032tizen_9.0tizenaccepted/tizen_unified_x_asanaccepted/tizen_unified_xaccepted/tizen_unified_toolchainaccepted/tizen_unified_devaccepted/tizen_unifiedaccepted/tizen_9.0_unified
This patch fixes build errors from the writing 1 byte into a region of
size 0 [-Werror=stringop-overflow=] with gcc-14.
Change-Id: Ic291001f4eb4699d8d33ad9d9529d7ba472edf15
Signed-off-by: Wook Song <wook16.song@samsung.com>
-rw-r--r-- | packaging/openvino.spec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/openvino.spec b/packaging/openvino.spec index 6c3d78207..ff79105f0 100644 --- a/packaging/openvino.spec +++ b/packaging/openvino.spec @@ -113,7 +113,7 @@ pushd build CFLAGS="${CFLAGS:-%optflags}"; export CFLAGS=${CFLAGS/-Wall/}; CFLAGS=`echo ${CFLAGS} -Wno-format-truncation` CXXFLAGS="${CXXFLAGS:-%optflags}"; export CXXFLAGS=${CXXFLAGS/-Wall/}; -CXXFLAGS=`echo ${CXXFLAGS} -Wno-format-truncation -Wno-unused-const-variable -Wno-free-nonheap-object -Wno-deprecated-declarations -Wno-array-bounds` +CXXFLAGS=`echo ${CXXFLAGS} -Wno-format-truncation -Wno-unused-const-variable -Wno-free-nonheap-object -Wno-deprecated-declarations -Wno-array-bounds -Wno-stringop-overflow` FFLAGS="${FFLAGS:-%optflags}"; export FFLAGS=${FFLAGS/-Wall/}; cmake .. \ -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \ |