-
Notifications
You must be signed in to change notification settings - Fork 0
/
osmodel.mak
100 lines (93 loc) · 2.33 KB
/
osmodel.mak
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# osmodel.mak
#
# Detects and sets the macros:
#
# OS = one of {windows,osx,linux,freebsd,openbsd,netbsd,dragonflybsd,solaris}
# MODEL = one of { 32, 64 }
# MODEL_FLAG = one of { -m32, -m64 }
# ARCH = one of { x86, x86_64, aarch64 }
#
# On Windows, also sets up a bash shell.
ifeq (,$(OS))
ifneq (,$(LOCALAPPDATA))
# assume Windows
OS:=windows
else
uname_S:=$(shell uname -s)
ifeq (Darwin,$(uname_S))
OS:=osx
endif
ifeq (Linux,$(uname_S))
OS:=linux
endif
ifeq (FreeBSD,$(uname_S))
OS:=freebsd
endif
ifeq (OpenBSD,$(uname_S))
OS:=openbsd
endif
ifeq (NetBSD,$(uname_S))
OS:=netbsd
endif
ifeq (DragonFly,$(uname_S))
OS:=dragonflybsd
endif
ifeq (Solaris,$(uname_S))
OS:=solaris
endif
ifeq (SunOS,$(uname_S))
OS:=solaris
endif
ifeq (,$(OS))
$(error Unrecognized or unsupported OS for uname: $(uname_S))
endif
endif
endif
# When running make from XCode it may set environment var OS=MACOS.
# Adjust it here:
ifeq (MACOS,$(OS))
OS:=osx
endif
# Windows predefines OS to e.g. `Windows_NT`
ifneq (,$(findstring Win,$(OS)))
OS:=windows
endif
# set up bash shell on Windows
ifeq (windows,$(OS))
# Note: setting SHELL to an absolute path to bash.exe does NOT suffice.
# The GNU tools like {rm,cp,mkdir}.exe need to be in PATH.
ifeq (,$(findstring C:\Program Files\Git\usr\bin,$(PATH)))
export PATH:=C:\Program Files\Git\usr\bin;$(PATH)
endif
# setting SHELL is very special on Windows: https://www.gnu.org/software/make/manual/html_node/Choosing-the-Shell.html#Choosing-a-Shell-in-DOS-and-Windows
SHELL=bash.exe
$(info Using make SHELL "$(SHELL)", should be bash.)
endif
ifeq (,$(MODEL))
ifeq (windows,$(OS))
MODEL:=64
ARCH:=x86_64
else
ifeq ($(OS), solaris)
uname_M:=$(shell isainfo -n)
else
uname_M:=$(shell uname -m)
endif
ifneq (,$(findstring $(uname_M),x86_64 amd64))
MODEL:=64
ARCH:=x86_64
endif
ifneq (,$(findstring $(uname_M),aarch64 arm64))
MODEL:=64
ARCH:=aarch64
endif
ifneq (,$(findstring $(uname_M),i386 i586 i686))
MODEL:=32
ARCH:=x86
endif
ifeq (,$(MODEL))
$(error Cannot figure 32/64 model and arch from uname -m: $(uname_M))
endif
endif
endif
MODEL_FLAG:=-m$(MODEL)