configure.in: Add shared library support for the Hurd (*-*-gnu*).

* configure.in: Add shared library support for the Hurd
        (*-*-gnu*).
        * config/gnu.ml: New file.

From-SVN: r26942
This commit is contained in:
Mark Kettenis 1999-05-15 02:06:37 +00:00 committed by Jeff Law
parent 9874c8582a
commit 0b8b672215
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,9 @@
1999-05-15 Mark Kettenis <kettenis@gnu.org>
* configure.in: Add shared library support for the Hurd
(*-*-gnu*).
* config/gnu.ml: New file.
1999-05-12 Jason Merrill <jason@yorick.cygnus.com>
* configure.in (compiler_name): Don't do the skip-this-dir thing

6
libstdc++/config/gnu.ml Normal file
View File

@ -0,0 +1,6 @@
# Elf with shared libm, so we can link it into the shared libstdc++.
LIBS = $(ARLIB) $(ARLINK) $(SHLIB) $(SHLINK)
SHFLAGS = -Wl,-soname,$(SHLIB)
SHDEPS = -lm
DEPLIBS = ../$(SHLIB)

View File

@ -92,6 +92,7 @@ if [ "${shared}" = "yes" ]; then
*-*-sunos4*) frags="${frags} sunos4.ml" ;;
*-*-aix*) frags="${frags} aix.ml" ;;
i[3456]86-*-interix*) frags="${frags} x86-interix.ml" ;;
*-*-gnu*) frags="${frags} gnu.ml" ;;
esac
fi