[oe-commits] [openembedded-core] 09/13: cmake-native: prefer native sysroot libraries over host

git at git.openembedded.org git at git.openembedded.org
Fri Sep 23 14:02:29 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 89b28990ff3ef8ac7a33a0a3f9177b9bd0e1530b
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Thu Sep 22 17:11:47 2016 +0100

    cmake-native: prefer native sysroot libraries over host
    
    Explicitly set CMAKE_LIBRARY_PATH so that find_library() looks in the native
    sysroot before the host.
    
    Also pass --verbose to configure which sets CMAKE_VERBOSE_MAKEFILE for detailed
    compile logs.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-devtools/cmake/cmake-native_3.6.1.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb b/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb
index a301ae6..aec0d64 100644
--- a/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb
+++ b/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb
@@ -12,6 +12,7 @@ do_configure[cleandirs] = "${B}"
 
 # Disable ccmake since we don't depend on ncurses
 CMAKE_EXTRACONF = "\
+    -DCMAKE_LIBRARY_PATH=${STAGING_LIBDIR_NATIVE} \
     -DBUILD_CursesDialog=0 \
     -DCMAKE_USE_SYSTEM_LIBRARIES=1 \
     -DCMAKE_USE_SYSTEM_LIBRARY_JSONCPP=0 \
@@ -21,7 +22,7 @@ CMAKE_EXTRACONF = "\
 "
 
 do_configure () {
-	${S}/configure --prefix=${prefix} -- ${CMAKE_EXTRACONF}
+	${S}/configure --verbose --prefix=${prefix} -- ${CMAKE_EXTRACONF}
 }
 
 do_compile() {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list