mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
a43b8e9555
This is required to use std::filesystem on macOS as support for it only landed in the libc++ dylib shipped with 10.15. See also: https://developer.apple.com/documentation/xcode-release-notes/xcode-11-release-notes Clang now supports the C++17 <filesystem> library for iOS 13, macOS 10.15, watchOS 6, and tvOS 13.
17 lines
504 B
Bash
Executable file
17 lines
504 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019-2020 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
|
|
|
|
export HOST=x86_64-apple-darwin19
|
|
export PIP_PACKAGES="zmq lief"
|
|
export GOAL="install"
|
|
export BITCOIN_CONFIG="--with-gui --enable-reduce-exports"
|
|
export CI_OS_NAME="macos"
|
|
export NO_DEPENDS=1
|
|
export OSX_SDK=""
|
|
export CCACHE_SIZE=300M
|
|
export RUN_SECURITY_TESTS="true"
|