module GHC.Platform.Host where import GHC.Platform cHostPlatformArch :: Arch cHostPlatformArch = ArchARM {armISA = ARMv7, armISAExt = [VFPv3D16], armABI = HARD} cHostPlatformOS :: OS cHostPlatformOS = OSLinux cHostPlatformMini :: PlatformMini cHostPlatformMini = PlatformMini { platformMini_arch = cHostPlatformArch , platformMini_os = cHostPlatformOS }