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++/config | |
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++/config')
-rw-r--r-- | libstdc++/config/gnu.ml | 6 |
1 files changed, 6 insertions, 0 deletions
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) |