X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=System%2FInfo.hs;h=85b90177b5104a53e729995260578304de900c45;hb=ca6b0a3e29400e95514169cd2735768965be1396;hp=452cec5c8dd641e68f71bd74194108e2272e6ecf;hpb=f7a485978f04e84b086f1974b88887cc72d832d0;p=ghc-base.git diff --git a/System/Info.hs b/System/Info.hs index 452cec5..85b9017 100644 --- a/System/Info.hs +++ b/System/Info.hs @@ -13,18 +13,47 @@ -- ----------------------------------------------------------------------------- -#include "MachDeps.h" - module System.Info ( os, -- :: String - arch -- :: 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 + +#else +os,arch ::String +#include "OSInfo.hs" +#endif + +compilerName :: String +#if defined(__NHC__) +compilerName = "nhc98" +#elif defined(__GLASGOW_HASKELL__) +compilerName = "ghc" +#elif defined(__HUGS__) +compilerName = "hugs" +#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