-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsirplatform.mk
392 lines (326 loc) · 9.53 KB
/
sirplatform.mk
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
# sirplatform.mk
################################################################################
#
# Version: 2.2.6
#
################################################################################
#
# SPDX-License-Identifier: MIT
#
# Copyright (c) 2018-2024 Ryan M. Lederman <[email protected]>
# Copyright (c) 2018-2024 Jeffrey H. Johnson <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
################################################################################
################################################################################
# Default optimizations
OPTFLAGS?=-O3
################################################################################
# What system?
UNAME_S:=$(shell uname -s 2> /dev/null)
################################################################################
# DUMA?
ifeq ($(DUMA),1)
EXTRA_LIBS+=-l:libduma.a
SIR_CFLAGS+=-DDUMA=1
SIR_SHFLAGS=$(subst -l:libduma.a,,$(SIR_LDFLAGS))
endif
################################################################################
# OpenOSC?
ifeq ($(OPENOSC),1)
EXTRA_LIBS+=-lopenosc
FORTIFY_FLAGS=-U_FORTIFY_SOURCE
SIR_CFLAGS+=-include openosc.h
SIR_CSTD=-std=gnu11
SIR_XSTD=-std=gnu++20
endif
################################################################################
# MinGW-w64 and standard Unix
ifneq "$(findstring mingw,$(CC))" ""
MINGW?=1
endif
ifeq ($(MINGW),1)
LIBDL=
PLATFORM_DLL_EXT=.dll
PLATFORM_EXE_EXT=.exe
PLATFORM_LIB_EXT=.lib
PLATFORM_LIBS=-lshlwapi -lws2_32
ifneq "$(findstring gcc,$(CC))" ""
SIR_CFLAGS+=-Wno-unknown-pragmas
endif
else
PLATFORM_DLL_EXT=.so
PLATFORM_LIB_EXT=.a
endif
################################################################################
# Emscripten for Node.js
ifneq "$(findstring emcc,$(CC))" ""
EMSCRIPTEN?=1
endif
ifeq ($(EMSCRIPTEN),1)
AR=emar
RANLIB=emranlib
SIR_CFLAGS+=-pthread
SIR_XFLAGS+=-pthread
SIR_CSTD=-std=gnu11
SIR_XSTD=-std=gnu++20
SIR_LDFLAGS+=-lnoderawfs.js -lnodefs.js -s PROXY_TO_PTHREAD -s EXIT_RUNTIME
SIR_SHARED=-Wno-emcc -shared
SIR_NO_PLUGINS=1
endif
################################################################################
# LLVM-MinGW ARM64/ARMv7
ifneq "$(findstring armv7-w64-mingw32-clang,$(CC))" ""
LLVM_RANLIB?=1
endif
ifneq "$(findstring aarch64-w64-mingw32-clang,$(CC))" ""
LLVM_RANLIB?=1
endif
ifeq ($(LLVM_RANLIB),1)
PLATFORM_LIB_EXT=.a
RANLIB=llvm-ranlib
endif
################################################################################
# Haiku
ifneq "$(findstring Haiku,$(UNAME_S))" ""
HAIKU?=1
endif
ifeq ($(HAIKU),1)
LIBDL=
endif
################################################################################
# OpenBSD
ifneq "$(findstring OpenBSD,$(UNAME_S))" ""
OPENBSD?=1
endif
ifeq ($(OPENBSD),1)
LIBDL=
endif
################################################################################
# NetBSD
ifneq "$(findstring NetBSD,$(UNAME_S))" ""
NETBSD?=1
endif
ifeq ($(NETBSD),1)
LIBDL=
endif
################################################################################
# SunOS
ifneq "$(findstring SunOS,$(UNAME_S))" ""
UNAME_O:=$(shell uname -o 2> /dev/null)
ifneq "$(findstring Solaris,$(UNAME_O))" ""
SUNSYSV?=1
endif
ifneq "$(findstring illumos,$(UNAME_O))" ""
SUNSYSV?=1
endif
endif
ifeq ($(SUNSYSV),1)
EXTRA_LIBS+=-lmtmalloc
SIR_CFLAGS+=-DMTMALLOC
endif
################################################################################
# Enable MinGW MSVCRT workaround?
ifeq ($(SIR_MSVCRT_MINGW),1)
SIR_CFLAGS+=-DSIR_MSVCRT_MINGW
endif
################################################################################
# Oracle Studio C
ifneq "$(findstring suncc,$(CC))" ""
SUNPRO?=1
endif
ifeq ($(SUNPRO),1)
FORTIFY_FLAGS?=-U_FORTIFY_SOURCE
MMDOPT=-xMMD
PTHOPT=-mt=yes
else
ifneq "$(findstring circle,$(CXX))" ""
FORTIFY_FLAGS?=-D_FORTIFY_SOURCE=2
else
FORTIFY_FLAGS?=-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
endif
MMDOPT=-MMD
PTHOPT=-pthread
endif
################################################################################
# Chibicc and Intel C++ Compiler Classic
ifneq "$(findstring icc,$(CC))" ""
ifneq "$(findstring chibicc,$(CC))" ""
FORTIFY_FLAGS=-U_FORTIFY_SOURCE
PTHOPT=
else
INTELC?=1
endif
endif
ifeq ($(INTELC),1)
FORTIFY_FLAGS=-U_FORTIFY_SOURCE
SIR_CFLAGS+=-diag-disable=188
SIR_CFLAGS+=-diag-disable=191
SIR_CFLAGS+=-diag-disable=10148
SIR_CFLAGS+=-diag-disable=10441
SIR_LDFLAGS+=-diag-disable=10441
endif
################################################################################
# NVIDIA HPC SDK C Compiler
ifneq "$(findstring nvc,$(CC))" ""
NVIDIAC?=1
endif
ifeq ($(NVIDIAC),1)
DBGFLAGS=-g
SIR_CFLAGS+=-noswitcherror
SIR_CFLAGS+=--diag_suppress cast_to_qualified_type
SIR_CFLAGS+=--diag_suppress mixed_enum_type
SIR_CFLAGS+=--diag_suppress nonstd_ellipsis_only_param
endif
################################################################################
# Kefir
ifneq "$(findstring kefir,$(CC))" ""
KEFIR?=1
endif
ifeq ($(KEFIR),1)
FORTIFY_FLAGS="-U_FORTIFY_SOURCE"
MMDOPT=
NO_DEFAULT_CFLAGS=1
PTHOPT=
SIR_CSTD=
SIR_GSTD=
ifeq ($(SIR_DEBUG),1)
SIR_CFLAGS+=-O0 -DDEBUG -Iinclude $(SIR_FPIC)
else
SIR_CFLAGS+=$(OPTFLAGS) -DNDEBUG -Iinclude $(SIR_FPIC)
endif
endif
################################################################################
# IBM i (OS/400) PASE
ifneq "$(findstring OS400,$(UNAME_S))" ""
IBMOS400?=1
endif
ifeq ($(IBMOS400),1)
DBGFLAGS=-g
OBJECT_MODE=64
export OBJECT_MODE
SIR_CFLAGS+=-D_THREAD_SAFE
SIR_XFLAGS+=-D_THREAD_SAFE
ifneq "$(findstring gcc,$(CC))" ""
OS400GCC=1
SIR_CFLAGS+=-fPIC -maix64 -Wl,-b64 -Wl,-brtl
endif
ifneq "$(findstring g++,$(CXX))" ""
OS400GCC=1
SIR_XFLAGS+=-fPIC -maix64 -Wl,-b64 -Wl,-brtl
endif
ifeq ($(OS400GCC),1)
DBGFLAGS=-Og
WPEDANTIC=
SIR_LDFLAGS+=-fPIC -maix64 -Wl,-b64 -Wl,-brtl
endif
endif
################################################################################
# IBM XL C/C++ and GCC for AIX
ifneq "$(findstring AIX,$(UNAME_S))" ""
IBMAIX?=1
ifneq "$(findstring xlc,$(CC))" ""
IBMXLC?=1
endif
ifneq "$(findstring clang++,$(CXX))" ""
AIXCLANGXX?=1
endif
endif
ifneq "$(findstring powerpc-ibm-aix7,$(CC))" ""
AIXTLS?=1
endif
ifeq ($(IBMAIX),1)
DBGFLAGS=-g
OBJECT_MODE=64
export OBJECT_MODE
SIR_CFLAGS+=-D_THREAD_SAFE
SIR_XFLAGS+=-D_THREAD_SAFE
ifneq "$(findstring gcc,$(CC))" ""
IBMAIX_GCC=1
SIR_CFLAGS+=-fPIC -maix64 -ftls-model=global-dynamic
endif
ifneq "$(findstring gcc,$(CXX))" ""
IBMAIX_GCC=1
SIR_XFLAGS+=-fPIC -maix64 -ftls-model=global-dynamic
endif
ifeq ($(IBMAIX_GCC),1)
SIR_LDFLAGS+=-fPIC -maix64 -ftls-model=global-dynamic
endif
endif
ifeq ($(IBMXLC),1)
AIX_STDFLAGS=-Iinclude -qtls=global-dynamic -qthreaded -qformat=all:nonlt -qpic
MMDOPT=
NO_DEFAULT_CFLAGS=1
PTHOPT=
SIR_CSTD=
SIR_SHARED=-qmkshrobj
ifeq ($(SIR_DEBUG),1)
SIR_CFLAGS+=$(DBGFLAGS) -O0 -DDEBUG $(AIX_STDFLAGS)
SIR_XFLAGS+=$(DBGFLAGS) -O0 -DDEBUG $(AIX_STDFLAGS)
else
SIR_CFLAGS+=$(OPTFLAGS) -DNDEBUG $(AIX_STDFLAGS)
SIR_XFLAGS+=$(OPTFLAGS) -DNDEBUG $(AIX_STDFLAGS)
endif
endif
ifeq ($(AIXCLANGXX),1)
SIR_CFLAGS+=-D_LIBCPP_NO_ABI_TAG
endif
ifeq ($(AIXTLS),1)
DBGFLAGS=-g
SIR_CFLAGS+=-fPIC -ftls-model=global-dynamic
SIR_LDFLAGS+=-fPIC -ftls-model=global-dynamic
SIR_XFLAGS+=-fPIC -ftls-model=global-dynamic
endif
################################################################################
# CompCert-C - https://www.absint.com/compcert - https://compcert.org
# https://gricad-gitlab.univ-grenoble-alpes.fr/certicompil/Chamois-CompCert
# Tested with Kalray/Verimag Chamois CompCert as of 2023-11-30
ifneq "$(findstring compcert,$(CC))" ""
COMPCERT?=1
endif
ifeq ($(COMPCERT),1)
MMDOPT=
PTHOPT=
WPEDANTIC=
SIR_FPIC=
FORTIFY_FLAGS=-U_FORTIFY_SOURCE
WARNEXTRA=-Wno-zero-length-array -Wno-c11-extensions
SIR_NO_SHARED=1
endif
################################################################################
# Circle (C++ only)
ifneq "$(findstring circle,$(CXX))" ""
CIRCLECPP?=1
endif
ifeq ($(CIRCLECPP),1)
CXXFLAGS+=-DSIR_NO_STD_IOSTREAM=1
WPEDANTIC=
endif
################################################################################
# Enable GCC's `-fweb` optimization
ifneq ($(SIR_DEBUG),1)
ifneq "$(findstring gcc,$(CC))" ""
SIR_CFLAGS+=-fweb
SIR_CXFLAGS+=-fweb
endif
endif
################################################################################
# Default flags for linking a shared library?
SIR_SHARED?=-shared
################################################################################