diff options
author | sangwan.kwon <sangwan.kwon@samsung.com> | 2016-12-21 14:50:00 +0900 |
---|---|---|
committer | sangwan kwon <sangwan.kwon@samsung.com> | 2016-12-20 21:55:01 -0800 |
commit | 7df8726df528e0a1668a227046792d2fcf031cd4 (patch) | |
tree | ce8103b8d94179bb7e5f3702a09a013502df2c59 | |
parent | b04fea786696a73a67457fbb38e7a5421aab7762 (diff) | |
download | cert-checker-submit/tizen/20161226.013211.tar.gz cert-checker-submit/tizen/20161226.013211.tar.bz2 cert-checker-submit/tizen/20161226.013211.zip |
Fix linking error on upgrade toolchainsubmit/tizen_unified/20170309.100418submit/tizen_unified/20170308.100419submit/tizen/20161226.013211accepted/tizen/unified/20170309.074820accepted/tizen/mobile/20161226.131158accepted/tizen_mobile
[Problem]
* DSO missing from command line.
[Solution]
* Add -pthread flag.
Change-Id: I600050bf865420572e9cd7188284b9a016c43ce9
Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
-rw-r--r-- | src/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 25a1363..be0347a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -76,6 +76,7 @@ TARGET_LINK_LIBRARIES(${TARGET_CERT_CHECKER} ${${TARGET_CERT_CHECKER}_DEP_LIBRARIES} ${TARGET_CERT_CHECKER_COMMON} -pie + -pthread ) INSTALL(TARGETS ${TARGET_CERT_CHECKER} DESTINATION ${BIN_DIR}) |