Skip to content

Commit

Permalink
Update build script
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Dec 22, 2024
1 parent ef9b11a commit 86ce002
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .devcontainer/build-scripts/build-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ echo "COPY .devcontainer/build-scripts/configure.sh /tmp/build-scripts/" >> $DOC
echo "RUN /bin/bash /tmp/build-scripts/configure.sh" >> $DOCKER_FILE_ARCH
echo "COPY .devcontainer/build-scripts/fetch-sources.sh /tmp/build-scripts/" >> $DOCKER_FILE_ARCH
echo "RUN /bin/bash /tmp/build-scripts/fetch-sources.sh" >> $DOCKER_FILE_ARCH
echo "COPY .devcontainer/build-scripts/build-host-tools.sh /tmp/build-scripts/" >> $DOCKER_FILE_ARCH
echo "RUN /bin/bash /tmp/build-scripts/build-host-tools.sh" >> $DOCKER_FILE_ARCH
echo "COPY .devcontainer/build-scripts/build-base.sh /tmp/build-scripts/" >> $DOCKER_FILE_ARCH
echo "RUN /bin/bash /tmp/build-scripts/build-base.sh" >> $DOCKER_FILE_ARCH

Expand Down
20 changes: 20 additions & 0 deletions .devcontainer/build-scripts/build-host-tools.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash
set -e

# Paths
BUILDROOT_DIR="${BUILDROOT_DIR:=/workspaces/buildroot}"

# Build
cd $BUILDROOT_DIR
make host-swift-build
make host-cmake-build
make host-util-linux-build
make host-libtool-build
make host-autoconf-build
make host-automake-build
make host-libzlib-build
make host-zlib-build
make host-attr-build
make host-acl-build
make host-fakeroot-build
make host-dosfstools-build

0 comments on commit 86ce002

Please sign in to comment.