[project @ 2005-02-01 16:47:27 by malcolm]
[ghc-base.git] / System / Info.hs
index 68a4a1f..b3550bc 100644 (file)
@@ -18,49 +18,38 @@ module System.Info
        os,                 -- :: String
        arch,               -- :: String
        compilerName,       -- :: String
-#ifdef __GLASGOW_HASKELL__
        compilerVersion     -- :: Version
-#endif
    ) where
 
 import Prelude
 import Data.Version
 
-#ifndef __NHC__
-
-#include "ghcplatform.h"
-
-arch :: String
-arch = HOST_ARCH
-
-os :: String
-os = HOST_OS
+compilerVersion :: Version
+compilerVersion = Version {versionBranch=[maj,min], versionTags=[]}
+  where (maj,min) = compilerVersionRaw `divMod` 100
 
-#else
-os,arch ::String
-#include "OSInfo.hs"
-#endif
+os, arch, compilerName :: String
+compilerVersionRaw :: Int
 
-compilerName :: String
 #if defined(__NHC__)
+#include "OSInfo.hs"
 compilerName = "nhc98"
+compilerVersionRaw = __NHC__
+
 #elif defined(__GLASGOW_HASKELL__)
+#include "ghcplatform.h"
+os = HOST_OS
+arch = HOST_ARCH
 compilerName = "ghc"
+compilerVersionRaw = __GLASGOW_HASKELL__
+
 #elif defined(__HUGS__)
+#include "platform.h"
+os = HOST_OS
+arch = HOST_ARCH
 compilerName = "hugs"
+compilerVersionRaw = 0  -- ToDo
+
 #else
 #error Unknown compiler name
 #endif
-
-#ifdef __GLASGOW_HASKELL__
-compilerVersion :: Version
-compilerVersion = Version {versionBranch=[maj,min], versionTags=[]}
-  where (maj,min) = __GLASGOW_HASKELL__ `divMod` 100
-#endif
-
-#ifdef __NHC__
-compilerVersion :: Version
-compilerVersion = Version {versionBranch=[maj,min], versionTags=[]}
-  where (maj,min) = __NHC__ `divMod` 100
-#endif
-