2011-02-01 04:16:01 +08:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2012-04-27 01:54:03 +08:00
|
|
|
ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
|
|
|
|
MAKE_FLAGS+=VERBOSE=1
|
|
|
|
endif
|
2011-02-06 03:50:54 +08:00
|
|
|
|
2012-12-29 19:12:31 +08:00
|
|
|
CMAKE_SOURCE_DIR:=.
|
|
|
|
|
2014-05-30 19:58:54 +08:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
cmake_tool=$(TOOLCHAIN_DIR)/bin/$(1)
|
|
|
|
else
|
|
|
|
cmake_tool=$(shell which $(1))
|
|
|
|
endif
|
|
|
|
|
2011-03-05 18:36:52 +08:00
|
|
|
ifeq ($(CONFIG_CCACHE),)
|
2014-05-30 19:58:54 +08:00
|
|
|
CMAKE_C_COMPILER:=$(call cmake_tool,$(TARGET_CC))
|
|
|
|
CMAKE_CXX_COMPILER:=$(call cmake_tool,$(TARGET_CXX))
|
|
|
|
CMAKE_C_COMPILER_ARG1:=
|
|
|
|
CMAKE_CXX_COMPILER_ARG1:=
|
2011-03-05 18:36:52 +08:00
|
|
|
else
|
2016-01-03 22:44:30 +08:00
|
|
|
CCACHE:=$(STAGING_DIR_HOST)/bin/ccache
|
2011-07-24 16:34:08 +08:00
|
|
|
CMAKE_C_COMPILER:=$(CCACHE)
|
2013-11-18 22:10:12 +08:00
|
|
|
CMAKE_C_COMPILER_ARG1:=$(TARGET_CC_NOCACHE)
|
2011-07-24 16:34:08 +08:00
|
|
|
CMAKE_CXX_COMPILER:=$(CCACHE)
|
2013-11-18 22:10:12 +08:00
|
|
|
CMAKE_CXX_COMPILER_ARG1:=$(TARGET_CXX_NOCACHE)
|
2011-03-05 18:36:52 +08:00
|
|
|
endif
|
build: use gcc-provided ar, nm and ranlib where appropriate
Since GCC 4.7, GCC provides its own wrappers around ar, nm and ranlib, which
should be used for builds with link-time optimization. Since GCC 4.9, using them
actually necessary for LTO builds using convenience libraries to succeed.
There are some packages which try to automatically detect if gcc-{ar,nm,ranlib}
exist (one example is my package "fastd" in the package repository, which tries
to use LTO). This breaks because the OpenWrt build system explicitly sets the
binutils versions of these tools.
As it doesn't cause any issues to use gcc-{ar,nm,ranlib} instead of
{ar,nm,ranlib} even without LTO, this patch just makes OpenWrt use the
GCC-provided versions by default, which fixes the build of such packages with
GCC 4.9.
(I know that builds fail though when clang is used with -flto and
gcc-{ar,nm,ranlib}, but as all OpenWrt toolchains are based on GCC, this isn't
a real issue.)
Completely cleaning the tree (or at least `make clean toolchain/clean`) is
necessary to get a consistent state after the binutils plugins support patch and
this one (as trying to use gcc-{ar,nm,ranlib} with a binutils built without
plugin support will definitely lead to a build failure).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 43784
2014-12-27 20:59:59 +08:00
|
|
|
CMAKE_AR:=$(call cmake_tool,$(TARGET_AR))
|
|
|
|
CMAKE_NM:=$(call cmake_tool,$(TARGET_NM))
|
|
|
|
CMAKE_RANLIB:=$(call cmake_tool,$(TARGET_RANLIB))
|
2011-03-05 18:36:52 +08:00
|
|
|
|
2015-03-16 15:51:45 +08:00
|
|
|
CMAKE_FIND_ROOT_PATH:=$(STAGING_DIR);$(TOOLCHAIN_DIR)$(if $(CONFIG_EXTERNAL_TOOLCHAIN),;$(CONFIG_TOOLCHAIN_ROOT))
|
2016-01-25 23:49:44 +08:00
|
|
|
CMAKE_HOST_FIND_ROOT_PATH:=$(STAGING_DIR)/host;$(STAGING_DIR_HOST)
|
2015-04-20 02:33:07 +08:00
|
|
|
CMAKE_SHARED_LDFLAGS:=-Wl,-Bsymbolic-functions
|
2015-03-16 15:51:45 +08:00
|
|
|
|
2011-02-01 04:16:01 +08:00
|
|
|
define Build/Configure/Default
|
|
|
|
(cd $(PKG_BUILD_DIR); \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \
|
|
|
|
CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \
|
2012-01-09 13:42:04 +08:00
|
|
|
LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)" \
|
2011-02-01 04:16:01 +08:00
|
|
|
cmake \
|
|
|
|
-DCMAKE_SYSTEM_NAME=Linux \
|
|
|
|
-DCMAKE_SYSTEM_VERSION=1 \
|
|
|
|
-DCMAKE_SYSTEM_PROCESSOR=$(ARCH) \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2011-02-06 03:39:48 +08:00
|
|
|
-DCMAKE_C_FLAGS_RELEASE="-DNDEBUG" \
|
|
|
|
-DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \
|
2011-03-05 18:36:52 +08:00
|
|
|
-DCMAKE_C_COMPILER="$(CMAKE_C_COMPILER)" \
|
|
|
|
-DCMAKE_C_COMPILER_ARG1="$(CMAKE_C_COMPILER_ARG1)" \
|
|
|
|
-DCMAKE_CXX_COMPILER="$(CMAKE_CXX_COMPILER)" \
|
|
|
|
-DCMAKE_CXX_COMPILER_ARG1="$(CMAKE_CXX_COMPILER_ARG1)" \
|
2015-03-29 13:12:58 +08:00
|
|
|
-DCMAKE_ASM_COMPILER="$(CMAKE_C_COMPILER)" \
|
|
|
|
-DCMAKE_ASM_COMPILER_ARG1="$(CMAKE_C_COMPILER_ARG1)" \
|
2012-01-09 13:42:04 +08:00
|
|
|
-DCMAKE_EXE_LINKER_FLAGS:STRING="$(TARGET_LDFLAGS)" \
|
2015-04-20 02:33:07 +08:00
|
|
|
-DCMAKE_MODULE_LINKER_FLAGS:STRING="$(TARGET_LDFLAGS) $(CMAKE_SHARED_LDFLAGS)" \
|
|
|
|
-DCMAKE_SHARED_LINKER_FLAGS:STRING="$(TARGET_LDFLAGS) $(CMAKE_SHARED_LDFLAGS)" \
|
2014-05-30 19:58:54 +08:00
|
|
|
-DCMAKE_AR="$(CMAKE_AR)" \
|
build: use gcc-provided ar, nm and ranlib where appropriate
Since GCC 4.7, GCC provides its own wrappers around ar, nm and ranlib, which
should be used for builds with link-time optimization. Since GCC 4.9, using them
actually necessary for LTO builds using convenience libraries to succeed.
There are some packages which try to automatically detect if gcc-{ar,nm,ranlib}
exist (one example is my package "fastd" in the package repository, which tries
to use LTO). This breaks because the OpenWrt build system explicitly sets the
binutils versions of these tools.
As it doesn't cause any issues to use gcc-{ar,nm,ranlib} instead of
{ar,nm,ranlib} even without LTO, this patch just makes OpenWrt use the
GCC-provided versions by default, which fixes the build of such packages with
GCC 4.9.
(I know that builds fail though when clang is used with -flto and
gcc-{ar,nm,ranlib}, but as all OpenWrt toolchains are based on GCC, this isn't
a real issue.)
Completely cleaning the tree (or at least `make clean toolchain/clean`) is
necessary to get a consistent state after the binutils plugins support patch and
this one (as trying to use gcc-{ar,nm,ranlib} with a binutils built without
plugin support will definitely lead to a build failure).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 43784
2014-12-27 20:59:59 +08:00
|
|
|
-DCMAKE_NM="$(CMAKE_NM)" \
|
2014-05-30 19:58:54 +08:00
|
|
|
-DCMAKE_RANLIB="$(CMAKE_RANLIB)" \
|
2015-03-16 15:51:45 +08:00
|
|
|
-DCMAKE_FIND_ROOT_PATH="$(CMAKE_FIND_ROOT_PATH)" \
|
2011-06-22 19:02:00 +08:00
|
|
|
-DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=BOTH \
|
|
|
|
-DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY \
|
|
|
|
-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \
|
2011-02-01 04:16:01 +08:00
|
|
|
-DCMAKE_STRIP=: \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2011-05-21 00:21:30 +08:00
|
|
|
-DDL_LIBRARY=$(STAGING_DIR) \
|
2014-06-12 01:01:15 +08:00
|
|
|
-DCMAKE_PREFIX_PATH=$(STAGING_DIR) \
|
2015-02-09 06:54:15 +08:00
|
|
|
-DCMAKE_SKIP_RPATH=TRUE \
|
2011-02-01 04:16:01 +08:00
|
|
|
$(CMAKE_OPTIONS) \
|
2012-12-29 19:12:31 +08:00
|
|
|
$(CMAKE_SOURCE_DIR) \
|
2011-02-01 04:16:01 +08:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev/cmake
|
|
|
|
$(INSTALL_DIR) $(1)
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
Build/InstallDev = $(if $(CMAKE_INSTALL),$(Build/InstallDev/cmake))
|
2015-04-07 03:37:42 +08:00
|
|
|
|
|
|
|
define Host/Configure/Default
|
|
|
|
(cd $(HOST_BUILD_DIR); \
|
|
|
|
CFLAGS="$(HOST_CFLAGS)" \
|
|
|
|
CXXFLAGS="$(HOST_CFLAGS)" \
|
|
|
|
LDFLAGS="$(HOST_LDFLAGS)" \
|
|
|
|
cmake \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_C_FLAGS_RELEASE="-DNDEBUG" \
|
|
|
|
-DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \
|
|
|
|
-DCMAKE_EXE_LINKER_FLAGS:STRING="$(HOST_LDFLAGS)" \
|
|
|
|
-DCMAKE_MODULE_LINKER_FLAGS:STRING="$(HOST_LDFLAGS)" \
|
|
|
|
-DCMAKE_SHARED_LINKER_FLAGS:STRING="$(HOST_LDFLAGS)" \
|
|
|
|
-DCMAKE_FIND_ROOT_PATH="$(CMAKE_HOST_FIND_ROOT_PATH)" \
|
|
|
|
-DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=BOTH \
|
|
|
|
-DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY \
|
|
|
|
-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \
|
|
|
|
-DCMAKE_STRIP=: \
|
2016-01-25 23:49:44 +08:00
|
|
|
-DCMAKE_INSTALL_PREFIX=$(HOST_BUILD_PREFIX) \
|
|
|
|
-DCMAKE_PREFIX_PATH=$(HOST_BUILD_PREFIX) \
|
2015-04-07 03:37:42 +08:00
|
|
|
-DCMAKE_SKIP_RPATH=TRUE \
|
|
|
|
$(CMAKE_HOST_OPTIONS) \
|
|
|
|
$(CMAKE_SOURCE_DIR) \
|
|
|
|
)
|
|
|
|
endef
|