diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-30 07:09:11 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-30 07:09:11 +0000 |
commit | a7e3d3af2e1bd765af57351b7edc0ddca36e1256 (patch) | |
tree | efd9e570f1aac83f333350c438722f379eec7d24 /libstdc++ | |
parent | 183a8abbe9e63f3a30451e69e11072e31fcd2fdc (diff) | |
download | gcc-a7e3d3af2e1bd765af57351b7edc0ddca36e1256.tar.gz |
* config/x86-interix.ml: New file.
* configure.in (i[3456]86-*-interix*): Add shared library support.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24914 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++')
-rw-r--r-- | libstdc++/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++/config/x86-interix.ml | 9 | ||||
-rw-r--r-- | libstdc++/configure.in | 1 |
3 files changed, 15 insertions, 0 deletions
diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog index 6b4750748e4..4694c3d3bbc 100644 --- a/libstdc++/ChangeLog +++ b/libstdc++/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 30 08:05:46 1999 Mumit Khan <khan@xraylith.wisc.edu> + + * config/x86-interix.ml: New file. + * configure.in (i[3456]86-*-interix*): Add shared library support. + 1999-01-13 Ulrich Drepper <drepper@cygnus.com> * configure.in: Test for "ln -s" and set LN_S in generated Makefile. diff --git a/libstdc++/config/x86-interix.ml b/libstdc++/config/x86-interix.ml new file mode 100644 index 00000000000..8b8774e3a7a --- /dev/null +++ b/libstdc++/config/x86-interix.ml @@ -0,0 +1,9 @@ +# x86 Interix. SHLINK is defined to be .dummy to avoid running into +# the lack of symbolic links. + +SHLINK = .dummy +SHLIB = libstdc++.so +LIBS = $(ARLIB) $(SHLIB) +DEPLIBS = ../$(SHLIB) +SHFLAGS = $(PICFLAG) + diff --git a/libstdc++/configure.in b/libstdc++/configure.in index 6c2e13a2af5..9f0f0a2f3da 100644 --- a/libstdc++/configure.in +++ b/libstdc++/configure.in @@ -67,6 +67,7 @@ if [ "${shared}" = "yes" ]; then *-*-solaris*) frags="${frags} sol2shm.ml" ;; *-*-sunos4*) frags="${frags} sunos4.ml" ;; *-*-aix*) frags="${frags} aix.ml" ;; + i[3456]86-*-interix*) frags="${frags} x86-interix.ml" ;; esac fi |