8000 libreadline: only call autoconf on aarch64 native build · arduino/avrdude-build-script@d73a5fd · GitHub
[go: up one dir, main page]

Skip to content

Commit d73a5fd

Browse files
committed
libreadline: only call autoconf on aarch64 native build
The configure script is too old but configure.in is too new and patches are distributed in a funky format (needs even more dependencies)
1 parent 3aa2f52 commit d73a5fd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

libncurses-5.9.build.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ CONFARGS="--prefix=$PREFIX --disable-shared --without-debug --without-ada --with
4040
if [[ $CROSS_COMPILE != "" ]] ; then
4141
CONFARGS="$CONFARGS --host=$CROSS_COMPILE_HOST"
4242
fi
43+
if [[ $MACHINE == "aarch64" ]] ; then
4344
autoconf
45+
fi
4446
CFLAGS="-w -O2 $CFLAGS -fPIC" CPPFLAGS="-P" CXXFLAGS="-w -O2 $CXXFLAGS -fPIC" LDFLAGS="-s $LDFLAGS -fPIC" ./configure $CONFARGS
4547
make -j 4
4648
make install.libs

0 commit comments

Comments
 (0)
0