diff options
author | James Lemke <jlemke@cygnus> | 1998-04-21 21:14:09 +0000 |
---|---|---|
committer | James Lemke <jlemke@cygnus> | 1998-04-21 21:14:09 +0000 |
commit | 3e5fbf91b5c68d344d1ae6314ffb0e360a840ba4 (patch) | |
tree | 4330f0297d53bbbdfa1fc6d6a1cc16447872365b /sim | |
parent | b149f82f157129cafccf57b7e01b48589e58883f (diff) | |
download | gdb-3e5fbf91b5c68d344d1ae6314ffb0e360a840ba4.zip gdb-3e5fbf91b5c68d344d1ae6314ffb0e360a840ba4.tar.gz gdb-3e5fbf91b5c68d344d1ae6314ffb0e360a840ba4.tar.bz2 |
Add configure option --with-sim-funit for sim & gdb.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/mips/configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sim/mips/configure.in b/sim/mips/configure.in index c5b2432..181d2ac 100644 --- a/sim/mips/configure.in +++ b/sim/mips/configure.in @@ -246,6 +246,16 @@ then else AC_MSG_ERROR("Directory ${withval} does not exist."); fi])dnl +# Enable target accurate FP library +AC_ARG_WITH(sim-funit, +[ --with-sim-funit=path Use target FP library under given directory], +[if test -d "${withval}" +then + SIM_SUBTARGET="${SIM_SUBTARGET} -DSKY_FUNIT -I${withval}/include" + mips_extra_libs="${mips_extra_libs} -L${withval}/lib -lfunit" +else + AC_MSG_ERROR("Directory ${withval} does not exist."); +fi])dnl # end-sanitize-sky AC_SUBST(mips_extra_libs) |