Large template/boost-heavy TUs (e.g. asyncrpcoperation.cpp) exceed the standard PE/COFF ~32k-section limit under mingw-w64, which makes GNU ld emit "dangerous relocation" on .pdata and crash (SIGSEGV) at link. The bigobj COFF variant lifts that limit; this is the same flag Bitcoin Core sets for its mingw host. Fixes the Windows daemon cross-compile. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
47 lines
1.4 KiB
Bash
Executable File
47 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2016-2024 The Hush developers
|
|
# Distributed under the GPLv3 software license, see the accompanying
|
|
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
export HOST=x86_64-w64-mingw32
|
|
CXX=x86_64-w64-mingw32-g++-posix
|
|
CC=x86_64-w64-mingw32-gcc-posix
|
|
PREFIX="$(pwd)/depends/$HOST"
|
|
|
|
set -eu -o pipefail
|
|
set -x
|
|
|
|
cd "$(dirname "$(readlink -f "$0")")/.."
|
|
cd depends/ && make HOST=$HOST V=1 NO_QT=1
|
|
cd ..
|
|
|
|
./autogen.sh
|
|
|
|
# -Wa,-mbig-obj: the daemon's large template/boost-heavy TUs (e.g. asyncrpcoperation.cpp) exceed the
|
|
# standard PE/COFF ~32k-section limit, which makes GNU ld emit "dangerous relocation" on .pdata and
|
|
# crash. The bigobj COFF variant lifts that limit (same flag Bitcoin Core sets for the mingw host).
|
|
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site CXXFLAGS="-DPTW32_STATIC_LIB -DCURL_STATICLIB -fopenmp -pthread -Wa,-mbig-obj" ./configure --prefix="${PREFIX}" --host=x86_64-w64-mingw32 --enable-static --disable-shared
|
|
|
|
# Build CryptoConditions stuff
|
|
WD=$PWD
|
|
cd src/cc
|
|
echo $PWD
|
|
./makecustom
|
|
cd $WD
|
|
|
|
# Build RandomX
|
|
cd src/RandomX
|
|
if [ -d "build" ]
|
|
then
|
|
ls -la build/librandomx*
|
|
else
|
|
mkdir build && cd build
|
|
CC="${CC} -g " CXX="${CXX} -g " cmake -DARCH=native ..
|
|
make
|
|
fi
|
|
|
|
cd $WD
|
|
|
|
sed -i 's/-lboost_system-mt /-lboost_system-mt-s /' configure
|
|
cd src/
|
|
CC="${CC} -g " CXX="${CXX} -g " make V=1 dragonxd.exe dragonx-cli.exe dragonx-tx.exe
|