diff options
author | Frank Ch. Eigler <fche@redhat.com> | 1998-03-23 18:34:28 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 1998-03-23 18:34:28 +0000 |
commit | b236defafea471d79a4a19445c002d3346282268 (patch) | |
tree | 33c32e41b0c2d3c402daa615a913704fddf65c76 /gdb/configure.in | |
parent | e90e6366c5789a9d55df93b1cc8b44ff8c4fd27b (diff) | |
download | gdb-b236defafea471d79a4a19445c002d3346282268.zip gdb-b236defafea471d79a4a19445c002d3346282268.tar.gz gdb-b236defafea471d79a4a19445c002d3346282268.tar.bz2 |
* Added sky-sanitized --with-sim-gpu2 option to match the one given to
stand-alone sky simulator, last week.
start-sanitize-sky
Mon Mar 23 13:07:22 1998 Frank Ch. Eigler <fche@cygnus.com>
* configure.in (sim-gpu2): Added --with-sim-gpu2 as configure
option, to allow gdb+sim linking with sky GPU2 library.
end-sanitize-sky
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index dc0e161..128758f 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -431,6 +431,19 @@ AC_SUBST(TIXLIB) AC_SUBST(TIX_DEPS) # end-sanitize-gdbtk +AC_PATH_X +# start-sanitize-sky +# Enable GPU2 library for MIPS simulator +AC_ARG_WITH(sim-gpu2, +[ --with-sim-gpu2=path Use GPU2 library under given directory], +[if test -d "${withval}" +then + LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11" +else + AC_MSG_ERROR("Directory ${withval} does not exist."); +fi])dnl +# end-sanitize-sky + AC_SUBST(ENABLE_CFLAGS) AC_SUBST(CONFIG_OBS) |