File: ghcplatform.h

package info (click to toggle)
haskell-ghc-lib-parser 9.0.2.20211226-2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 8,668 kB
  • sloc: haskell: 94,206; ansic: 1,258; makefile: 12
file content (28 lines) | stat: -rw-r--r-- 610 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#if !defined(__GHCPLATFORM_H__)
#define __GHCPLATFORM_H__

#define GHC_STAGE 1

#define BuildPlatform_TYPE  x86_64_apple_darwin
#define HostPlatform_TYPE   x86_64_apple_darwin

#define x86_64_apple_darwin_BUILD 1
#define x86_64_apple_darwin_HOST 1

#define x86_64_BUILD_ARCH 1
#define x86_64_HOST_ARCH 1
#define BUILD_ARCH "x86_64"
#define HOST_ARCH "x86_64"

#define darwin_BUILD_OS 1
#define darwin_HOST_OS 1
#define BUILD_OS "darwin"
#define HOST_OS "darwin"

#define apple_BUILD_VENDOR 1
#define apple_HOST_VENDOR 1
#define BUILD_VENDOR "apple"
#define HOST_VENDOR "apple"


#endif /* __GHCPLATFORM_H__ */