forked from ElementsProject/elements
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ElementsProject#1412 from psgreco/master-fix-macos
CI: Fix macos native build
- Loading branch information
Showing
3 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,14 @@ | |
|
||
export LC_ALL=C.UTF-8 | ||
|
||
export HOST=x86_64-apple-darwin | ||
export PIP_PACKAGES="zmq lief" | ||
export HOST=arm64-apple-darwin | ||
# Homebrew's [email protected] is marked as externally managed (PEP 668). | ||
# Therefore, `--break-system-packages` is needed. | ||
export PIP_PACKAGES="--break-system-packages zmq" | ||
export GOAL="install" | ||
# ELEMENTS: add -fno-stack-check to work around clang bug on macos | ||
export BITCOIN_CONFIG="--with-gui --enable-reduce-exports CXXFLAGS=-fno-stack-check" | ||
export BITCOIN_CONFIG="--with-gui --with-miniupnpc --with-natpmp --enable-reduce-exports CXXFLAGS=-fno-stack-check" | ||
export CI_OS_NAME="macos" | ||
export NO_DEPENDS=1 | ||
export OSX_SDK="" | ||
export CCACHE_SIZE=300M | ||
export RUN_SECURITY_TESTS="true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters