diff options
author | Karel Gardas <karel.gardas@centrum.cz> | 2013-04-04 18:28:28 +0200 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-05-30 23:07:05 +0100 |
commit | 8e51a7ab47ed37fbafbc497a5926227e8dd6a1be (patch) | |
tree | b1e27e521364f6d501ba1ad87b6c14c8d38be11b /mk | |
parent | 192a8f9f557e2fe04ecd5309f7de4779d59b56f1 (diff) | |
download | haskell-8e51a7ab47ed37fbafbc497a5926227e8dd6a1be.tar.gz |
add arm-unknown-linux to platforms which do not support shared libs
This patch disables shared libs support on arm-unknown-linux platform. It
unbreaks ghc-stage2 on this platform after recent Ian's changes
in dynamic/shared libs domain. The reason why ghc-stage2 fails when linked
with shared libs is still unknown so this is just a workaround at the moment,
but it at least recovers previous "correct" behavior of ghc-stage2
on ARM/Linux
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 0429796600..f70718cef4 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -95,7 +95,7 @@ TargetElf = YES endif # Some platforms don't support shared libraries -NoSharedLibsPlatformList = +NoSharedLibsPlatformList = arm-unknown-linux ifeq "$(SOLARIS_BROKEN_SHLD)" "YES" NoSharedLibsPlatformList += i386-unknown-solaris2 |