mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
fae3cf0ffa
The fuzz binary is still compiled. This is required for the next commit.
17 lines
598 B
Bash
Executable file
17 lines
598 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019-present The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
# Homebrew's python@3.12 is marked as externally managed (PEP 668).
|
|
# Therefore, `--break-system-packages` is needed.
|
|
export PIP_PACKAGES="--break-system-packages zmq"
|
|
export GOAL="install"
|
|
export CMAKE_GENERATOR="Ninja"
|
|
export BITCOIN_CONFIG="-DBUILD_GUI=ON -DWITH_ZMQ=ON -DREDUCE_EXPORTS=ON"
|
|
export CI_OS_NAME="macos"
|
|
export NO_DEPENDS=1
|
|
export OSX_SDK=""
|