This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [patch] additional dladdr check in configure.ac
- From: Tom Tromey <tromey at redhat dot com>
- To: Andreas Tobler <toa at pop dot agri dot ch>
- Cc: Java Patches <java-patches at gcc dot gnu dot org>
- Date: 25 Apr 2006 16:27:08 -0600
- Subject: Re: [patch] additional dladdr check in configure.ac
- References: <444E93BF.9020803@pop.agri.ch> <444E9FAC.1090609@pop.agri.ch>
- Reply-to: tromey at redhat dot com
>>>>> "Andreas" == Andreas Tobler <toa@pop.agri.ch> writes:
Andreas> 2006-04-25 Andreas Tobler <a.tobler@schweiz.ch>
Andreas> * configure.ac: Add an additional check for dladdr and dlopen on dld.
Andreas> * configure: Rebuilt.
Ok. Thanks.
You might want to see if you need to add -ldld to SYSTEMSPEC. Look a
bit later:
# On Solaris, and maybe other architectures, the Boehm collector
# requires -ldl.
if test "$GC" = boehm; then
AC_CHECK_LIB(dl, main, SYSTEMSPEC="$SYSTEMSPEC -ldl")
fi
I don't mind if that is a separate patch though, up to you.
Tom