summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2024-07-16 19:48:53 -0500
committerRyan Eatmon <reatmon@ti.com>2024-07-17 09:11:43 -0500
commit40cfbe214e85292c025506a075398962f935019c (patch)
treed7890b091062d768b986672ecd7d9db7a2003282
parentc56bdd9ffa0136b5772a1ea5628249f1269f11fa (diff)
downloadmeta-ti-40cfbe214e85292c025506a075398962f935019c.tar.gz
ti-ipc: Fix "buildpaths" QA error
Referring to the TI specific kernel header file via -I${UNPACKDIR} causes a "buildpaths" QA error. Solution is to tell gcc to map the host directory to a target directory using -fdebug-prefix-map Suggested-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-bsp/recipes-ti/ipc/ti-ipc_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-ti-bsp/recipes-ti/ipc/ti-ipc_git.bb b/meta-ti-bsp/recipes-ti/ipc/ti-ipc_git.bb
index 11be09ea..431f245f 100644
--- a/meta-ti-bsp/recipes-ti/ipc/ti-ipc_git.bb
+++ b/meta-ti-bsp/recipes-ti/ipc/ti-ipc_git.bb
@@ -18,7 +18,7 @@ SRC_URI += "file://tiipclad-daemon.sh \
18 file://0001-MmRpc-Stop-looking-for-rpmsg_rpc.h-in-the-kernel.patch \ 18 file://0001-MmRpc-Stop-looking-for-rpmsg_rpc.h-in-the-kernel.patch \
19 " 19 "
20 20
21CFLAGS += "-I${UNPACKDIR}" 21CFLAGS += "-I${UNPACKDIR} -fdebug-prefix-map=${UNPACKDIR}=${TARGET_DBGSRC_DIR}"
22 22
23DAEMON = "UNKNOWN" 23DAEMON = "UNKNOWN"
24DAEMON:dra7xx = "lad_dra7xx" 24DAEMON:dra7xx = "lad_dra7xx"