Skip to content

Commit

Permalink
fix: move pte configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Aug 9, 2024
1 parent d7fd9d0 commit 5ad7aff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ export CXXFLAGS_FOR_TARGET="-m64 -O3 -fPIE"

echo "Build bootstrap toolchain for $TARGET with $NJOBS jobs for $PREFIX"

cd pte
./configure --target=$TARGET --prefix=$PREFIX
cd -

if [ ! -d "tmp/binutils" ]; then
mkdir -p tmp/binutils
cd tmp/binutils
Expand Down Expand Up @@ -102,7 +98,11 @@ cd -
fi

cd pte
make && make install
./configure \
--target=$TARGET \
--prefix=$PREFIX
make -O $NJOBS
make install
cd ..

if [ ! -d "tmp/gcc" ]; then
Expand Down

0 comments on commit 5ad7aff

Please sign in to comment.