From: Thomas Petazzoni Date: Fri, 25 Jun 2010 09:41:56 +0000 (+0200) Subject: cmake: pass LDFLAGS/CFLAGS when building for the host X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=77b5b803c7ae4298b885d6b2e0b7506804943669;p=buildroot.git cmake: pass LDFLAGS/CFLAGS when building for the host Passing LDFLAGS/CFLAGS when building for the host allows cmake to be compiled with the proper -rpath value (the -rpath option is added to HOST_LDFLAGS in a later commit). Signed-off-by: Thomas Petazzoni --- diff --git a/package/cmake/cmake.mk b/package/cmake/cmake.mk index 42d4ff5ed7..b388874aef 100644 --- a/package/cmake/cmake.mk +++ b/package/cmake/cmake.mk @@ -4,7 +4,9 @@ CMAKE_SITE=http://www.cmake.org/files/v2.8/ define HOST_CMAKE_CONFIGURE_CMDS (cd $(@D); \ - ./bootstrap --prefix=$(HOST_DIR)/usr --parallel=$(BR2_JLEVEL) \ + LDFLAGS="$(HOST_LDFLAGS)" \ + CFLAGS="$(HOST_CFLAGS)" \ + ./bootstrap --prefix=$(HOST_DIR)/usr --parallel=$(BR2_JLEVEL) \ ) endef