Skip to content

Commit ea21039

Browse files
committed
Do not specify GMP and friends
1 parent 96913bd commit ea21039

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

avr-gcc-020-build-gcc.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ wget --no-check-certificate https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.ta
1010
tar -xf gcc-13.2.0.tar.gz
1111
mkdir objdir-gcc-13.2.0-avr
1212
cd objdir-gcc-13.2.0-avr
13-
../gcc-13.2.0/configure --prefix=/home/runner/work/avr-gcc-build/avr-gcc-build/local/gcc-13.2.0-avr --target=avr --host=x86_64-w64-mingw32 --enable-languages=c,c++ --with-pkgversion='Built by ckormanyos/real-time-cpp' --disable-shared --enable-static --disable-libada --disable-libssp --disable-nls --enable-mingw-wildcard --with-gnu-as --with-dwarf2 --with-gmp=/home/runner/work/avr-gcc-build/avr-gcc-build/local/gmp-6.3.0 --with-mpfr=/home/runner/work/avr-gcc-build/avr-gcc-build/local/mpfr-4.2.1 --with-mpc=/home/runner/work/avr-gcc-build/avr-gcc-build/local/mpc-1.2.1 --with-isl=/home/runner/work/avr-gcc-build/avr-gcc-build/local/isl-0.15
13+
../gcc-13.2.0/configure --prefix=/home/runner/work/avr-gcc-build/avr-gcc-build/local/gcc-13.2.0-avr --target=avr --host=x86_64-w64-mingw32 --enable-languages=c,c++ --with-pkgversion='Built by ckormanyos/real-time-cpp' --disable-shared --enable-static --disable-libada --disable-libssp --disable-nls --enable-mingw-wildcard --with-gnu-as --with-dwarf2 --with-isl=/home/runner/work/avr-gcc-build/avr-gcc-build/local/isl-0.15
1414

15-
#make --jobs=8
16-
#make install
15+
# --with-gmp=/home/runner/work/avr-gcc-build/avr-gcc-build/local/gmp-6.3.0 --with-mpfr=/home/runner/work/avr-gcc-build/avr-gcc-build/local/mpfr-4.2.1 --with-mpc=/home/runner/work/avr-gcc-build/avr-gcc-build/local/mpc-1.2.1
16+
17+
# make --jobs=8
18+
# make install
1719

1820
exit

0 commit comments

Comments
 (0)