diff options
author | Karel Gardas <karel.gardas@centrum.cz> | 2014-03-07 11:36:37 +0100 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-03-13 17:56:36 -0500 |
commit | 623883f1ed0ee11cc925c4590fb09565403fd231 (patch) | |
tree | 2f7d923ccacdaa3ba5aa3ecae7345ee85a130328 /mk | |
parent | a0bcbb54481297f9ff329766529a8343c4853e3f (diff) | |
download | haskell-623883f1ed0ee11cc925c4590fb09565403fd231.tar.gz |
disable shared libs on sparc (linux/solaris) (fixes #8857)
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index f24c49550e..2c997dedaa 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -98,7 +98,9 @@ endif NoSharedLibsPlatformList = arm-unknown-linux \ powerpc-unknown-linux \ x86_64-unknown-mingw32 \ - i386-unknown-mingw32 + i386-unknown-mingw32 \ + sparc-sun-solaris2 \ + sparc-unknown-linux ifeq "$(SOLARIS_BROKEN_SHLD)" "YES" NoSharedLibsPlatformList += i386-unknown-solaris2 |