diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-30 07:07:42 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-30 07:07:42 +0000 |
commit | 183a8abbe9e63f3a30451e69e11072e31fcd2fdc (patch) | |
tree | b189e8906241c717e6ce2345f092bca4b7cd14de /config | |
parent | 13d29a8f4657f237270318512cd1e372befab44e (diff) | |
download | gcc-183a8abbe9e63f3a30451e69e11072e31fcd2fdc.tar.gz |
* config.guess: Add support for i386-pc-interix.
* config.sub: Likewise.
* configure.in: Likewise.
* config/mh-interix: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24913 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config')
-rw-r--r-- | config/mh-interix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config/mh-interix b/config/mh-interix new file mode 100644 index 00000000000..19b8ecfd339 --- /dev/null +++ b/config/mh-interix @@ -0,0 +1,14 @@ +# The shell may not be in /bin. +SHELL = sh +RANLIB = true + +# We don't want debugging info in Interix-hosted toolchains. +# Accomplish this by overriding CFLAGS. This is also a workaround +# for LD crash when building shared libstdc++. +CFLAGS=-O2 +CXXFLAGS=-O2 + +# We also need to override LIBGCC2_DEBUG_CFLAGS so libgcc2 will be +# built without debugging information + +LIBGCC2_DEBUG_CFLAGS= |