diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-01-10 22:08:53 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-11 11:37:25 -0800 |
commit | 093a7bbce0db2dc263790ceedef9febec402a750 (patch) | |
tree | 0ab6b924535bac642741e3f4fe76976b2809a702 | |
parent | 4634ab890c536348dd0ee26f1eb3b6bc626a03dd (diff) | |
download | meta-freescale-093a7bbce0db2dc263790ceedef9febec402a750.tar.gz |
imx-gpu-apitrace: Sync options with recipe from meta-oe
Reset SECURITY_CFLAGS when using clang to fix build
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_10.0.0.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_10.0.0.bb b/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_10.0.0.bb index bd041582..4cc2685b 100644 --- a/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_10.0.0.bb +++ b/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_10.0.0.bb | |||
@@ -43,6 +43,13 @@ FILES:${PN} += " \ | |||
43 | ${libdir}/apitrace/scripts/* \ | 43 | ${libdir}/apitrace/scripts/* \ |
44 | ${libdir}/apitrace/wrappers/* \ | 44 | ${libdir}/apitrace/wrappers/* \ |
45 | " | 45 | " |
46 | 46 | EXTRA_OECMAKE += "\ | |
47 | -DENABLE_GUI=OFF \ | ||
48 | -DENABLE_STATIC_LIBGCC=OFF \ | ||
49 | -DENABLE_STATIC_LIBSTDCXX=OFF \ | ||
50 | -DPython3_ROOT_DIR=/usr/bin/python3-native \ | ||
51 | " | ||
47 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | 52 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" |
48 | COMPATIBLE_MACHINE = "(imxgpu)" | 53 | COMPATIBLE_MACHINE = "(imxgpu)" |
54 | SECURITY_CFLAGS:toolchain-clang = "" | ||
55 | |||