Page MenuHomePhabricator

D15453.id45261.diff
No OneTemporary

D15453.id45261.diff

diff --git a/contrib/gitian-descriptors/gitian-linux.yml b/contrib/gitian-descriptors/gitian-linux.yml
--- a/contrib/gitian-descriptors/gitian-linux.yml
+++ b/contrib/gitian-descriptors/gitian-linux.yml
@@ -30,6 +30,8 @@
- "gcc-9-arm-linux-gnueabihf"
- "git"
- "gperf"
+# Needed for Rocksdb
+- "libc6-dev-i386"
- "libtool"
- "ninja-build"
- "pkg-config"
@@ -176,6 +178,16 @@
echo "0b2f6c8f85a3d02fde2efc0ced4657869d73fccfce59defb4e8d29233116e6db rustup-init" | sha256sum -c
chmod +x rustup-init
./rustup-init -y --default-toolchain=1.72.0
+
+ # Rust target name differs from our host name, let's map
+ declare -A RUST_TARGET
+ RUST_TARGET[x86_64-linux-gnu]=x86_64-unknown-linux-gnu
+ RUST_TARGET[arm-linux-gnueabihf]=arm-unknown-linux-gnueabihf
+ RUST_TARGET[aarch64-linux-gnu]=aarch64-unknown-linux-gnu
+ for i in ${HOSTS[@]}; do
+ $HOME/.cargo/bin/rustup target add ${RUST_TARGET[${i}]}
+ done
+
# Cleanup
rm -f rustup-init
@@ -197,9 +209,11 @@
# Despite not being a new host per se, it makes it easy to reuse the same code
# and prevent errors.
# TODO Remove after chronik is made part of the main release.
- HOSTS+=(x86_64-linux-gnu-chronik-experimental)
- CMAKE_TOOLCHAIN_FILE[x86_64-linux-gnu-chronik-experimental]=Linux64.cmake
- CMAKE_EXTRA_OPTIONS[x86_64-linux-gnu-chronik-experimental]="-DBUILD_BITCOIN_CHRONIK=ON -DCorrosion_DIR=${CORROSION_INSTALL_FOLDER}/lib/cmake/Corrosion"
+ for i in ${HOSTS[@]}; do
+ HOSTS+=($i-chronik-experimental)
+ CMAKE_TOOLCHAIN_FILE[$i-chronik-experimental]=${CMAKE_TOOLCHAIN_FILE[$i]}
+ CMAKE_EXTRA_OPTIONS[$i-chronik-experimental]="${CMAKE_EXTRA_OPTIONS[$i]} -DBUILD_BITCOIN_CHRONIK=ON -DCorrosion_DIR=${CORROSION_INSTALL_FOLDER}/lib/cmake/Corrosion"
+ done
# Extract the release tarball into a dir for each host and build
for i in ${HOSTS[@]}; do

File Metadata

Mime Type
text/plain
Expires
Sat, Dec 28, 19:23 (7 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4840277
Default Alt Text
D15453.id45261.diff (1 KB)

Event Timeline