diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-12-11 07:50:19 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-12-12 13:53:33 +0000 |
commit | 3258649b0452f69c666d1f2f6aff04eb03abf7d0 (patch) | |
tree | c0890bcfb05f2bea125fdd245c2ffcb76caf09f4 /recipes-platform/images/agl-demo-platform-crosssdk.bb | |
parent | 1217237797bddbdb5e880ccc1f465a8f75b4961f (diff) |
agl-demo-platform-crosssdk: add gcc-sanitizer to TOOLCHAIN_TARGET_TASK
Add gcc-sanitizers package to TOOLCHAIN_TARGET_TASK which allows linking of
libasan for detecting use-after-free and other memory corruption issue in
built applications/libraries.
Bug-AGL: SPEC-3040
Change-Id: Idad618e2bd0e9fa98baa9a3befc694c5bddeb711
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'recipes-platform/images/agl-demo-platform-crosssdk.bb')
-rwxr-xr-x | recipes-platform/images/agl-demo-platform-crosssdk.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes-platform/images/agl-demo-platform-crosssdk.bb b/recipes-platform/images/agl-demo-platform-crosssdk.bb index dcd8848f5..a814b694e 100755 --- a/recipes-platform/images/agl-demo-platform-crosssdk.bb +++ b/recipes-platform/images/agl-demo-platform-crosssdk.bb @@ -74,3 +74,8 @@ TOOLCHAIN_TARGET_TASK += "nlohmann-json-dev" # other users of the C++17 filesystem standard library feature. # Can be removed upon upgrade to gcc 9.x, as it will no longer be necessary. TOOLCHAIN_TARGET_TASK += "libstdc++-staticdev" + +# Add gcc-sanitizers to support building applications using the SDK with +# AddressSanitizer support to detect use-after-frees along with other +# memory issue. +TOOLCHAIN_TARGET_TASK += "gcc-sanitizers" |