summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarthik Ramanan <a0393906@ti.com>2016-10-31 12:21:59 +0530
committerAngela Stegmaier <angelabaker@ti.com>2016-11-08 14:16:33 -0600
commit3cb0372a0e9c57c194f97c64cba36682c427cc4e (patch)
tree0ed905a36fbd17001c26e55dca13beafce7c614e
parente6f64d4b04f1c929366c922a2e5a4728fbb4d919 (diff)
downloadipc-3cb0372a0e9c57c194f97c64cba36682c427cc4e.tar.gz
Linux: Add pthread dependency for transport
On Poky based builds, the ti-ipc compilation results in the below error: .libs/libtitransportrpmsg.so: undefined reference to `pthread_join' ~~~~~~~~~~~~~~~~~~~ Signed-off-by: Karthik Ramanan <a0393906@ti.com>
-rw-r--r--linux/src/transport/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/src/transport/Makefile.am b/linux/src/transport/Makefile.am
index 32f0046..b4d3078 100644
--- a/linux/src/transport/Makefile.am
+++ b/linux/src/transport/Makefile.am
@@ -32,7 +32,7 @@
##
# additional include paths necessary to compile the library
-AM_CFLAGS = -I$(top_srcdir)/hlos_common/include -D_GNU_SOURCE -Wall
+AM_CFLAGS = -I$(top_srcdir)/hlos_common/include -D_GNU_SOURCE -Wall -pthread
if KERNEL_INSTALL_DIR
AM_CFLAGS += -I$(KERNEL_INSTALL_DIR)/include/generated/uapi