mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 19:37:27 -03:00
build: Fix regression introduced in PR23603
Assignments in builders/darwin.mk actually override previous assignments in hosts/default.mk. Therefore, the append operator must be used instead.
This commit is contained in:
parent
369978686e
commit
d3b0f82a43
1 changed files with 4 additions and 4 deletions
|
@ -22,7 +22,7 @@ darwin_INSTALL_NAME_TOOL:=$(shell xcrun -f install_name_tool)
|
|||
darwin_native_binutils=
|
||||
darwin_native_toolchain=
|
||||
|
||||
x86_64_darwin_CFLAGS = -arch x86_64
|
||||
x86_64_darwin_CXXFLAGS = $(x86_64_darwin_CFLAGS)
|
||||
aarch64_darwin_CFLAGS = -arch arm64
|
||||
aarch64_darwin_CXXFLAGS = $(aarch64_darwin_CFLAGS)
|
||||
x86_64_darwin_CFLAGS += -arch x86_64
|
||||
x86_64_darwin_CXXFLAGS += -arch x86_64
|
||||
aarch64_darwin_CFLAGS += -arch arm64
|
||||
aarch64_darwin_CXXFLAGS += -arch arm64
|
||||
|
|
Loading…
Reference in a new issue