diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-22 23:30:22 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-22 23:30:22 +0000 |
commit | 82fbc4be78c26dca06d3ff4a4b3ddc9a394edbd0 (patch) | |
tree | 51ac6d8f6d0b8335407c83f643c8ce6cb2283a25 /mk/project.mk.in | |
parent | 05c09e4312062aa66d64183a55f8ae5c34b58620 (diff) | |
download | haskell-82fbc4be78c26dca06d3ff4a4b3ddc9a394edbd0.tar.gz |
Change how we find the host/build/target platforms
Rather than using the autoconf built-in stuff and mangling it, we
now just ask the bootstrapping compiler what platform we are on.
When doing a port of GHC, you need to specify the platform you are
porting to.
The minimum version of GHC required is now 6.8.
Diffstat (limited to 'mk/project.mk.in')
-rw-r--r-- | mk/project.mk.in | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mk/project.mk.in b/mk/project.mk.in index e5f64d01cf..dc16a39216 100644 --- a/mk/project.mk.in +++ b/mk/project.mk.in @@ -82,15 +82,9 @@ HOSTPLATFORM = @HostPlatform@ TARGETPLATFORM = @TargetPlatform@ BUILDPLATFORM = @BuildPlatform@ -# Hack alert: -# in one or two places, we need to get at the OS version (major and -# perhaps even minor), HostOS_Full is the OS name reported by -# AC_CANONICAL_SYSTEM. -# HostPlatform_CPP = @HostPlatform_CPP@ HostArch_CPP = @HostArch_CPP@ HostOS_CPP = @HostOS_CPP@ -HostOS_Full = @HostOS_Full@ HostVendor_CPP = @HostVendor_CPP@ TargetPlatform_CPP = @TargetPlatform_CPP@ |