-
Notifications
You must be signed in to change notification settings - Fork 16
/
CMakeLists.txt
598 lines (497 loc) · 36.9 KB
/
CMakeLists.txt
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
cmake_minimum_required(VERSION 2.6)
project("spdm_dump" C)
#
# Build Configuration Macro Definition
#
MESSAGE("#########################")
MESSAGE("## Build Configuration ##")
MESSAGE("#########################")
SET(CMAKE_GENERATOR ${CMAKE_GENERATOR} CACHE STRING "Choose the generator of cmake")
SET(ARCH ${ARCH} CACHE STRING "Choose the arch of build: ia32 x64 arm aarch64 riscv32 riscv64 arc" FORCE)
SET(TOOLCHAIN ${TOOLCHAIN} CACHE STRING "Choose the toolchain of build: Windows: VS2015 VS2019 CLANG LIBFUZZER Linux: GCC ARM_GCC AARCH64_GCC RISCV32_GCC RISCV64_GCC ARC_GCC CLANG CBMC AFL KLEE LIBFUZZER" FORCE)
SET(CMAKE_BUILD_TYPE ${TARGET} CACHE STRING "Choose the target of build: Debug Release" FORCE)
SET(CRYPTO ${CRYPTO} CACHE STRING "Choose the crypto of build: mbedtls openssl" FORCE)
SET(GCOV ${GCOV} CACHE STRING "Choose the target of Gcov: ON OFF, and default is OFF" FORCE)
if(NOT GCOV)
SET(GCOV "OFF")
endif()
SET(LIBSPDM_DIR ${PROJECT_SOURCE_DIR}/libspdm)
#
# OpenSSL specific compiled libraries.
#
SET(COMPILED_LIBCRYPTO_PATH ${COMPILED_LIBCRYPTO_PATH} CACHE STRING "Optionally provide a path to libcrypto" FORCE)
SET(COMPILED_LIBSSL_PATH ${COMPILED_LIBSSL_PATH} CACHE STRING "Optionally provide a path to libssl" FORCE)
MESSAGE("CMAKE_GENERATOR = ${CMAKE_GENERATOR}")
if(ARCH STREQUAL "x64")
MESSAGE("ARCH = x64")
elseif(ARCH STREQUAL "ia32")
MESSAGE("ARCH = ia32")
elseif(ARCH STREQUAL "arm")
MESSAGE("ARCH = arm")
elseif(ARCH STREQUAL "aarch64")
MESSAGE("ARCH = aarch64")
elseif(ARCH STREQUAL "riscv32")
MESSAGE("ARCH = riscv32")
elseif(ARCH STREQUAL "riscv64")
MESSAGE("ARCH = riscv64")
elseif(ARCH STREQUAL "arc")
MESSAGE("ARCH = arc")
elseif(ARCH STREQUAL "nios2")
MESSAGE("ARCH = nios2")
else()
MESSAGE(FATAL_ERROR "Unkown ARCH")
endif()
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
if(TOOLCHAIN STREQUAL "GCC")
MESSAGE("TOOLCHAIN = GCC")
elseif(TOOLCHAIN STREQUAL "CLANG")
MESSAGE("TOOLCHAIN = CLANG")
elseif(TOOLCHAIN STREQUAL "CBMC")
MESSAGE("TOOLCHAIN = CBMC")
elseif(TOOLCHAIN STREQUAL "AFL")
MESSAGE("TOOLCHAIN = AFL")
elseif(TOOLCHAIN STREQUAL "KLEE")
MESSAGE("TOOLCHAIN = KLEE")
elseif(TOOLCHAIN STREQUAL "LIBFUZZER")
MESSAGE("TOOLCHAIN = LIBFUZZER")
elseif(TOOLCHAIN STREQUAL "ARM_GCC")
MESSAGE("TOOLCHAIN = ARM_GCC")
elseif(TOOLCHAIN STREQUAL "AARCH64_GCC")
MESSAGE("TOOLCHAIN = AARCH64_GCC")
elseif(TOOLCHAIN STREQUAL "RISCV32_GCC")
MESSAGE("TOOLCHAIN = RISCV32_GCC")
elseif(TOOLCHAIN STREQUAL "RISCV64_GCC")
MESSAGE("TOOLCHAIN = RISCV64_GCC")
elseif(TOOLCHAIN STREQUAL "ARC_GCC")
MESSAGE("TOOLCHAIN = ARC_GCC")
elseif(TOOLCHAIN STREQUAL "NIOS2_GCC")
MESSAGE("TOOLCHAIN = NIOS2_GCC")
else()
MESSAGE(FATAL_ERROR "Unkown TOOLCHAIN")
endif()
if(GCOV STREQUAL "ON")
MESSAGE("GCOV = ON")
elseif(GCOV STREQUAL "OFF")
MESSAGE("GCOV = OFF")
else()
MESSAGE(FATAL_ERROR "Unkown GCOV switch input")
endif()
if(STACK_USAGE STREQUAL "ON")
MESSAGE("STACK_USAGE = ON")
endif()
elseif(CMAKE_SYSTEM_NAME MATCHES "Windows")
if(TOOLCHAIN STREQUAL "VS2015")
MESSAGE("TOOLCHAIN = VS2015")
elseif(TOOLCHAIN STREQUAL "VS2019")
MESSAGE("TOOLCHAIN = VS2019")
elseif(TOOLCHAIN STREQUAL "CLANG")
MESSAGE("TOOLCHAIN = CLANG")
elseif(TOOLCHAIN STREQUAL "CBMC")
MESSAGE("TOOLCHAIN = CBMC")
elseif(TOOLCHAIN STREQUAL "LIBFUZZER")
MESSAGE("TOOLCHAIN = LIBFUZZER")
else()
MESSAGE(FATAL_ERROR "Unkown TOOLCHAIN")
endif()
else()
MESSAGE(FATAL_ERROR "${CMAKE_SYSTEM_NAME} is not supportted")
endif()
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
MESSAGE("TARGET = Debug")
elseif(CMAKE_BUILD_TYPE STREQUAL "Release")
MESSAGE("TARGET = Release")
else()
MESSAGE(FATAL_ERROR "Unkown build type")
endif()
if(CRYPTO STREQUAL "mbedtls")
MESSAGE("CRYPTO = mbedtls")
elseif(CRYPTO STREQUAL "openssl")
MESSAGE("CRYPTO = openssl")
else()
MESSAGE(FATAL_ERROR "Unkown CRYPTO")
endif()
if(ENABLE_BINARY_BUILD STREQUAL "1")
if(NOT CRYPTO STREQUAL "Openssl")
MESSAGE(FATAL_ERROR "enabling binary build not supported for non-Openssl")
endif()
if(NOT COMPILED_LIBCRYPTO_PATH)
MESSAGE(FATAL_ERROR "enabling binary build requires path to libcrypto.")
endif()
if(NOT COMPILED_LIBSSL_PATH)
MESSAGE(FATAL_ERROR "enabling binary build requires path to libssl.")
endif()
MESSAGE("ENABLE_BINARY_BUILD=1")
MESSAGE("COMPILED_LIBCRYPTO_PATH=${COMPILED_LIBCRYPTO_PATH}")
MESSAGE("COMPILED_LIBSSL_PATH=${COMPILED_LIBSSL_PATH}")
SET(CRYPTO_LIB_PATHS ${COMPILED_LIBCRYPTO_PATH} ${COMPILED_LIBSSL_PATH})
else()
SET(CRYPTO_LIB_PATHS ${CRYPTO}lib)
MESSAGE("ENABLE_BINARY_BUILD=0; Building ${CRYPTO} library from source.")
endif()
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
SET(CMAKE_EXE_EXPORTS_C_FLAG "")
if(TOOLCHAIN STREQUAL "GCC")
SET(CMAKE_C_COMPILER gcc)
ADD_COMPILE_OPTIONS(-std=c99 -fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -Wno-address -fpie -fno-asynchronous-unwind-tables -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -Werror-implicit-function-declaration)
if (ARCH STREQUAL "x64")
ADD_COMPILE_OPTIONS(-mno-red-zone)
endif()
if (ARCH STREQUAL "x64" OR "ia32")
ADD_COMPILE_OPTIONS(-maccumulate-outgoing-args)
endif()
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(STACK_USAGE STREQUAL "ON")
ADD_COMPILE_OPTIONS(-fstack-usage)
else()
ADD_COMPILE_OPTIONS(-flto)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(--coverage -fprofile-arcs -ftest-coverage)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
if(STACK_USAGE STREQUAL "ON")
SET(OPENSSL_FLAGS ${OPENSSL_FLAGS} -fstack-usage)
endif()
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
if(STACK_USAGE STREQUAL "ON")
SET(CMOCKA_FLAGS ${CMOCKA_FLAGS} -fstack-usage)
endif()
SET(CMAKE_AR gcc-ar)
if(NOT CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 9.3)
SET(CMAKE_C_ARCHIVE_FINISH true)
endif()
SET(CMAKE_LINKER gcc)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error -no-pie" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -lgcov -fprofile-arcs -ftest-coverage")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "ARM_GCC")
SET(CMAKE_C_COMPILER arm-linux-gnueabi-gcc)
ADD_COMPILE_OPTIONS(-fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(--coverage -fprofile-arcs -ftest-coverage)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR arm-linux-gnueabi-gcc-ar)
SET(CMAKE_LINKER arm-linux-gnueabi-gcc)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error -no-pie" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -lgcov -fprofile-arcs -ftest-coverage")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "AARCH64_GCC")
SET(CMAKE_C_COMPILER aarch64-linux-gnu-gcc)
ADD_COMPILE_OPTIONS(-fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(--coverage -fprofile-arcs -ftest-coverage)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR aarch64-linux-gnu-gcc-ar)
SET(CMAKE_LINKER aarch64-linux-gnu-gcc)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error -no-pie" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -lgcov -fprofile-arcs -ftest-coverage")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "RISCV32_GCC")
SET(CMAKE_C_COMPILER riscv32-unknown-linux-gnu-gcc)
ADD_COMPILE_OPTIONS(-fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(--coverage -fprofile-arcs -ftest-coverage)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR riscv32-unknown-linux-gnu-gcc-ar)
SET(CMAKE_LINKER riscv32-unknown-linux-gnu-gcc)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error -no-pie" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -lgcov -fprofile-arcs -ftest-coverage")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "RISCV64_GCC")
SET(CMAKE_C_COMPILER riscv64-linux-gnu-gcc)
ADD_COMPILE_OPTIONS(-fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(--coverage -fprofile-arcs -ftest-coverage)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR riscv64-linux-gnu-gcc-ar)
SET(CMAKE_LINKER riscv64-linux-gnu-gcc)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error -no-pie" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -lgcov -fprofile-arcs -ftest-coverage")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "ARC_GCC")
SET(CMAKE_C_COMPILER arc-linux-gcc)
ADD_COMPILE_OPTIONS(-fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(--coverage -fprofile-arcs -ftest-coverage)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR arc-linux-gcc-ar)
SET(CMAKE_LINKER arc-linux-gcc)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error -no-pie" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -lgcov -fprofile-arcs -ftest-coverage")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "CLANG")
SET(CMAKE_C_COMPILER clang)
ADD_COMPILE_OPTIONS(-std=c99 -fshort-wchar -fno-strict-aliasing -Wall -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if (ARCH STREQUAL "x64")
ADD_COMPILE_OPTIONS(-mno-red-zone)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR llvm-ar)
SET(CMAKE_RANLIB llvm-ranlib)
SET(CMAKE_LINKER clang)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error -no-pie" )
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "CBMC")
SET(CMAKE_C_COMPILER goto-cc)
ADD_COMPILE_OPTIONS(-fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -maccumulate-outgoing-args -mno-red-zone -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -DCBMC -DDEBUG_ASSERT_CHOICE=0 -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_LINKER goto-cc)
SET(CMAKE_EXE_LINKER_FLAGS "-flto -Wno-error")
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <OBJECTS> -o <TARGET>")
elseif(TOOLCHAIN STREQUAL "AFL")
SET(CMAKE_C_COMPILER afl-gcc)
ADD_COMPILE_OPTIONS(-std=c99 -fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -maccumulate-outgoing-args -mno-red-zone -Wno-address -fpie -fno-asynchronous-unwind-tables -DUSING_LTO -Wno-maybe-uninitialized -Wno-uninitialized -Wno-builtin-declaration-mismatch -Wno-nonnull-compare -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(--coverage -fprofile-arcs -ftest-coverage)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR gcc-ar)
SET(CMAKE_LINKER gcc)
SET(CMAKE_EXE_LINKER_FLAGS "-Wno-error -no-pie" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -lgcov -fprofile-arcs -ftest-coverage")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "KLEE")
SET(CMAKE_C_COMPILER clang)
ADD_COMPILE_OPTIONS(-fno-strict-aliasing -Wall -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -mno-red-zone -Wno-address -fpie -fno-asynchronous-unwind-tables -flto -DUSING_LTO -emit-llvm -DTEST_WITH_KLEE=TRUE -DDEBUG_ASSERT_CHOICE=0 -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_C_CREATE_STATIC_LIBRARY "")
SET(CMAKE_LINKER llvm-link)
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <OBJECTS> -o <TARGET>")
elseif(TOOLCHAIN STREQUAL "LIBFUZZER")
SET(CMAKE_C_COMPILER clang)
ADD_COMPILE_OPTIONS(-std=c99 -fshort-wchar -fno-strict-aliasing -Wall -Wno-array-bounds -ffunction-sections -fdata-sections -fno-common -mno-red-zone -Wno-address -fpie -fno-asynchronous-unwind-tables -DUSING_LTO -DTEST_WITH_LIBFUZZER=TRUE -O1 -fsanitize=fuzzer,address -Werror-implicit-function-declaration)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
ADD_COMPILE_OPTIONS(-g)
endif()
if(GCOV STREQUAL "ON")
ADD_COMPILE_OPTIONS(-fprofile-instr-generate -fcoverage-mapping)
endif()
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR llvm-ar)
SET(CMAKE_LINKER clang)
SET(CMAKE_EXE_LINKER_FLAGS "-Wno-error -no-pie -fsanitize=fuzzer,address" )
if(GCOV STREQUAL "ON")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fprofile-instr-generate")
endif()
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <LINK_FLAGS> <OBJECTS> -o <TARGET> -Wl,--start-group <LINK_LIBRARIES> -Wl,--end-group")
elseif(TOOLCHAIN STREQUAL "NIOS2_GCC")
SET(CMAKE_C_COMPILER nios2-elf-gcc)
ADD_COMPILE_OPTIONS(-xc -MP -MMD -pipe -O3 -Wall -Wno-maybe-uninitialized -Wno-unused-but-set-variable -Wno-nonnull-compare -Wno-int-to-pointer-cast -Wno-pointer-to-int-cast -Wno-builtin-declaration-mismatch -mno-hw-div -mhw-mul -mno-hw-mulx -mgpopt=global -Werror-implicit-function-declaration)
SET(OPENSSL_FLAGS -include base.h -Wno-error=maybe-uninitialized -Wno-error=format -Wno-format -Wno-error=unused-but-set-variable)
SET(CMOCKA_FLAGS -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -fno-common -Wformat -fno-common -fstack-protector-strong)
SET(CMAKE_AR nios2-elf-ar)
SET(CMAKE_LINKER nios2-elf-gcc)
SET(CMAKE_EXE_LINKER_FLAGS "")
SET(CMAKE_C_LINK_EXECUTABLE "")
endif()
if(NOT TOOLCHAIN STREQUAL "NIOS2_GCC")
SET(CMAKE_C_FLAGS_RELEASE "-Os")
SET(CMAKE_C_FLAGS_DEBUG "-O0")
endif()
if(ARCH STREQUAL "x64")
ADD_COMPILE_OPTIONS(-m64 -mcmodel=small)
elseif(ARCH STREQUAL "ia32")
ADD_COMPILE_OPTIONS(-m32)
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32" )
endif()
elseif(CMAKE_SYSTEM_NAME MATCHES "Windows")
if(TOOLCHAIN STREQUAL "CLANG")
SET(CMAKE_C_COMPILER clang-cl.exe)
ADD_COMPILE_OPTIONS(-fno-strict-aliasing -Wall -Wno-array-bounds -Wno-address -flto -DUSING_LTO -D_CRT_SECURE_NO_WARNINGS /w)
SET(OPENSSL_FLAGS /FIbase.h)
SET(CMOCKA_FLAGS -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -Wformat)
SET(CMAKE_STATIC_LINKER_FLAGS "")
SET(CMAKE_LINKER lld-link.exe)
SET(CMAKE_EXE_LINKER_FLAGS "/NOLOGO /SUBSYSTEM:CONSOLE /NODEFAULTLIB:libcmt.lib /IGNORE:4086 /MLLVM:-exception-model=wineh /lldmap /OPT:REF")
if(ARCH STREQUAL "x64")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MACHINE:AMD64 /LIBPATH:'%VCToolsInstallDir%lib/x64' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x64' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x64'")
elseif(ARCH STREQUAL "ia32")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MACHINE:I386 /LIBPATH:'%VCToolsInstallDir%lib/x86' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x86' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x86'")
endif()
SET(CMAKE_C_FLAGS_RELEASE "-Oz")
SET(CMAKE_C_FLAGS_DEBUG "-O0 -gcodeview")
SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG:GHASH")
if(ARCH STREQUAL "x64")
ADD_COMPILE_OPTIONS(-m64)
elseif(ARCH STREQUAL "ia32")
ADD_COMPILE_OPTIONS(-m32 -march=i586)
endif()
SET(CMAKE_C_STANDARD_LIBRARIES "Kernel32.lib MSVCRTD.lib vcruntimed.lib ucrtd.lib Gdi32.lib User32.lib Winmm.lib Advapi32.lib ws2_32.lib")
elseif(TOOLCHAIN STREQUAL "LIBFUZZER")
SET(CMAKE_C_COMPILER clang-cl.exe)
ADD_COMPILE_OPTIONS(-fno-strict-aliasing -Wall -Wno-array-bounds -Wno-address -flto -DUSING_LTO -D_CRT_SECURE_NO_WARNINGS /w -DTEST_WITH_LIBFUZZER=TRUE)
SET(OPENSSL_FLAGS /FIbase.h)
SET(CMOCKA_FLAGS -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat-security -Werror=format-security -Wformat)
SET(CMAKE_STATIC_LINKER_FLAGS "")
SET(CMAKE_LINKER lld-link.exe)
SET(CMAKE_EXE_LINKER_FLAGS "/NOLOGO /SUBSYSTEM:CONSOLE /NODEFAULTLIB:libcmt.lib /IGNORE:4086 /MLLVM:-exception-model=wineh /lldmap /OPT:REF")
if(ARCH STREQUAL "x64")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MACHINE:AMD64 /LIBPATH:'%VCToolsInstallDir%lib/x64' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x64' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x64'")
elseif(ARCH STREQUAL "ia32")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MACHINE:I386 /LIBPATH:'%VCToolsInstallDir%lib/x86' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x86' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x86'")
endif()
SET(CMAKE_C_FLAGS_RELEASE "-Oz")
SET(CMAKE_C_FLAGS_DEBUG "-O0 -gcodeview")
SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG:GHASH")
if(ARCH STREQUAL "x64")
ADD_COMPILE_OPTIONS(-m64)
elseif(ARCH STREQUAL "ia32")
ADD_COMPILE_OPTIONS(-m32 -march=i586)
endif()
if(ARCH STREQUAL "x64")
SET(CMAKE_C_STANDARD_LIBRARIES "Kernel32.lib MSVCRTD.lib vcruntimed.lib ucrtd.lib Gdi32.lib User32.lib Winmm.lib Advapi32.lib ws2_32.lib")
SET(CMAKE_C_STANDARD_LIBRARIES "${CMAKE_C_STANDARD_LIBRARIES} C:/LLVM/lib/clang/13.0.0/lib/windows/clang_rt.asan_dynamic-x86_64.lib C:/LLVM/lib/clang/13.0.0/lib/windows/clang_rt.asan_dynamic_runtime_thunk-x86_64.lib C:/LLVM/lib/clang/13.0.0/lib/windows/clang_rt.fuzzer-x86_64.lib")
elseif(ARCH STREQUAL "ia32")
SET(CMAKE_C_STANDARD_LIBRARIES "Kernel32.lib MSVCRTD.lib vcruntimed.lib ucrtd.lib Gdi32.lib User32.lib Winmm.lib Advapi32.lib ws2_32.lib clang_rt.asan_dynamic-i386.lib clang_rt.asan_dynamic_runtime_thunk-i386.lib clang_rt.fuzzer-i386.lib")
endif()
elseif(TOOLCHAIN STREQUAL "CBMC")
SET(CMAKE_C_COMPILER goto-cl.exe)
# See https://gitlab.kitware.com/cmake/cmake/-/issues/18317 for following workaround
STRING(REGEX REPLACE "/W3" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
ADD_COMPILE_OPTIONS(/nologo /WX /W4 /Gs32768 /D UNICODE /Gy /EHs-c- /GR- /GF /Z7 /Oy- /D_CRT_SECURE_NO_WARNINGS /DCBMC_CC)
SET(OPENSSL_FLAGS /FIbase.h /wd4090 /wd4132 /wd4244 /wd4245 /wd4267 /wd4306 /wd4310 /wd4700 /wd4389 /wd4702 /wd4706 /wd4819 /wd4013)
SET(CMOCKA_FLAGS /wd4204 /wd4133 /wd4267 /wd4701 /wd4702 /wd4703 /D _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1 /D _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1 /D _CRT_NONSTDC_NO_WARNINGS=1)
SET(CMAKE_C_CREATE_STATIC_LIBRARY "")
SET(CMAKE_LINKER goto-cl.exe)
SET(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <OBJECTS>")
SET(CMAKE_C_FLAGS_RELEASE "/GL /O1b2s")
SET(CMAKE_C_FLAGS_DEBUG "/Od")
else()
# See https://gitlab.kitware.com/cmake/cmake/-/issues/18317 for following workaround
STRING(REGEX REPLACE "/W3" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
ADD_COMPILE_OPTIONS(/nologo /WX /W4 /Gs32768 /D UNICODE /Gy /EHs-c- /GR- /GF /Z7 /Gw /Oy- /D_CRT_SECURE_NO_WARNINGS /wd4063 /wd4100 /wd4127 /wd4701 /wd4703 /wd4057)
SET(OPENSSL_FLAGS /FIbase.h /wd4090 /wd4132 /wd4244 /wd4245 /wd4267 /wd4306 /wd4310 /wd4700 /wd4389 /wd4702 /wd4706 /wd4819 /wd4013)
SET(CMOCKA_FLAGS /wd4204 /wd4133 /wd4267 /wd4701 /wd4702 /wd4703 /D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1 /D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1 /D_CRT_NONSTDC_NO_WARNINGS=1)
SET(CMAKE_STATIC_LINKER_FLAGS "/NOLOGO /LTCG")
SET(CMAKE_EXE_LINKER_FLAGS "/NOLOGO /SUBSYSTEM:CONSOLE /NODEFAULTLIB:libcmt.lib /IGNORE:4086 /MAP /OPT:REF")
SET(CMAKE_C_FLAGS_RELEASE "/GL /O1b2s")
SET(CMAKE_C_FLAGS_DEBUG "/Od")
SET(CMAKE_EXE_LINKER_FLAGS_RELEASE "/LTCG")
SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG")
if(ARCH STREQUAL "x64")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MACHINE:AMD64")
elseif(ARCH STREQUAL "ia32")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MACHINE:I386")
endif()
SET(CMAKE_C_STANDARD_LIBRARIES "Kernel32.lib MSVCRTD.lib vcruntimed.lib ucrtd.lib Gdi32.lib User32.lib Winmm.lib Advapi32.lib ws2_32.lib")
endif()
endif()
if(TOOLCHAIN STREQUAL "VS2015")
if(ARCH STREQUAL "x64")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LIBPATH:'%VCINSTALLDIR%Lib/AMD64' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x64' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x64'")
elseif(ARCH STREQUAL "ia32")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LIBPATH:'%VCINSTALLDIR%Lib' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x86' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x86'")
endif()
elseif(TOOLCHAIN STREQUAL "VS2019")
if(ARCH STREQUAL "x64")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LIBPATH:'%VCToolsInstallDir%lib/x64' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x64' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x64'")
elseif(ARCH STREQUAL "ia32")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LIBPATH:'%VCToolsInstallDir%lib/x86' /LIBPATH:'%UniversalCRTSdkDir%lib/%UCRTVersion%/ucrt/x86' /LIBPATH:'%WindowsSdkDir%lib/%WindowsSDKLibVersion%/um/x86'")
endif()
endif()
SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib)
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
ADD_CUSTOM_TARGET(copy_sample_key)
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
ADD_CUSTOM_COMMAND(TARGET copy_sample_key
PRE_BUILD
COMMAND cp -r -f ${LIBSPDM_DIR}/unit_test/sample_key/* ${EXECUTABLE_OUTPUT_PATH})
elseif(CMAKE_SYSTEM_NAME MATCHES "Windows")
STRING(REPLACE "/" "\\" SRC ${LIBSPDM_DIR}/unit_test/sample_key/*)
if(CMAKE_GENERATOR MATCHES "^Visual Studio")
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
STRING(REPLACE "/" "\\" DEST ${EXECUTABLE_OUTPUT_PATH}/Debug)
else()
STRING(REPLACE "/" "\\" DEST ${EXECUTABLE_OUTPUT_PATH}/Release)
endif()
else()
STRING(REPLACE "/" "\\" DEST ${EXECUTABLE_OUTPUT_PATH})
endif()
ADD_CUSTOM_COMMAND(TARGET copy_sample_key
PRE_BUILD
COMMAND xcopy /y /s ${SRC} ${DEST})
endif()
if(CRYPTO STREQUAL "mbedtls")
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/cryptlib_mbedtls out/cryptlib_mbedtls.out)
elseif(CRYPTO STREQUAL "openssl")
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/cryptlib_openssl out/cryptlib_openssl.out)
endif()
if(NOT ENABLE_BINARY_BUILD STREQUAL "1")
if(CRYPTO STREQUAL "mbedtls")
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/mbedtlslib out/mbedtlslib.out)
elseif(CRYPTO STREQUAL "openssl")
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/openssllib out/openssllib.out)
endif()
endif()
ADD_SUBDIRECTORY(library/spdm_device_secret_lib_dump)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/library/spdm_common_lib out/spdm_common_lib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/library/spdm_requester_lib out/spdm_requester_lib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/library/spdm_responder_lib out/spdm_responder_lib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/library/spdm_crypt_lib out/spdm_crypt_lib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/library/spdm_secured_message_lib out/spdm_secured_message_lib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/library/spdm_transport_mctp_lib out/spdm_transport_mctp_lib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/library/spdm_transport_pcidoe_lib out/spdm_transport_pcidoe_lib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/memlib out/memlib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/debuglib out/debuglib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/debuglib_null out/debuglib_null.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/rnglib out/rnglib.out)
ADD_SUBDIRECTORY(${LIBSPDM_DIR}/os_stub/malloclib out/malloclib.out)
ADD_SUBDIRECTORY(spdm_dump)