diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-03-21 10:17:50 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-03-21 10:17:50 +0000 |
commit | d957ac9587590c11a8879d7540731c0ffe7d8b5e (patch) | |
tree | 7f7f20055378b1c611e3606a322c85568e98fb9e | |
parent | 1821c5f9d2e23e70e21b2ddaa21325000ca66974 (diff) | |
download | haskell-d957ac9587590c11a8879d7540731c0ffe7d8b5e.tar.gz |
powerpc64 does not support GHCi right now
-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 edfff7c385..23162f9363 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -283,7 +283,7 @@ HaveLibDL = @HaveLibDL@ # has support for this OS/ARCH combination. OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin))) -ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc powerpc64 sparc sparc64))) +ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64))) ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES" GhcWithInterpreter=YES |