From: Mike Frysinger Date: Sat, 5 Nov 2022 14:21:31 +0000 (+0700) Subject: sim: fix readline linkage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a9886170b3bc9027ec72ab425fb0e3d4a1aa330;p=binutils-gdb.git sim: fix readline linkage Now that we link programs in the top dir instead of the arch subdir, update the readline library path to be relative to the top dir. --- diff --git a/sim/configure b/sim/configure index d8b734e59eb..0a0eb6dbf0c 100755 --- a/sim/configure +++ b/sim/configure @@ -13446,7 +13446,7 @@ fi if test -r ../readline/Makefile; then - READLINE_LIB=../../readline/readline/libreadline.a + READLINE_LIB=../readline/readline/libreadline.a READLINE_CFLAGS='-I$(READLINE_SRC)/..' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5 diff --git a/sim/m4/sim_ac_platform.m4 b/sim/m4/sim_ac_platform.m4 index 467987e11e7..abfb2bd9e6e 100644 --- a/sim/m4/sim_ac_platform.m4 +++ b/sim/m4/sim_ac_platform.m4 @@ -190,7 +190,7 @@ AC_SUBST(TERMCAP_LIB) dnl We prefer the in-tree readline. Top-level dependencies make sure dnl src/readline (if it's there) is configured before src/sim. if test -r ../readline/Makefile; then - READLINE_LIB=../../readline/readline/libreadline.a + READLINE_LIB=../readline/readline/libreadline.a READLINE_CFLAGS='-I$(READLINE_SRC)/..' else AC_CHECK_LIB(readline, readline, READLINE_LIB=-lreadline,