diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-15 02:06:37 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-15 02:06:37 +0000 |
commit | 33d40ea8ca298d66e88f2cc8071bb1d7adb848dd (patch) | |
tree | 4941a8a73c0c2dfa8112714456949d25d2c8654c /libstdc++ | |
parent | 4fe6627b19020eb5049e2e93f0e369f3c18e6313 (diff) | |
download | gcc-33d40ea8ca298d66e88f2cc8071bb1d7adb848dd.tar.gz |
* configure.in: Add shared library support for the Hurd
(*-*-gnu*).
* config/gnu.ml: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26942 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++')
-rw-r--r-- | libstdc++/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++/config/gnu.ml | 6 | ||||
-rw-r--r-- | libstdc++/configure.in | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog index 731a4404a2e..f6fa7dd3838 100644 --- a/libstdc++/ChangeLog +++ b/libstdc++/ChangeLog @@ -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 diff --git a/libstdc++/config/gnu.ml b/libstdc++/config/gnu.ml new file mode 100644 index 00000000000..2a0380327f7 --- /dev/null +++ b/libstdc++/config/gnu.ml @@ -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) diff --git a/libstdc++/configure.in b/libstdc++/configure.in index c0c701398f1..8262565bd88 100644 --- a/libstdc++/configure.in +++ b/libstdc++/configure.in @@ -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 |