mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-08-04 05:54:48 +02:00

Needed to get past Clang 14 optimization bug: https://github.com/llvm/llvm-project/issues/96267
18 lines
667 B
Bash
Executable File
18 lines
667 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2020-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
|
|
|
|
export HOST=i686-pc-linux-gnu
|
|
export CONTAINER_NAME=ci_i686_multiprocess
|
|
export CI_IMAGE_NAME_TAG="docker.io/amd64/ubuntu:22.04"
|
|
export PACKAGES="llvm-15 clang-15 g++-multilib"
|
|
export DEP_OPTS="DEBUG=1 MULTIPROCESS=1"
|
|
export GOAL="install"
|
|
export BITCOIN_CONFIG="--enable-debug CC='clang-15 -m32' CXX='clang++-15 -m32' \
|
|
CPPFLAGS='-DBOOST_MULTI_INDEX_ENABLE_SAFE_MODE'"
|
|
export BITCOIND=bitcoin-node # Used in functional tests
|