module GHC.Platform.Host where

import GHC.Platform

cHostPlatformArch   :: Arch
cHostPlatformArch   = ArchARM {armISA = ARMv6, armISAExt = [VFPv2], armABI = HARD}

cHostPlatformOS     :: OS
cHostPlatformOS     = OSLinux

cHostPlatformMini :: PlatformMini
cHostPlatformMini = PlatformMini
  { platformMini_arch = cHostPlatformArch
  , platformMini_os = cHostPlatformOS
  }