1 ################################################################################
2 # CMake package infrastructure
4 # This file implements an infrastructure that eases development of
5 # package .mk files for CMake packages. It should be used for all
6 # packages that use CMake as their build system.
8 # See the Buildroot documentation for details on the usage of this
11 # In terms of implementation, this CMake infrastructure requires
12 # the .mk file to only specify metadata information about the
13 # package: name, version, download URL, etc.
15 # We still allow the package .mk file to override what the different
16 # steps are doing, if needed. For example, if <PKG>_BUILD_CMDS is
17 # already defined, it is used as the list of commands to perform to
18 # build the package, instead of the default CMake behaviour. The
19 # package can also define some post operation hooks.
21 ################################################################################
23 # Set compiler variables.
24 ifeq ($(BR2_CCACHE
),y
)
25 CMAKE_HOST_C_COMPILER
= $(HOST_DIR
)/usr
/bin
/ccache
26 CMAKE_HOST_CXX_COMPILER
= $(HOST_DIR
)/usr
/bin
/ccache
27 CMAKE_HOST_C_COMPILER_ARG1
= $(HOSTCC_NOCCACHE
)
28 CMAKE_HOST_CXX_COMPILER_ARG1
= $(HOSTCXX_NOCCACHE
)
30 CMAKE_HOST_C_COMPILER
= $(HOSTCC
)
31 CMAKE_HOST_CXX_COMPILER
= $(HOSTCXX
)
35 CMAKE_QUIET
= -DCMAKE_RULE_MESSAGES
=OFF
-DCMAKE_INSTALL_MESSAGE
=NEVER
38 ################################################################################
39 # inner-cmake-package -- defines how the configuration, compilation and
40 # installation of a CMake package should be done, implements a few hooks to
41 # tune the build process and calls the generic package infrastructure to
42 # generate the necessary make targets
44 # argument 1 is the lowercase package name
45 # argument 2 is the uppercase package name, including a HOST_ prefix
47 # argument 3 is the uppercase package name, without the HOST_ prefix
49 # argument 4 is the type (target or host)
50 ################################################################################
52 define inner-cmake-package
59 $(2)_INSTALL_OPTS ?
= install
60 $(2)_INSTALL_STAGING_OPTS ?
= DESTDIR
=$$(STAGING_DIR
) install/fast
61 $(2)_INSTALL_TARGET_OPTS ?
= DESTDIR
=$$(TARGET_DIR
) install/fast
63 $(2)_SRCDIR
= $$($(2)_DIR
)/$$($(2)_SUBDIR
)
65 $(3)_SUPPORTS_IN_SOURCE_BUILD ?
= YES
68 ifeq ($$($(3)_SUPPORTS_IN_SOURCE_BUILD
),YES
)
69 $(2)_BUILDDIR
= $$($(2)_SRCDIR
)
71 $(2)_BUILDDIR
= $$($(2)_SRCDIR
)/buildroot-build
75 # Configure step. Only define it if not already defined by the package
76 # .mk file. And take care of the differences between host and target
79 ifndef $(2)_CONFIGURE_CMDS
82 # Configure package for target
83 define $(2)_CONFIGURE_CMDS
84 (mkdir
-p
$$($$(PKG
)_BUILDDIR
) && \
85 cd
$$($$(PKG
)_BUILDDIR
) && \
86 rm -f CMakeCache.txt
&& \
88 $$($$(PKG
)_CONF_ENV
) $$(HOST_DIR
)/usr
/bin
/cmake
$$($$(PKG
)_SRCDIR
) \
89 -DCMAKE_TOOLCHAIN_FILE
="$$(HOST_DIR)/usr/share/buildroot/toolchainfile.cmake" \
90 -DCMAKE_BUILD_TYPE
=$$(if
$$(BR2_ENABLE_DEBUG
),Debug
,Release
) \
91 -DCMAKE_INSTALL_PREFIX
="/usr" \
92 -DCMAKE_COLOR_MAKEFILE
=OFF \
96 -DBUILD_EXAMPLES
=OFF \
100 -DBUILD_SHARED_LIBS
=$$(if
$$(BR2_STATIC_LIBS
),OFF
,ON
) \
102 $$($$(PKG
)_CONF_OPTS
) \
107 # Configure package for host
108 define $(2)_CONFIGURE_CMDS
109 (mkdir
-p
$$($$(PKG
)_BUILDDIR
) && \
110 cd
$$($$(PKG
)_BUILDDIR
) && \
111 rm -f CMakeCache.txt
&& \
113 $$(HOST_DIR
)/usr
/bin
/cmake
$$($$(PKG
)_SRCDIR
) \
114 -DCMAKE_INSTALL_SO_NO_EXE
=0 \
115 -DCMAKE_FIND_ROOT_PATH
="$$(HOST_DIR)" \
116 -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM
="BOTH" \
117 -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY
="BOTH" \
118 -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE
="BOTH" \
119 -DCMAKE_INSTALL_PREFIX
="$$(HOST_DIR)/usr" \
120 -DCMAKE_C_FLAGS
="$$(HOST_CFLAGS)" \
121 -DCMAKE_CXX_FLAGS
="$$(HOST_CXXFLAGS)" \
122 -DCMAKE_EXE_LINKER_FLAGS
="$$(HOST_LDFLAGS)" \
123 -DCMAKE_ASM_COMPILER
="$$(HOSTAS)" \
124 -DCMAKE_C_COMPILER
="$$(CMAKE_HOST_C_COMPILER)" \
125 -DCMAKE_CXX_COMPILER
="$$(CMAKE_HOST_CXX_COMPILER)" \
126 $(if
$$(CMAKE_HOST_C_COMPILER_ARG1
),\
127 -DCMAKE_C_COMPILER_ARG1
="$$(CMAKE_HOST_C_COMPILER_ARG1)" \
128 -DCMAKE_CXX_COMPILER_ARG1
="$$(CMAKE_HOST_CXX_COMPILER_ARG1)" \
130 -DCMAKE_COLOR_MAKEFILE
=OFF \
133 -DBUILD_EXAMPLE
=OFF \
134 -DBUILD_EXAMPLES
=OFF \
137 -DBUILD_TESTING
=OFF \
139 $$($$(PKG
)_CONF_OPTS
) \
145 # This must be repeated from inner-generic-package, otherwise we only get
146 # host-cmake in _DEPENDENCIES because of the following line
148 $(2)_DEPENDENCIES ?
= $$(filter-out host-skeleton host-toolchain
$(1),\
149 $$(patsubst host-host-
%,host-
%,$$(addprefix host-
,$$($(3)_DEPENDENCIES
))))
152 $(2)_DEPENDENCIES
+= host-cmake
155 # Build step. Only define it if not already defined by the package .mk
158 ifndef $(2)_BUILD_CMDS
160 define $(2)_BUILD_CMDS
161 $$(TARGET_MAKE_ENV
) $$($$(PKG
)_MAKE_ENV
) $$($$(PKG
)_MAKE
) $$($$(PKG
)_MAKE_OPTS
) -C
$$($$(PKG
)_BUILDDIR
)
164 define $(2)_BUILD_CMDS
165 $$(HOST_MAKE_ENV
) $$($$(PKG
)_MAKE_ENV
) $$($$(PKG
)_MAKE
) $$($$(PKG
)_MAKE_OPTS
) -C
$$($$(PKG
)_BUILDDIR
)
171 # Host installation step. Only define it if not already defined by the
174 ifndef $(2)_INSTALL_CMDS
175 define $(2)_INSTALL_CMDS
176 $$(HOST_MAKE_ENV
) $$($$(PKG
)_MAKE_ENV
) $$($$(PKG
)_MAKE
) $$($$(PKG
)_MAKE_OPTS
) $$($$(PKG
)_INSTALL_OPTS
) -C
$$($$(PKG
)_BUILDDIR
)
181 # Staging installation step. Only define it if not already defined by
182 # the package .mk file.
184 ifndef $(2)_INSTALL_STAGING_CMDS
185 define $(2)_INSTALL_STAGING_CMDS
186 $$(TARGET_MAKE_ENV
) $$($$(PKG
)_MAKE_ENV
) $$($$(PKG
)_MAKE
) $$($$(PKG
)_MAKE_OPTS
) $$($$(PKG
)_INSTALL_STAGING_OPTS
) -C
$$($$(PKG
)_BUILDDIR
)
191 # Target installation step. Only define it if not already defined by
192 # the package .mk file.
194 ifndef $(2)_INSTALL_TARGET_CMDS
195 define $(2)_INSTALL_TARGET_CMDS
196 $$(TARGET_MAKE_ENV
) $$($$(PKG
)_MAKE_ENV
) $$($$(PKG
)_MAKE
) $$($$(PKG
)_MAKE_OPTS
) $$($$(PKG
)_INSTALL_TARGET_OPTS
) -C
$$($$(PKG
)_BUILDDIR
)
200 # Call the generic package infrastructure to generate the necessary
202 $(call inner-generic-package
,$(1),$(2),$(3),$(4))
206 ################################################################################
207 # cmake-package -- the target generator macro for CMake packages
208 ################################################################################
210 cmake-package
= $(call inner-cmake-package
,$(pkgname
),$(call UPPERCASE
,$(pkgname
)),$(call UPPERCASE
,$(pkgname
)),target
)
211 host-cmake-package
= $(call inner-cmake-package
,host-
$(pkgname
),$(call UPPERCASE
,host-
$(pkgname
)),$(call UPPERCASE
,$(pkgname
)),host
)
213 ################################################################################
214 # Generation of the CMake toolchain file
215 ################################################################################
217 # CMAKE_SYSTEM_PROCESSOR should match uname -m
218 ifeq ($(BR2_ARM_CPU_ARMV4
),y
)
219 CMAKE_SYSTEM_PROCESSOR_ARM_VARIANT
= armv4
220 else ifeq ($(BR2_ARM_CPU_ARMV5
),y
)
221 CMAKE_SYSTEM_PROCESSOR_ARM_VARIANT
= armv5
222 else ifeq ($(BR2_ARM_CPU_ARMV6
),y
)
223 CMAKE_SYSTEM_PROCESSOR_ARM_VARIANT
= armv6
224 else ifeq ($(BR2_ARM_CPU_ARMV7A
),y
)
225 CMAKE_SYSTEM_PROCESSOR_ARM_VARIANT
= armv7
229 CMAKE_SYSTEM_PROCESSOR
= $(CMAKE_SYSTEM_PROCESSOR_ARM_VARIANT
)l
230 else ifeq ($(BR2_armeb
),y
)
231 CMAKE_SYSTEM_PROCESSOR
= $(CMAKE_SYSTEM_PROCESSOR_ARM_VARIANT
)b
233 CMAKE_SYSTEM_PROCESSOR
= $(BR2_ARCH
)
236 # In order to allow the toolchain to be relocated, we calculate the HOST_DIR
237 # based on the toolchainfile.cmake file's location: $(HOST_DIR)/usr/share/buildroot
238 # In all the other variables, HOST_DIR will be replaced by RELOCATED_HOST_DIR,
239 # so we have to strip "$(HOST_DIR)/" from the paths that contain it.
240 $(HOST_DIR
)/usr
/share
/buildroot
/toolchainfile.cmake
:
243 -e
's#@@STAGING_SUBDIR@@#$(call qstrip,$(STAGING_SUBDIR))#' \
244 -e
's#@@TARGET_CFLAGS@@#$(call qstrip,$(TARGET_CFLAGS))#' \
245 -e
's#@@TARGET_CXXFLAGS@@#$(call qstrip,$(TARGET_CXXFLAGS))#' \
246 -e
's#@@TARGET_LDFLAGS@@#$(call qstrip,$(TARGET_LDFLAGS))#' \
247 -e
's#@@TARGET_CC@@#$(subst $(HOST_DIR)/,,$(call qstrip,$(TARGET_CC)))#' \
248 -e
's#@@TARGET_CXX@@#$(subst $(HOST_DIR)/,,$(call qstrip,$(TARGET_CXX)))#' \
249 -e
's#@@CMAKE_SYSTEM_PROCESSOR@@#$(call qstrip,$(CMAKE_SYSTEM_PROCESSOR))#' \
250 $(TOPDIR
)/support
/misc
/toolchainfile.cmake.in \