From f2c5c58bc2793259e87a9b28fb7f222f4c04995c Mon Sep 17 00:00:00 2001 From: Gearl Brace Date: Wed, 3 Jan 2024 23:00:13 +0000 Subject: [PATCH] add fddev to build output --- contrib/container-build/Dockerfile.rhel | 2 +- contrib/container-build/README.md | 2 +- contrib/container-build/scripts/fdbuild.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/container-build/Dockerfile.rhel b/contrib/container-build/Dockerfile.rhel index 3ac282f7c8..bb95ca3dd2 100644 --- a/contrib/container-build/Dockerfile.rhel +++ b/contrib/container-build/Dockerfile.rhel @@ -9,5 +9,5 @@ RUN INSTALL_PKGS="git perl autoconf gettext-devel automake flex bison cmake clan RUN curl "https://sh.rustup.rs" -sfo /tmp/rustup.sh && \ sh /tmp/rustup.sh -y --default-toolchain ${RUST_VERSION} && \ - source $HOME/.cargo/env && \ + . $HOME/.cargo/env && \ rustup show diff --git a/contrib/container-build/README.md b/contrib/container-build/README.md index 0630192af9..31eb0022d3 100644 --- a/contrib/container-build/README.md +++ b/contrib/container-build/README.md @@ -8,5 +8,5 @@ Creates a build container with all build dependencies that will be used for subs Just run `./buildit.sh` to build with default options -Supports options for choosing a tag|release|branch and machine type. See `./buildit.sh --help` for usage. +Supports options for choosing a tag|release|branch, platform, and machine type. See `./buildit.sh --help` for usage. diff --git a/contrib/container-build/scripts/fdbuild.sh b/contrib/container-build/scripts/fdbuild.sh index a8c6d7cc66..a36479b8cc 100755 --- a/contrib/container-build/scripts/fdbuild.sh +++ b/contrib/container-build/scripts/fdbuild.sh @@ -14,7 +14,7 @@ cd "$GITDIR" ./deps.sh install # Do the thing -MACHINE=$1 make -j fdctl solana +MACHINE=$1 make -j fdctl solana fddev cd build for dir in $(find . -name bin -type d)