mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Merge #16667: build: remove mingw linker workaround from win gitian descriptor
bd3f5a90ecd6de40516141b23b0861dbba0b31b6 build: remove mingw linker workaround from win gitian descriptor (fanquake) Pull request description: This workaround was added as part of the switch to gitian building using Ubuntu 14.04 (#6900). However, it should no longer be required, as we have switched to Bionic (#13171) and that has a far newer version of binutils. Original discussion: https://github.com/bitcoin/bitcoin/pull/6900 binutils patch: https://sourceware.org/bugzilla/show_bug.cgi?id=16192 ACKs for top commit: MarcoFalke: ACK bd3f5a90ecd6de40516141b23b0861dbba0b31b6 theuni: ACK bd3f5a90ecd6de40516141b23b0861dbba0b31b6 laanwj: ACK bd3f5a90ecd6de40516141b23b0861dbba0b31b6 Tree-SHA512: 01a5789994decf8cdedf7aaa0a449d2100a77e2e6b422d6b9dd5a4ac3e2e0b538c3d43aae4a1c3713614782f3c6b09d8d8bb21c20e86ce3c1734183dedd02d0c
This commit is contained in:
parent
7b94386da3
commit
d7707cde7a
@ -100,20 +100,10 @@ script: |
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
function create_per-host_linker_wrapper {
|
function create_per-host_compiler_wrapper {
|
||||||
# This is only needed for trusty, as the mingw linker leaks a few bytes of
|
# -posix variant is required for c++11 threading.
|
||||||
# heap, causing non-determinism. See discussion in https://github.com/bitcoin/bitcoin/pull/6900
|
|
||||||
for i in $HOSTS; do
|
for i in $HOSTS; do
|
||||||
mkdir -p ${WRAP_DIR}/${i}
|
mkdir -p ${WRAP_DIR}/${i}
|
||||||
for prog in collect2; do
|
|
||||||
echo '#!/usr/bin/env bash' > ${WRAP_DIR}/${i}/${prog}
|
|
||||||
echo "# GCCVERSION=${GCCVERSION}" >> ${WRAP_DIR}/${i}/${prog}
|
|
||||||
REAL=$(${i}-gcc -print-prog-name=${prog})
|
|
||||||
echo "export MALLOC_PERTURB_=255" >> ${WRAP_DIR}/${i}/${prog}
|
|
||||||
echo "${REAL} \$@" >> $WRAP_DIR/${i}/${prog}
|
|
||||||
chmod +x ${WRAP_DIR}/${i}/${prog}
|
|
||||||
touch -d "${REFERENCE_DATETIME}" ${WRAP_DIR}/${i}/${prog}
|
|
||||||
done
|
|
||||||
for prog in gcc g++; do
|
for prog in gcc g++; do
|
||||||
echo '#!/usr/bin/env bash' > ${WRAP_DIR}/${i}-${prog}
|
echo '#!/usr/bin/env bash' > ${WRAP_DIR}/${i}-${prog}
|
||||||
echo "# GCCVERSION=${GCCVERSION}" >> ${WRAP_DIR}/${i}-${prog}
|
echo "# GCCVERSION=${GCCVERSION}" >> ${WRAP_DIR}/${i}-${prog}
|
||||||
@ -134,7 +124,7 @@ script: |
|
|||||||
export PATH_orig=${PATH}
|
export PATH_orig=${PATH}
|
||||||
create_global_faketime_wrappers "2000-01-01 12:00:00"
|
create_global_faketime_wrappers "2000-01-01 12:00:00"
|
||||||
create_per-host_faketime_wrappers "2000-01-01 12:00:00"
|
create_per-host_faketime_wrappers "2000-01-01 12:00:00"
|
||||||
create_per-host_linker_wrapper "2000-01-01 12:00:00"
|
create_per-host_compiler_wrapper "2000-01-01 12:00:00"
|
||||||
export PATH=${WRAP_DIR}:${PATH}
|
export PATH=${WRAP_DIR}:${PATH}
|
||||||
|
|
||||||
cd dash
|
cd dash
|
||||||
@ -148,7 +138,7 @@ script: |
|
|||||||
export PATH=${PATH_orig}
|
export PATH=${PATH_orig}
|
||||||
create_global_faketime_wrappers "${REFERENCE_DATETIME}"
|
create_global_faketime_wrappers "${REFERENCE_DATETIME}"
|
||||||
create_per-host_faketime_wrappers "${REFERENCE_DATETIME}"
|
create_per-host_faketime_wrappers "${REFERENCE_DATETIME}"
|
||||||
create_per-host_linker_wrapper "${REFERENCE_DATETIME}"
|
create_per-host_compiler_wrapper "${REFERENCE_DATETIME}"
|
||||||
export PATH=${WRAP_DIR}:${PATH}
|
export PATH=${WRAP_DIR}:${PATH}
|
||||||
|
|
||||||
# Create the release tarball using (arbitrarily) the first host
|
# Create the release tarball using (arbitrarily) the first host
|
||||||
|
Loading…
Reference in New Issue
Block a user