Skip to content

Commit

Permalink
build-kvx-xgcc.sh: now call configure with absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierRaynaud committed Oct 23, 2024
1 parent 56e632b commit b1a823b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build-kvx-xgcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ git_clone https://github.com/kalray/gcc.git "${SHA1_GCC}" coolidge

mkdir -p build-binutils
pushd build-binutils
../binutils/configure \
$PWD/../binutils/configure \
--prefix="$PREFIX" \
--target="$TARGET" \
--disable-initfini-array \
Expand All @@ -80,7 +80,7 @@ popd

mkdir -p build-gcc
pushd build-gcc
../gcc/configure \
$PWD/../gcc/configure \
--prefix="$PREFIX" \
--target="$TARGET" \
--with-gnu-as \
Expand All @@ -105,7 +105,7 @@ popd

mkdir -p build-newlib
pushd build-newlib
../newlib/configure \
$PWD/../newlib/configure \
--target="$TARGET" \
--prefix="$PREFIX" \
--enable-multilib \
Expand Down

0 comments on commit b1a823b

Please sign in to comment.