Skip to content

Commit 7356109

Browse files
committed
build: set --build when configuring packages in depends
After reading https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.70/autoconf.html#Specifying-Target-Triplets, my understanding is that this change should mostly be a no-op, as --build defaults to the output of config.guess, however, this may be slightly more correct > For historical reasons, whenever you specify --host, be sure to > specify --build too; this will be fixed in the future. and will quell some warnings in depends (bitcoin#16354). If anything, this also explicitly enables cross-compilation mode when `--host` differs from `--build`. As for "fixed in the future", this is the case for Autoconf 2.70+.
1 parent b144620 commit 7356109

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

depends/funcs.mk

+7-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,13 @@ $(1)_config_env+=CMAKE_MODULE_PATH=$($($(1)_type)_prefix)/lib/cmake
140140
$(1)_config_env+=PATH=$(build_prefix)/bin:$(PATH)
141141
$(1)_build_env+=PATH=$(build_prefix)/bin:$(PATH)
142142
$(1)_stage_env+=PATH=$(build_prefix)/bin:$(PATH)
143-
$(1)_autoconf=./configure --host=$($($(1)_type)_host) --prefix=$($($(1)_type)_prefix) $$($(1)_config_opts) CC="$$($(1)_cc)" CXX="$$($(1)_cxx)"
143+
144+
# Setting a --build type that differs from --host will explicitly enable
145+
# cross-compilation mode. Note that --build defaults to the output of
146+
# config.guess, which is what we set it too here. This also quells autoconf
147+
# warnings, "If you wanted to set the --build type, don't use --host.",
148+
# when using versions older than 2.70.
149+
$(1)_autoconf=./configure --build=$(BUILD) --host=$($($(1)_type)_host) --prefix=$($($(1)_type)_prefix) $$($(1)_config_opts) CC="$$($(1)_cc)" CXX="$$($(1)_cxx)"
144150
ifneq ($($(1)_nm),)
145151
$(1)_autoconf += NM="$$($(1)_nm)"
146152
endif

0 commit comments

Comments
 (0)