2019-03-26 14:19:25 +01:00
|
|
|
From e2d82d46b33b693305978dfe64d84148314aef46 Mon Sep 17 00:00:00 2001
|
2019-03-08 10:55:09 +01:00
|
|
|
From: Etienne Carriere <etienne.carriere@linaro.org>
|
2019-03-26 14:19:25 +01:00
|
|
|
Date: Wed, 6 Mar 2019 11:46:07 +0100
|
2019-03-08 10:55:09 +01:00
|
|
|
Subject: [PATCH] cmake: support BUILD_STATIC_LIBS/BUILD_SHARED_LIBS
|
|
|
|
|
|
|
|
CMake variables BUILD_STATIC_LIBS and BUILD_SHARED_LIBS
|
|
|
|
set constraints on libraries and executable linkage.
|
|
|
|
|
|
|
|
With this change OP-TEE client CMake script builds and installs the
|
|
|
|
embedded files with the expected linkage configuration.
|
|
|
|
|
|
|
|
Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
|
|
|
Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
|
2019-03-26 14:19:25 +01:00
|
|
|
Acked-by: Jerome Forissier <jerome.forissier@linaro.org>
|
2019-03-08 10:55:09 +01:00
|
|
|
---
|
|
|
|
libteec/CMakeLists.txt | 5 +++--
|
|
|
|
tee-supplicant/CMakeLists.txt | 2 +-
|
|
|
|
2 files changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/libteec/CMakeLists.txt b/libteec/CMakeLists.txt
|
|
|
|
index 3ec8f66..e3495fb 100644
|
|
|
|
--- a/libteec/CMakeLists.txt
|
|
|
|
+++ b/libteec/CMakeLists.txt
|
|
|
|
@@ -33,7 +33,7 @@ endif()
|
|
|
|
################################################################################
|
|
|
|
# Built library
|
|
|
|
################################################################################
|
|
|
|
-add_library (teec SHARED ${SRC})
|
|
|
|
+add_library (teec ${SRC})
|
|
|
|
|
|
|
|
set_target_properties (teec PROPERTIES
|
|
|
|
VERSION ${PROJECT_VERSION}
|
|
|
|
@@ -71,4 +71,5 @@ target_link_libraries (teec
|
|
|
|
################################################################################
|
|
|
|
# FIXME: This should in someway harmonize with CFG_TEE_CLIENT_LOAD_PATH
|
|
|
|
# FIXME: Should we change this to /usr/local/lib?
|
|
|
|
-install (TARGETS teec DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
|
|
+install (TARGETS teec LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
|
|
|
|
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}")
|
|
|
|
diff --git a/tee-supplicant/CMakeLists.txt b/tee-supplicant/CMakeLists.txt
|
|
|
|
index d2d3afd..e663be9 100644
|
|
|
|
--- a/tee-supplicant/CMakeLists.txt
|
|
|
|
+++ b/tee-supplicant/CMakeLists.txt
|
|
|
|
@@ -85,4 +85,4 @@ target_link_libraries (${PROJECT_NAME}
|
|
|
|
################################################################################
|
|
|
|
# Install targets
|
|
|
|
################################################################################
|
|
|
|
-install (TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_SBINDIR})
|
|
|
|
+install (TARGETS ${PROJECT_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR})
|
|
|
|
--
|
2019-03-26 14:19:25 +01:00
|
|
|
2.17.1
|
2019-03-08 10:55:09 +01:00
|
|
|
|