mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-09-05 10:11:10 +02:00
When building depends on FreeBSD/OpenBSD `aarch64`, the host compilers
default to `default_host_{CC,CXX}`, which resolves to `gcc`/`g++`. This
is incorrect on these systems, where Clang is the default system
compiler.
Github-Pull: #32716
Rebased-From: 4f10a57671
10 lines
323 B
Makefile
10 lines
323 B
Makefile
build_freebsd_CC=clang
|
|
build_freebsd_CXX=clang++
|
|
|
|
build_freebsd_SHA256SUM = sha256sum
|
|
build_freebsd_DOWNLOAD = curl --location --fail --connect-timeout $(DOWNLOAD_CONNECT_TIMEOUT) --retry $(DOWNLOAD_RETRIES) -o
|
|
|
|
# freebsd host on freebsd builder: override freebsd host preferences.
|
|
freebsd_CC = clang
|
|
freebsd_CXX = clang++
|