Skip to content

Commit

Permalink
enable caching
Browse files Browse the repository at this point in the history
  • Loading branch information
diamant3 committed Jul 15, 2024
1 parent 217511f commit 1aaa79b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/001-binutils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ else
fi

## Configure the build.
../configure \
../configure -C \
--quiet \
--prefix="$PSPDEV" \
--target="$TARGET" \
Expand Down
2 changes: 1 addition & 1 deletion scripts/002-gcc-stage1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ mkdir build-$TARGET-stage1
cd build-$TARGET-stage1

## Configure the build.
../configure \
../configure -C \
--quiet \
--prefix="$PSPDEV" \
--target="$TARGET" \
Expand Down
2 changes: 1 addition & 1 deletion scripts/003-newlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ PROC_NR=$(getconf _NPROCESSORS_ONLN)
rm -rf build-$TARGET && mkdir build-$TARGET && cd build-$TARGET

# Configure the build.
../configure \
../configure -C \
--prefix="$PSPDEV" \
--target="$TARGET" \
--with-sysroot="$PSPDEV/$TARGET" \
Expand Down
2 changes: 1 addition & 1 deletion scripts/005-gcc-stage2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ mkdir build-$TARGET-stage2
cd build-$TARGET-stage2

## Configure the build.
../configure \
../configure -C \
--quiet \
--prefix="$PSPDEV" \
--target="$TARGET" \
Expand Down

0 comments on commit 1aaa79b

Please sign in to comment.