From: Seungho Baek Date: Mon, 13 May 2024 05:23:05 +0000 (+0900) Subject: [Tizen] Support asan build option X-Git-Tag: accepted/tizen/unified/20240516.163542~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7f4e7dee7e7d4108ff5c4db2e02197166a6c18ac;p=platform%2Fcore%2Fuifw%2Fdali-csharp-binder.git [Tizen] Support asan build option This reverts commit c166c54f3effd516f6b39f33f8c718c2c33099a1. Change-Id: I5ba6486ffd15447f73f70d56906f2c0772eaf325 --- diff --git a/packaging/dali-csharp-binder.spec b/packaging/dali-csharp-binder.spec index 2daf39dc..484b1394 100644 --- a/packaging/dali-csharp-binder.spec +++ b/packaging/dali-csharp-binder.spec @@ -66,6 +66,13 @@ BuildRequires: pkgconfig(ecore-wl2) BuildRequires: pkgconfig(ecore-wayland) %endif +# For ASAN test +%if "%{vd_asan}" == "1" || "%{asan}" == "1" +BuildRequires: asan-force-options +BuildRequires: asan-build-env +BuildRequires: libasan +%endif + # for multiprofile Requires: %{name}-compat = %{version}-%{release} Recommends: %{name}-profile_common = %{version}-%{release} @@ -231,6 +238,12 @@ CXXFLAGS+=" -DOVER_TIZEN_VERSION_7" %endif +%if "%{vd_asan}" == "1" || "%{asan}" == "1" +CFLAGS+=" -fsanitize=address" +CXXFLAGS+=" -fsanitize=address" +LDFLAGS+=" -fsanitize=address" +%endif + %if 0%{?enable_debug} cmake_flags+=" -DCMAKE_BUILD_TYPE=Debug" %endif