hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
################################################################################
# Meson package infrastructure
#
# This file implements an infrastructure that eases development of
# package .mk files for Meson packages. It should be used for all
# packages that use Meson as their build system.
#
# See the Buildroot documentation for details on the usage of this
# infrastructure
#
# In terms of implementation, this Meson infrastructure requires
# the .mk file to only specify metadata information about the
# package: name, version, download URL, etc.
#
# We still allow the package .mk file to override what the different
# steps are doing, if needed. For example, if <PKG>_BUILD_CMDS is
# already defined, it is used as the list of commands to perform to
# build the package, instead of the default Meson behaviour. The
# package can also define some post operation hooks.
#
################################################################################
 
#
# Pass PYTHONNOUSERSITE environment variable when invoking Meson or Ninja, so
# $(HOST_DIR)/bin/python3 will not look for Meson modules in
# $HOME/.local/lib/python3.x/site-packages
#
MESON        = PYTHONNOUSERSITE=y $(HOST_DIR)/bin/meson
NINJA        = PYTHONNOUSERSITE=y $(HOST_DIR)/bin/ninja
NINJA_OPTS    = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS)
 
################################################################################
# inner-meson-package -- defines how the configuration, compilation and
# installation of a Meson package should be done, implements a few hooks to
# tune the build process and calls the generic package infrastructure to
# generate the necessary make targets
#
#  argument 1 is the lowercase package name
#  argument 2 is the uppercase package name, including a HOST_ prefix
#             for host packages
#  argument 3 is the uppercase package name, without the HOST_ prefix
#             for host packages
#  argument 4 is the type (target or host)
################################################################################
 
define inner-meson-package
 
#
# Configure step. Only define it if not already defined by the package
# .mk file. And take care of the differences between host and target
# packages.
#
ifndef $(2)_CONFIGURE_CMDS
ifeq ($(4),target)
 
$(2)_CFLAGS ?= $$(TARGET_CFLAGS)
$(2)_LDFLAGS ?= $$(TARGET_LDFLAGS)
$(2)_CXXFLAGS ?= $$(TARGET_CXXFLAGS)
 
# Configure package for target
#
#
define $(2)_CONFIGURE_CMDS
   rm -rf $$($$(PKG)_SRCDIR)/build
   mkdir -p $$($$(PKG)_SRCDIR)/build
   sed -e 's%@TARGET_CROSS@%$$(TARGET_CROSS)%g' \
       -e 's%@TARGET_ARCH@%$$(HOST_MESON_TARGET_CPU_FAMILY)%g' \
       -e 's%@TARGET_CPU@%$$(HOST_MESON_TARGET_CPU)%g' \
       -e 's%@TARGET_ENDIAN@%$$(HOST_MESON_TARGET_ENDIAN)%g' \
       -e "s%@TARGET_CFLAGS@%$$(call make-sq-comma-list,$$($(2)_CFLAGS))%g" \
       -e "s%@TARGET_LDFLAGS@%$$(call make-sq-comma-list,$$($(2)_LDFLAGS))%g" \
       -e "s%@TARGET_CXXFLAGS@%$$(call make-sq-comma-list,$$($(2)_CXXFLAGS))%g" \
       -e 's%@HOST_DIR@%$$(HOST_DIR)%g' \
       -e 's%@STAGING_DIR@%$$(STAGING_DIR)%g' \
       -e 's%@STATIC@%$$(if $$(BR2_STATIC_LIBS),true,false)%g' \
       -e "/^\[binaries\]$$$$/s:$$$$:$$(foreach x,$$($(2)_MESON_EXTRA_BINARIES),\n$$(x)):" \
       -e "/^\[properties\]$$$$/s:$$$$:$$(foreach x,$$($(2)_MESON_EXTRA_PROPERTIES),\n$$(x)):" \
       package/meson/cross-compilation.conf.in \
       > $$($$(PKG)_SRCDIR)/build/cross-compilation.conf
   PATH=$$(BR_PATH) \
   CC_FOR_BUILD="$$(HOSTCC)" \
   CXX_FOR_BUILD="$$(HOSTCXX)" \
   $$($$(PKG)_CONF_ENV) \
   $$(MESON) \
       --prefix=/usr \
       --libdir=lib \
       --default-library=$(if $(BR2_STATIC_LIBS),static,shared) \
       --buildtype=$(if $(BR2_ENABLE_RUNTIME_DEBUG),debug,release) \
       --cross-file=$$($$(PKG)_SRCDIR)/build/cross-compilation.conf \
       -Db_pie=false \
       -Dstrip=false \
       -Dbuild.pkg_config_path=$$(HOST_DIR)/lib/pkgconfig \
       $$($$(PKG)_CONF_OPTS) \
       $$($$(PKG)_SRCDIR) $$($$(PKG)_SRCDIR)/build
endef
else
 
# Configure package for host
define $(2)_CONFIGURE_CMDS
   rm -rf $$($$(PKG)_SRCDIR)/build
   mkdir -p $$($$(PKG)_SRCDIR)/build
   $$(HOST_CONFIGURE_OPTS) \
   $$($$(PKG)_CONF_ENV) $$(MESON) \
       --prefix=$$(HOST_DIR) \
       --libdir=lib \
       --sysconfdir=$$(HOST_DIR)/etc \
       --localstatedir=$$(HOST_DIR)/var \
       --default-library=shared \
       --buildtype=release \
       -Dstrip=true \
       $$($$(PKG)_CONF_OPTS) \
       $$($$(PKG)_SRCDIR) $$($$(PKG)_SRCDIR)/build
endef
endif
endif
 
$(2)_DEPENDENCIES += host-meson
 
#
# Build step. Only define it if not already defined by the package .mk
# file.
#
ifndef $(2)_BUILD_CMDS
ifeq ($(4),target)
define $(2)_BUILD_CMDS
   $$(TARGET_MAKE_ENV) $$($$(PKG)_NINJA_ENV) \
       $$(NINJA) $$(NINJA_OPTS) $$($$(PKG)_NINJA_OPTS) -C $$($$(PKG)_SRCDIR)/build
endef
else
define $(2)_BUILD_CMDS
   $$(HOST_MAKE_ENV) $$($$(PKG)_NINJA_ENV) \
       $$(NINJA) $$(NINJA_OPTS) $$($$(PKG)_NINJA_OPTS) -C $$($$(PKG)_SRCDIR)/build
endef
endif
endif
 
#
# Host installation step. Only define it if not already defined by the
# package .mk file.
#
ifndef $(2)_INSTALL_CMDS
define $(2)_INSTALL_CMDS
   $$(HOST_MAKE_ENV) $$($$(PKG)_NINJA_ENV) \
       $$(NINJA) $$(NINJA_OPTS) -C $$($$(PKG)_SRCDIR)/build install
endef
endif
 
#
# Staging installation step. Only define it if not already defined by
# the package .mk file.
#
ifndef $(2)_INSTALL_STAGING_CMDS
define $(2)_INSTALL_STAGING_CMDS
   $$(TARGET_MAKE_ENV) $$($$(PKG)_NINJA_ENV) DESTDIR=$$(STAGING_DIR) \
       $$(NINJA) $$(NINJA_OPTS) -C $$($$(PKG)_SRCDIR)/build install
endef
endif
 
#
# Target installation step. Only define it if not already defined by
# the package .mk file.
#
ifndef $(2)_INSTALL_TARGET_CMDS
define $(2)_INSTALL_TARGET_CMDS
   $$(TARGET_MAKE_ENV) $$($$(PKG)_NINJA_ENV) DESTDIR=$$(TARGET_DIR) \
       $$(NINJA) $$(NINJA_OPTS) -C $$($$(PKG)_SRCDIR)/build install
endef
endif
 
# Call the generic package infrastructure to generate the necessary
# make targets
$(call inner-generic-package,$(1),$(2),$(3),$(4))
 
endef
 
################################################################################
# meson-package -- the target generator macro for Meson packages
################################################################################
 
meson-package = $(call inner-meson-package,$(pkgname),$(call UPPERCASE,$(pkgname)),$(call UPPERCASE,$(pkgname)),target)
host-meson-package = $(call inner-meson-package,host-$(pkgname),$(call UPPERCASE,host-$(pkgname)),$(call UPPERCASE,$(pkgname)),host)
 
################################################################################
# Generation of the Meson cross-compilation.conf file
################################################################################
 
# Generate a Meson cross-compilation.conf suitable for use with the
# SDK; also install the file as a template for users to add their
# own flags if they need to.
define PKG_MESON_INSTALL_CROSS_CONF
   mkdir -p $(HOST_DIR)/etc/meson
   sed -e 's%@TARGET_CROSS@%$(TARGET_CROSS)%g' \
       -e 's%@TARGET_ARCH@%$(HOST_MESON_TARGET_CPU_FAMILY)%g' \
       -e 's%@TARGET_CPU@%$(HOST_MESON_TARGET_CPU)%g' \
       -e 's%@TARGET_ENDIAN@%$(HOST_MESON_TARGET_ENDIAN)%g' \
       -e "s%@TARGET_CFLAGS@%$(call make-sq-comma-list,$(TARGET_CFLAGS))@PKG_TARGET_CFLAGS@%g" \
       -e "s%@TARGET_LDFLAGS@%$(call make-sq-comma-list,$(TARGET_LDFLAGS))@PKG_TARGET_CFLAGS@%g" \
       -e "s%@TARGET_CXXFLAGS@%$(call make-sq-comma-list,$(TARGET_CXXFLAGS))@PKG_TARGET_CFLAGS@%g" \
       -e 's%@HOST_DIR@%$(HOST_DIR)%g' \
       -e 's%@STAGING_DIR@%$(STAGING_DIR)%g' \
       -e 's%@STATIC@%$(if $(BR2_STATIC_LIBS),true,false)%g' \
       $(HOST_MESON_PKGDIR)/cross-compilation.conf.in \
       > $(HOST_DIR)/etc/meson/cross-compilation.conf.in
   sed -e 's%@PKG_TARGET_CFLAGS@%%g' \
       -e 's%@PKG_TARGET_LDFLAGS@%%g' \
       -e 's%@PKG_TARGET_CXXFLAGS@%%g' \
       $(HOST_DIR)/etc/meson/cross-compilation.conf.in \
       > $(HOST_DIR)/etc/meson/cross-compilation.conf
endef
 
TOOLCHAIN_TARGET_FINALIZE_HOOKS += PKG_MESON_INSTALL_CROSS_CONF