{-# LANGUAGE CPP #-} module Config ( module GHC.Version , cBuildPlatformString , cHostPlatformString , cProjectName , cBooterVersion , cStage ) where import GhcPrelude import GHC.Version cBuildPlatformString :: String cBuildPlatformString = "i386-pld-linux" cHostPlatformString :: String cHostPlatformString = "i386-pld-linux" cProjectName :: String cProjectName = "The Glorious Glasgow Haskell Compilation System" cBooterVersion :: String cBooterVersion = "8.10.1" cStage :: String cStage = show (2 :: Int)