forked from rhboot/shim-review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shim-build.log
1356 lines (1354 loc) · 601 KB
/
shim-build.log
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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
prt-get: updating /ts/ports/components/shim
=======> WARNING: Signature file not found, falling back to old md5sum checking.
=======> Building '/ts/ports/components/shim/shim#15-3.pkg.tar.xz'.
bsdtar -p -o -C /ts/ports/components/shim/work/src -xf /ts/ports/components/shim/shim-15.tar.bz2
cp /ts/ports/components/shim/183.patch /ts/ports/components/shim/work/src
cp ThinStation-UEFI-CA.cer /ts/ports/components/shim/work/src
+ build
+ cd shim-15
+ patch -Np1 -i /ts/ports/components/shim/work/src/183.patch
patching file MokManager.c
Hunk #1 succeeded at 1063 (offset 25 lines).
Hunk #2 succeeded at 1079 (offset 25 lines).
Hunk #3 succeeded at 1102 (offset 25 lines).
Hunk #4 succeeded at 1140 (offset 25 lines).
Hunk #5 succeeded at 1187 (offset 25 lines).
Hunk #6 succeeded at 1197 (offset 25 lines).
Hunk #7 succeeded at 1254 (offset 25 lines).
Hunk #8 succeeded at 1363 (offset 25 lines).
+ sed -i -e s/EFI_WARN_UNKOWN_GLYPH/EFI_WARN_UNKNOWN_GLYPH/g lib/console.c
+ export VENDOR_CERT_FILE=/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer
+ VENDOR_CERT_FILE=/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer
+ export EFI_PATH=/usr/lib
+ EFI_PATH=/usr/lib
+ export ENABLE_HTTPBOOT=1
+ ENABLE_HTTPBOOT=1
+ export OSLABEL=ThinStation
+ OSLABEL=ThinStation
+ export DEFAULT_LOADER=loader.efi
+ DEFAULT_LOADER=loader.efi
+ make
sed -e "s,@@VERSION@@,15," \
-e "s,@@UNAME@@,Linux x86_64 Intel(R) Core(TM) i7-7820X CPU @ 3.60GHz GenuineIntel GNU/Linux," \
-e "s,@@COMMIT@@,51413d1deb0df0debdf1d208723131ff0e36d3a3," \
< /ts/ports/components/shim/work/src/shim-15/version.c.in > version.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o shim.o shim.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o mok.o mok.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o netboot.o netboot.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o cert.o /ts/ports/components/shim/work/src/shim-15/cert.S
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o replacements.o replacements.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o tpm.o tpm.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o version.o version.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o errlog.o errlog.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o httpboot.o httpboot.c
mkdir -p Cryptlib/{Hash,Hmac,Cipher,Rand,Pk,Pem,SysCall}
make VPATH=/ts/ports/components/shim/work/src/shim-15/Cryptlib TOPDIR=/ts/ports/components/shim/work/src/shim-15/Cryptlib -C Cryptlib -f /ts/ports/components/shim/work/src/shim-15/Cryptlib/Makefile
make[1]: Entering directory '/ts/ports/components/shim/work/src/shim-15/Cryptlib'
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hash/CryptMd4Null.o Hash/CryptMd4Null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hash/CryptMd5.o Hash/CryptMd5.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hash/CryptSha1.o Hash/CryptSha1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hash/CryptSha256.o Hash/CryptSha256.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hash/CryptSha512.o Hash/CryptSha512.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hmac/CryptHmacMd5Null.o Hmac/CryptHmacMd5Null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hmac/CryptHmacSha1Null.o Hmac/CryptHmacSha1Null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Hmac/CryptHmacSha256Null.o Hmac/CryptHmacSha256Null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Cipher/CryptAesNull.o Cipher/CryptAesNull.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Cipher/CryptTdesNull.o Cipher/CryptTdesNull.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Cipher/CryptArc4Null.o Cipher/CryptArc4Null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Rand/CryptRand.o Rand/CryptRand.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptRsaBasic.o Pk/CryptRsaBasic.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptRsaExtNull.o Pk/CryptRsaExtNull.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptPkcs7SignNull.o Pk/CryptPkcs7SignNull.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptPkcs7Verify.o Pk/CryptPkcs7Verify.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptDhNull.o Pk/CryptDhNull.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptTs.o Pk/CryptTs.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptX509.o Pk/CryptX509.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pk/CryptAuthenticode.o Pk/CryptAuthenticode.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o Pem/CryptPemNull.o Pem/CryptPemNull.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o SysCall/CrtWrapper.o SysCall/CrtWrapper.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o SysCall/TimerWrapper.o SysCall/TimerWrapper.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o SysCall/BaseMemAllocation.o SysCall/BaseMemAllocation.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o SysCall/BaseStrings.o SysCall/BaseStrings.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -iquote /ts/ports/components/shim/work/src/shim-15/Cryptlib -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -std=gnu89 -ffreestanding -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o SysCall/memset.o SysCall/memset.c
ar rcs libcryptlib.a Hash/CryptMd4Null.o Hash/CryptMd5.o Hash/CryptSha1.o Hash/CryptSha256.o Hash/CryptSha512.o Hmac/CryptHmacMd5Null.o Hmac/CryptHmacSha1Null.o Hmac/CryptHmacSha256Null.o Cipher/CryptAesNull.o Cipher/CryptTdesNull.o Cipher/CryptArc4Null.o Rand/CryptRand.o Pk/CryptRsaBasic.o Pk/CryptRsaExtNull.o Pk/CryptPkcs7SignNull.o Pk/CryptPkcs7Verify.o Pk/CryptDhNull.o Pk/CryptTs.o Pk/CryptX509.o Pk/CryptAuthenticode.o Pem/CryptPemNull.o SysCall/CrtWrapper.o SysCall/TimerWrapper.o SysCall/BaseMemAllocation.o SysCall/BaseStrings.o SysCall/memset.o
make[1]: Leaving directory '/ts/ports/components/shim/work/src/shim-15/Cryptlib'
mkdir -p Cryptlib/OpenSSL/crypto/{x509v3,x509,txt_db,stack,sha,rsa,rc4,rand,pkcs7,pkcs12,pem,ocsp,objects,modes,md5,lhash,kdf,hmac,evp,err,dso,dh,conf,comp,cmac,buffer,bn,bio,async{,/arch},asn1,aes}/
make VPATH=/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL TOPDIR=/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -C Cryptlib/OpenSSL -f /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/Makefile
make[1]: Entering directory '/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL'
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/cryptlib.o crypto/cryptlib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/mem.o crypto/mem.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/mem_clr.o crypto/mem_clr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/mem_dbg.o crypto/mem_dbg.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/cversion.o crypto/cversion.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ex_data.o crypto/ex_data.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/cpt_err.o crypto/cpt_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ebcdic.o crypto/ebcdic.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/uid.o crypto/uid.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/o_time.o crypto/o_time.c
In file included from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/stdio.h:15,
from crypto/mem.c:59:
crypto/mem.c: In function 'CRYPTO_strdup':
crypto/mem.c:363:12: warning: pointer targets in passing argument 1 of 'AsciiStrCpy' differ in signedness [-Wpointer-sign]
363 | strcpy(ret, str);
| ^~~
| |
| char *
/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/OpenSslSupport.h:373:55: note: in definition of macro 'strcpy'
373 | #define strcpy(strDest,strSource) AsciiStrCpy(strDest,strSource)
| ^~~~~~~
In file included from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/OpenSslSupport.h:21,
from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/stdio.h:15,
from crypto/mem.c:59:
/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Library/BaseLib.h:8:8: note: expected 'CHAR8 *' {aka 'unsigned char *'} but argument is of type 'char *'
8 | CHAR8 *AsciiStrCpy(CHAR8 *Destination, CHAR8 *Source);
| ^~~~~~~~~~~
In file included from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/stdio.h:15,
from crypto/mem.c:59:
crypto/mem.c:363:17: warning: passing argument 2 of 'AsciiStrCpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
363 | strcpy(ret, str);
| ^~~
/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/OpenSslSupport.h:373:63: note: in definition of macro 'strcpy'
373 | #define strcpy(strDest,strSource) AsciiStrCpy(strDest,strSource)
| ^~~~~~~~~
In file included from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/OpenSslSupport.h:21,
from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/stdio.h:15,
from crypto/mem.c:59:
/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Library/BaseLib.h:8:8: note: expected 'CHAR8 *' {aka 'unsigned char *'} but argument is of type 'const char *'
8 | CHAR8 *AsciiStrCpy(CHAR8 *Destination, CHAR8 *Source);
| ^~~~~~~~~~~
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/o_str.o crypto/o_str.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/o_dir.o crypto/o_dir.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/o_fips.o crypto/o_fips.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/o_init.o crypto/o_init.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/fips_ers.o crypto/fips_ers.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/md5/md5_dgst.o crypto/md5/md5_dgst.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/md5/md5_one.o crypto/md5/md5_one.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/sha/sha_dgst.o crypto/sha/sha_dgst.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/sha/sha1dgst.o crypto/sha/sha1dgst.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/sha/sha_one.o crypto/sha/sha_one.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/sha/sha1_one.o crypto/sha/sha1_one.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/sha/sha256.o crypto/sha/sha256.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/sha/sha512.o crypto/sha/sha512.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/hmac/hmac.o crypto/hmac/hmac.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/hmac/hm_ameth.o crypto/hmac/hm_ameth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/hmac/hm_pmeth.o crypto/hmac/hm_pmeth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rc4/rc4_enc.o crypto/rc4/rc4_enc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rc4/rc4_skey.o crypto/rc4/rc4_skey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rc4/rc4_utl.o crypto/rc4/rc4_utl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_misc.o crypto/aes/aes_misc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_ecb.o crypto/aes/aes_ecb.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_cfb.o crypto/aes/aes_cfb.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_ofb.o crypto/aes/aes_ofb.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_ctr.o crypto/aes/aes_ctr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_ige.o crypto/aes/aes_ige.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_wrap.o crypto/aes/aes_wrap.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_core.o crypto/aes/aes_core.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/aes/aes_cbc.o crypto/aes/aes_cbc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/cbc128.o crypto/modes/cbc128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/ctr128.o crypto/modes/ctr128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/cts128.o crypto/modes/cts128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/cfb128.o crypto/modes/cfb128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/ofb128.o crypto/modes/ofb128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/gcm128.o crypto/modes/gcm128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/ccm128.o crypto/modes/ccm128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/xts128.o crypto/modes/xts128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/modes/wrap128.o crypto/modes/wrap128.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_add.o crypto/bn/bn_add.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_div.o crypto/bn/bn_div.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_exp.o crypto/bn/bn_exp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_lib.o crypto/bn/bn_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_ctx.o crypto/bn/bn_ctx.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_mul.o crypto/bn/bn_mul.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_mod.o crypto/bn/bn_mod.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_print.o crypto/bn/bn_print.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_rand.o crypto/bn/bn_rand.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_shift.o crypto/bn/bn_shift.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_word.o crypto/bn/bn_word.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_blind.o crypto/bn/bn_blind.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_kron.o crypto/bn/bn_kron.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_sqrt.o crypto/bn/bn_sqrt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_gcd.o crypto/bn/bn_gcd.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_prime.o crypto/bn/bn_prime.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_err.o crypto/bn/bn_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_sqr.o crypto/bn/bn_sqr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_asm.o crypto/bn/bn_asm.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_recp.o crypto/bn/bn_recp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_mont.o crypto/bn/bn_mont.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_mpi.o crypto/bn/bn_mpi.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_exp2.o crypto/bn/bn_exp2.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_gf2m.o crypto/bn/bn_gf2m.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_nist.o crypto/bn/bn_nist.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_depr.o crypto/bn/bn_depr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_x931p.o crypto/bn/bn_x931p.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bn/bn_const.o crypto/bn/bn_const.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_eay.o crypto/rsa/rsa_eay.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_gen.o crypto/rsa/rsa_gen.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_lib.o crypto/rsa/rsa_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_sign.o crypto/rsa/rsa_sign.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_saos.o crypto/rsa/rsa_saos.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_err.o crypto/rsa/rsa_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_pk1.o crypto/rsa/rsa_pk1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_ssl.o crypto/rsa/rsa_ssl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_none.o crypto/rsa/rsa_none.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_oaep.o crypto/rsa/rsa_oaep.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_chk.o crypto/rsa/rsa_chk.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_null.o crypto/rsa/rsa_null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_pss.o crypto/rsa/rsa_pss.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_x931.o crypto/rsa/rsa_x931.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_asn1.o crypto/rsa/rsa_asn1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_depr.o crypto/rsa/rsa_depr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_ameth.o crypto/rsa/rsa_ameth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_prn.o crypto/rsa/rsa_prn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_pmeth.o crypto/rsa/rsa_pmeth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rsa/rsa_crpt.o crypto/rsa/rsa_crpt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_dl.o crypto/dso/dso_dl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_dlfcn.o crypto/dso/dso_dlfcn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_err.o crypto/dso/dso_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_lib.o crypto/dso/dso_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_null.o crypto/dso/dso_null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_openssl.o crypto/dso/dso_openssl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_win32.o crypto/dso/dso_win32.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_vms.o crypto/dso/dso_vms.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dso/dso_beos.o crypto/dso/dso_beos.c
crypto/rsa/rsa_ameth.c:771:25: warning: 'rsa_oaep_decode' defined but not used [-Wunused-function]
771 | static RSA_OAEP_PARAMS *rsa_oaep_decode(const X509_ALGOR *alg,
| ^~~~~~~~~~~~~~~
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_asn1.o crypto/dh/dh_asn1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_gen.o crypto/dh/dh_gen.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_key.o crypto/dh/dh_key.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_lib.o crypto/dh/dh_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_check.o crypto/dh/dh_check.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_err.o crypto/dh/dh_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_depr.o crypto/dh/dh_depr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_ameth.o crypto/dh/dh_ameth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_pmeth.o crypto/dh/dh_pmeth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_prn.o crypto/dh/dh_prn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/dh/dh_rfc5114.o crypto/dh/dh_rfc5114.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/buffer/buffer.o crypto/buffer/buffer.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/buffer/buf_str.o crypto/buffer/buf_str.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/buffer/buf_err.o crypto/buffer/buf_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bio_lib.o crypto/bio/bio_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bio_cb.o crypto/bio/bio_cb.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bio_err.o crypto/bio/bio_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_mem.o crypto/bio/bss_mem.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_null.o crypto/bio/bss_null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_fd.o crypto/bio/bss_fd.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_file.o crypto/bio/bss_file.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_sock.o crypto/bio/bss_sock.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_conn.o crypto/bio/bss_conn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bf_null.o crypto/bio/bf_null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bf_buff.o crypto/bio/bf_buff.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/b_dump.o crypto/bio/b_dump.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/b_print.o crypto/bio/b_print.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/b_sock.o crypto/bio/b_sock.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_acpt.o crypto/bio/bss_acpt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bf_nbio.o crypto/bio/bf_nbio.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_log.o crypto/bio/bss_log.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_bio.o crypto/bio/bss_bio.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/bio/bss_dgram.o crypto/bio/bss_dgram.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/stack/stack.o crypto/stack/stack.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/lhash/lhash.o crypto/lhash/lhash.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/lhash/lh_stats.o crypto/lhash/lh_stats.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rand/md_rand.o crypto/rand/md_rand.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rand/randfile.o crypto/rand/randfile.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rand/rand_lib.o crypto/rand/rand_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rand/rand_err.o crypto/rand/rand_err.c
In file included from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/stdio.h:15,
from crypto/bio/bss_log.c:65:
crypto/bio/bss_log.c: In function 'slg_write':
crypto/bio/bss_log.c:245:18: warning: passing argument 2 of 'AsciiStrnCpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
245 | strncpy(buf, in, inl);
| ^~
/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/OpenSslSupport.h:374:64: note: in definition of macro 'strncpy'
374 | #define strncpy(strDest,strSource,count) AsciiStrnCpy(strDest,strSource,(UINTN)count)
| ^~~~~~~~~
In file included from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/OpenSslSupport.h:21,
from /ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/stdio.h:15,
from crypto/bio/bss_log.c:65:
/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Library/BaseLib.h:6:7: note: expected 'char *' but argument is of type 'const char *'
6 | char *AsciiStrnCpy(char *Destination, char *Source, UINTN count);
| ^~~~~~~~~~~~
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/rand/rand_unix.o crypto/rand/rand_unix.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/err/err.o crypto/err/err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/err/err_all.o crypto/err/err_all.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/err/err_prn.o crypto/err/err_prn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/objects/o_names.o crypto/objects/o_names.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/objects/obj_dat.o crypto/objects/obj_dat.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/objects/obj_lib.o crypto/objects/obj_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/objects/obj_err.o crypto/objects/obj_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/objects/obj_xref.o crypto/objects/obj_xref.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/encode.o crypto/evp/encode.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/digest.o crypto/evp/digest.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_enc.o crypto/evp/evp_enc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_key.o crypto/evp/evp_key.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_acnf.o crypto/evp/evp_acnf.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_cnf.o crypto/evp/evp_cnf.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_des.o crypto/evp/e_des.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_bf.o crypto/evp/e_bf.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_idea.o crypto/evp/e_idea.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_des3.o crypto/evp/e_des3.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_camellia.o crypto/evp/e_camellia.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_rc4.o crypto/evp/e_rc4.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_aes.o crypto/evp/e_aes.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/names.o crypto/evp/names.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_seed.o crypto/evp/e_seed.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_xcbc_d.o crypto/evp/e_xcbc_d.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_rc2.o crypto/evp/e_rc2.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_cast.o crypto/evp/e_cast.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_rc5.o crypto/evp/e_rc5.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_null.o crypto/evp/m_null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_md2.o crypto/evp/m_md2.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_md4.o crypto/evp/m_md4.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_md5.o crypto/evp/m_md5.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_sha.o crypto/evp/m_sha.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_sha1.o crypto/evp/m_sha1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_wp.o crypto/evp/m_wp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_dss.o crypto/evp/m_dss.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_dss1.o crypto/evp/m_dss1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_mdc2.o crypto/evp/m_mdc2.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_ripemd.o crypto/evp/m_ripemd.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_ecdsa.o crypto/evp/m_ecdsa.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p_open.o crypto/evp/p_open.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p_seal.o crypto/evp/p_seal.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p_sign.o crypto/evp/p_sign.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p_verify.o crypto/evp/p_verify.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p_lib.o crypto/evp/p_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p_enc.o crypto/evp/p_enc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p_dec.o crypto/evp/p_dec.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/bio_md.o crypto/evp/bio_md.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/bio_b64.o crypto/evp/bio_b64.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/bio_enc.o crypto/evp/bio_enc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_err.o crypto/evp/evp_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_null.o crypto/evp/e_null.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/c_all.o crypto/evp/c_all.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/c_allc.o crypto/evp/c_allc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/c_alld.o crypto/evp/c_alld.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_lib.o crypto/evp/evp_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/bio_ok.o crypto/evp/bio_ok.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_pkey.o crypto/evp/evp_pkey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/evp_pbe.o crypto/evp/evp_pbe.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p5_crpt.o crypto/evp/p5_crpt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/p5_crpt2.o crypto/evp/p5_crpt2.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_old.o crypto/evp/e_old.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/pmeth_lib.o crypto/evp/pmeth_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/pmeth_fn.o crypto/evp/pmeth_fn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/pmeth_gn.o crypto/evp/pmeth_gn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/m_sigver.o crypto/evp/m_sigver.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_aes_cbc_hmac_sha1.o crypto/evp/e_aes_cbc_hmac_sha1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_aes_cbc_hmac_sha256.o crypto/evp/e_aes_cbc_hmac_sha256.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/evp/e_rc4_hmac_md5.o crypto/evp/e_rc4_hmac_md5.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_object.o crypto/asn1/a_object.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_bitstr.o crypto/asn1/a_bitstr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_utctm.o crypto/asn1/a_utctm.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_gentm.o crypto/asn1/a_gentm.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_time.o crypto/asn1/a_time.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_int.o crypto/asn1/a_int.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_octet.o crypto/asn1/a_octet.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_print.o crypto/asn1/a_print.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_type.o crypto/asn1/a_type.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_set.o crypto/asn1/a_set.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_dup.o crypto/asn1/a_dup.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_d2i_fp.o crypto/asn1/a_d2i_fp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_i2d_fp.o crypto/asn1/a_i2d_fp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_enum.o crypto/asn1/a_enum.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_utf8.o crypto/asn1/a_utf8.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_sign.o crypto/asn1/a_sign.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_digest.o crypto/asn1/a_digest.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_verify.o crypto/asn1/a_verify.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_mbstr.o crypto/asn1/a_mbstr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_strex.o crypto/asn1/a_strex.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_algor.o crypto/asn1/x_algor.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_val.o crypto/asn1/x_val.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_pubkey.o crypto/asn1/x_pubkey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_sig.o crypto/asn1/x_sig.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_req.o crypto/asn1/x_req.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_attrib.o crypto/asn1/x_attrib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_bignum.o crypto/asn1/x_bignum.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_long.o crypto/asn1/x_long.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_name.o crypto/asn1/x_name.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_x509.o crypto/asn1/x_x509.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_x509a.o crypto/asn1/x_x509a.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_crl.o crypto/asn1/x_crl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_info.o crypto/asn1/x_info.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_spki.o crypto/asn1/x_spki.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/nsseq.o crypto/asn1/nsseq.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_nx509.o crypto/asn1/x_nx509.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/d2i_pu.o crypto/asn1/d2i_pu.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/d2i_pr.o crypto/asn1/d2i_pr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/i2d_pu.o crypto/asn1/i2d_pu.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/i2d_pr.o crypto/asn1/i2d_pr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/t_req.o crypto/asn1/t_req.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/t_x509.o crypto/asn1/t_x509.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/t_x509a.o crypto/asn1/t_x509a.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/t_crl.o crypto/asn1/t_crl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/t_pkey.o crypto/asn1/t_pkey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/t_spki.o crypto/asn1/t_spki.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/t_bitst.o crypto/asn1/t_bitst.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/tasn_new.o crypto/asn1/tasn_new.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/tasn_fre.o crypto/asn1/tasn_fre.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/tasn_enc.o crypto/asn1/tasn_enc.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/tasn_dec.o crypto/asn1/tasn_dec.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/tasn_utl.o crypto/asn1/tasn_utl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/tasn_typ.o crypto/asn1/tasn_typ.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/tasn_prn.o crypto/asn1/tasn_prn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/ameth_lib.o crypto/asn1/ameth_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/f_int.o crypto/asn1/f_int.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/f_string.o crypto/asn1/f_string.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/n_pkey.o crypto/asn1/n_pkey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/f_enum.o crypto/asn1/f_enum.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_pkey.o crypto/asn1/x_pkey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_bool.o crypto/asn1/a_bool.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/x_exten.o crypto/asn1/x_exten.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/bio_asn1.o crypto/asn1/bio_asn1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/bio_ndef.o crypto/asn1/bio_ndef.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/asn_mime.o crypto/asn1/asn_mime.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/asn1_gen.o crypto/asn1/asn1_gen.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/asn1_par.o crypto/asn1/asn1_par.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/asn1_lib.o crypto/asn1/asn1_lib.c
crypto/asn1/x_pkey.c: In function 'X509_PKEY_new':
crypto/asn1/x_pkey.c:107:14: warning: variable 'c' set but not used [-Wunused-but-set-variable]
107 | ASN1_CTX c;
| ^
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/asn1_err.o crypto/asn1/asn1_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_bytes.o crypto/asn1/a_bytes.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/a_strnid.o crypto/asn1/a_strnid.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/evp_asn1.o crypto/asn1/evp_asn1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/asn_pack.o crypto/asn1/asn_pack.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/p5_pbe.o crypto/asn1/p5_pbe.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/p5_pbev2.o crypto/asn1/p5_pbev2.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/p8_pkey.o crypto/asn1/p8_pkey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/asn1/asn_moid.o crypto/asn1/asn_moid.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_sign.o crypto/pem/pem_sign.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_seal.o crypto/pem/pem_seal.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_info.o crypto/pem/pem_info.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_lib.o crypto/pem/pem_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_all.o crypto/pem/pem_all.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_err.o crypto/pem/pem_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_x509.o crypto/pem/pem_x509.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_xaux.o crypto/pem/pem_xaux.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_oth.o crypto/pem/pem_oth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_pk8.o crypto/pem/pem_pk8.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pem_pkey.o crypto/pem/pem_pkey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pem/pvkfmt.o crypto/pem/pvkfmt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_def.o crypto/x509/x509_def.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_d2.o crypto/x509/x509_d2.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_r2x.o crypto/x509/x509_r2x.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_cmp.o crypto/x509/x509_cmp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_obj.o crypto/x509/x509_obj.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_req.o crypto/x509/x509_req.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509spki.o crypto/x509/x509spki.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_vfy.o crypto/x509/x509_vfy.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_set.o crypto/x509/x509_set.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509cset.o crypto/x509/x509cset.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509rset.o crypto/x509/x509rset.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_err.o crypto/x509/x509_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509name.o crypto/x509/x509name.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_v3.o crypto/x509/x509_v3.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_ext.o crypto/x509/x509_ext.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_att.o crypto/x509/x509_att.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509type.o crypto/x509/x509type.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_lu.o crypto/x509/x509_lu.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x_all.o crypto/x509/x_all.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_txt.o crypto/x509/x509_txt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_trs.o crypto/x509/x509_trs.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509/x509_vpm.o crypto/x509/x509_vpm.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_bcons.o crypto/x509v3/v3_bcons.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_bitst.o crypto/x509v3/v3_bitst.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_conf.o crypto/x509v3/v3_conf.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_extku.o crypto/x509v3/v3_extku.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_ia5.o crypto/x509v3/v3_ia5.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_lib.o crypto/x509v3/v3_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_prn.o crypto/x509v3/v3_prn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_utl.o crypto/x509v3/v3_utl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3err.o crypto/x509v3/v3err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_genn.o crypto/x509v3/v3_genn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_alt.o crypto/x509v3/v3_alt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_skey.o crypto/x509v3/v3_skey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_akey.o crypto/x509v3/v3_akey.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_pku.o crypto/x509v3/v3_pku.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_int.o crypto/x509v3/v3_int.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_enum.o crypto/x509v3/v3_enum.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_sxnet.o crypto/x509v3/v3_sxnet.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_cpols.o crypto/x509v3/v3_cpols.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_crld.o crypto/x509v3/v3_crld.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_purp.o crypto/x509v3/v3_purp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_info.o crypto/x509v3/v3_info.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_ocsp.o crypto/x509v3/v3_ocsp.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_akeya.o crypto/x509v3/v3_akeya.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_pmaps.o crypto/x509v3/v3_pmaps.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_pcons.o crypto/x509v3/v3_pcons.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_ncons.o crypto/x509v3/v3_ncons.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_pcia.o crypto/x509v3/v3_pcia.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_pci.o crypto/x509v3/v3_pci.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/pcy_cache.o crypto/x509v3/pcy_cache.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/pcy_node.o crypto/x509v3/pcy_node.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/pcy_data.o crypto/x509v3/pcy_data.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/pcy_map.o crypto/x509v3/pcy_map.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/pcy_tree.o crypto/x509v3/pcy_tree.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/pcy_lib.o crypto/x509v3/pcy_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_asid.o crypto/x509v3/v3_asid.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/x509v3/v3_addr.o crypto/x509v3/v3_addr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/conf/conf_err.o crypto/conf/conf_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/conf/conf_lib.o crypto/conf/conf_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/conf/conf_api.o crypto/conf/conf_api.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/conf/conf_def.o crypto/conf/conf_def.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/conf/conf_mod.o crypto/conf/conf_mod.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/conf/conf_mall.o crypto/conf/conf_mall.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/conf/conf_sap.o crypto/conf/conf_sap.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/txt_db/txt_db.o crypto/txt_db/txt_db.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/pk7_asn1.o crypto/pkcs7/pk7_asn1.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/pk7_lib.o crypto/pkcs7/pk7_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/pkcs7err.o crypto/pkcs7/pkcs7err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/pk7_doit.o crypto/pkcs7/pk7_doit.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/pk7_smime.o crypto/pkcs7/pk7_smime.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/pk7_attr.o crypto/pkcs7/pk7_attr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/pk7_mime.o crypto/pkcs7/pk7_mime.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs7/bio_pk7.o crypto/pkcs7/bio_pk7.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_add.o crypto/pkcs12/p12_add.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_asn.o crypto/pkcs12/p12_asn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_attr.o crypto/pkcs12/p12_attr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_crpt.o crypto/pkcs12/p12_crpt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_crt.o crypto/pkcs12/p12_crt.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_decr.o crypto/pkcs12/p12_decr.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_init.o crypto/pkcs12/p12_init.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_key.o crypto/pkcs12/p12_key.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_kiss.o crypto/pkcs12/p12_kiss.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_mutl.o crypto/pkcs12/p12_mutl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_utl.o crypto/pkcs12/p12_utl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_npas.o crypto/pkcs12/p12_npas.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/pk12err.o crypto/pkcs12/pk12err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_p8d.o crypto/pkcs12/p12_p8d.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/pkcs12/p12_p8e.o crypto/pkcs12/p12_p8e.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/comp/comp_lib.o crypto/comp/comp_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/comp/comp_err.o crypto/comp/comp_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/comp/c_rle.o crypto/comp/c_rle.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/comp/c_zlib.o crypto/comp/c_zlib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_asn.o crypto/ocsp/ocsp_asn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_ext.o crypto/ocsp/ocsp_ext.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_ht.o crypto/ocsp/ocsp_ht.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_lib.o crypto/ocsp/ocsp_lib.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_cl.o crypto/ocsp/ocsp_cl.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_srv.o crypto/ocsp/ocsp_srv.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_prn.o crypto/ocsp/ocsp_prn.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_vfy.o crypto/ocsp/ocsp_vfy.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/ocsp/ocsp_err.o crypto/ocsp/ocsp_err.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/cmac/cmac.o crypto/cmac/cmac.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/cmac/cm_ameth.o crypto/cmac/cm_ameth.c
gcc -ggdb -O0 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/.. -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include/ -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -nostdinc -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -Wall -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/../Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/asn1 -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/evp -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/modes -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL/crypto/include -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DOPENSSL_SMALL_FOOTPRINT -DPEDANTIC -mno-mmx -mno-sse -mno-red-zone -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -UNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -c -o crypto/cmac/cm_pmeth.o crypto/cmac/cm_pmeth.c
ar rcs libopenssl.a crypto/cryptlib.o crypto/mem.o crypto/mem_clr.o crypto/mem_dbg.o crypto/cversion.o crypto/ex_data.o crypto/cpt_err.o crypto/ebcdic.o crypto/uid.o crypto/o_time.o crypto/o_str.o crypto/o_dir.o crypto/o_fips.o crypto/o_init.o crypto/fips_ers.o crypto/md5/md5_dgst.o crypto/md5/md5_one.o crypto/sha/sha_dgst.o crypto/sha/sha1dgst.o crypto/sha/sha_one.o crypto/sha/sha1_one.o crypto/sha/sha256.o crypto/sha/sha512.o crypto/hmac/hmac.o crypto/hmac/hm_ameth.o crypto/hmac/hm_pmeth.o crypto/rc4/rc4_enc.o crypto/rc4/rc4_skey.o crypto/rc4/rc4_utl.o crypto/aes/aes_misc.o crypto/aes/aes_ecb.o crypto/aes/aes_cfb.o crypto/aes/aes_ofb.o crypto/aes/aes_ctr.o crypto/aes/aes_ige.o crypto/aes/aes_wrap.o crypto/aes/aes_core.o crypto/aes/aes_cbc.o crypto/modes/cbc128.o crypto/modes/ctr128.o crypto/modes/cts128.o crypto/modes/cfb128.o crypto/modes/ofb128.o crypto/modes/gcm128.o crypto/modes/ccm128.o crypto/modes/xts128.o crypto/modes/wrap128.o crypto/bn/bn_add.o crypto/bn/bn_div.o crypto/bn/bn_exp.o crypto/bn/bn_lib.o crypto/bn/bn_ctx.o crypto/bn/bn_mul.o crypto/bn/bn_mod.o crypto/bn/bn_print.o crypto/bn/bn_rand.o crypto/bn/bn_shift.o crypto/bn/bn_word.o crypto/bn/bn_blind.o crypto/bn/bn_kron.o crypto/bn/bn_sqrt.o crypto/bn/bn_gcd.o crypto/bn/bn_prime.o crypto/bn/bn_err.o crypto/bn/bn_sqr.o crypto/bn/bn_asm.o crypto/bn/bn_recp.o crypto/bn/bn_mont.o crypto/bn/bn_mpi.o crypto/bn/bn_exp2.o crypto/bn/bn_gf2m.o crypto/bn/bn_nist.o crypto/bn/bn_depr.o crypto/bn/bn_x931p.o crypto/bn/bn_const.o crypto/rsa/rsa_eay.o crypto/rsa/rsa_gen.o crypto/rsa/rsa_lib.o crypto/rsa/rsa_sign.o crypto/rsa/rsa_saos.o crypto/rsa/rsa_err.o crypto/rsa/rsa_pk1.o crypto/rsa/rsa_ssl.o crypto/rsa/rsa_none.o crypto/rsa/rsa_oaep.o crypto/rsa/rsa_chk.o crypto/rsa/rsa_null.o crypto/rsa/rsa_pss.o crypto/rsa/rsa_x931.o crypto/rsa/rsa_asn1.o crypto/rsa/rsa_depr.o crypto/rsa/rsa_ameth.o crypto/rsa/rsa_prn.o crypto/rsa/rsa_pmeth.o crypto/rsa/rsa_crpt.o crypto/dso/dso_dl.o crypto/dso/dso_dlfcn.o crypto/dso/dso_err.o crypto/dso/dso_lib.o crypto/dso/dso_null.o crypto/dso/dso_openssl.o crypto/dso/dso_win32.o crypto/dso/dso_vms.o crypto/dso/dso_beos.o crypto/dh/dh_asn1.o crypto/dh/dh_gen.o crypto/dh/dh_key.o crypto/dh/dh_lib.o crypto/dh/dh_check.o crypto/dh/dh_err.o crypto/dh/dh_depr.o crypto/dh/dh_ameth.o crypto/dh/dh_pmeth.o crypto/dh/dh_prn.o crypto/dh/dh_rfc5114.o crypto/buffer/buffer.o crypto/buffer/buf_str.o crypto/buffer/buf_err.o crypto/bio/bio_lib.o crypto/bio/bio_cb.o crypto/bio/bio_err.o crypto/bio/bss_mem.o crypto/bio/bss_null.o crypto/bio/bss_fd.o crypto/bio/bss_file.o crypto/bio/bss_sock.o crypto/bio/bss_conn.o crypto/bio/bf_null.o crypto/bio/bf_buff.o crypto/bio/b_dump.o crypto/bio/b_print.o crypto/bio/b_sock.o crypto/bio/bss_acpt.o crypto/bio/bf_nbio.o crypto/bio/bss_log.o crypto/bio/bss_bio.o crypto/bio/bss_dgram.o crypto/stack/stack.o crypto/lhash/lhash.o crypto/lhash/lh_stats.o crypto/rand/md_rand.o crypto/rand/randfile.o crypto/rand/rand_lib.o crypto/rand/rand_err.o crypto/rand/rand_unix.o crypto/err/err.o crypto/err/err_all.o crypto/err/err_prn.o crypto/objects/o_names.o crypto/objects/obj_dat.o crypto/objects/obj_lib.o crypto/objects/obj_err.o crypto/objects/obj_xref.o crypto/evp/encode.o crypto/evp/digest.o crypto/evp/evp_enc.o crypto/evp/evp_key.o crypto/evp/evp_acnf.o crypto/evp/evp_cnf.o crypto/evp/e_des.o crypto/evp/e_bf.o crypto/evp/e_idea.o crypto/evp/e_des3.o crypto/evp/e_camellia.o crypto/evp/e_rc4.o crypto/evp/e_aes.o crypto/evp/names.o crypto/evp/e_seed.o crypto/evp/e_xcbc_d.o crypto/evp/e_rc2.o crypto/evp/e_cast.o crypto/evp/e_rc5.o crypto/evp/m_null.o crypto/evp/m_md2.o crypto/evp/m_md4.o crypto/evp/m_md5.o crypto/evp/m_sha.o crypto/evp/m_sha1.o crypto/evp/m_wp.o crypto/evp/m_dss.o crypto/evp/m_dss1.o crypto/evp/m_mdc2.o crypto/evp/m_ripemd.o crypto/evp/m_ecdsa.o crypto/evp/p_open.o crypto/evp/p_seal.o crypto/evp/p_sign.o crypto/evp/p_verify.o crypto/evp/p_lib.o crypto/evp/p_enc.o crypto/evp/p_dec.o crypto/evp/bio_md.o crypto/evp/bio_b64.o crypto/evp/bio_enc.o crypto/evp/evp_err.o crypto/evp/e_null.o crypto/evp/c_all.o crypto/evp/c_allc.o crypto/evp/c_alld.o crypto/evp/evp_lib.o crypto/evp/bio_ok.o crypto/evp/evp_pkey.o crypto/evp/evp_pbe.o crypto/evp/p5_crpt.o crypto/evp/p5_crpt2.o crypto/evp/e_old.o crypto/evp/pmeth_lib.o crypto/evp/pmeth_fn.o crypto/evp/pmeth_gn.o crypto/evp/m_sigver.o crypto/evp/e_aes_cbc_hmac_sha1.o crypto/evp/e_aes_cbc_hmac_sha256.o crypto/evp/e_rc4_hmac_md5.o crypto/asn1/a_object.o crypto/asn1/a_bitstr.o crypto/asn1/a_utctm.o crypto/asn1/a_gentm.o crypto/asn1/a_time.o crypto/asn1/a_int.o crypto/asn1/a_octet.o crypto/asn1/a_print.o crypto/asn1/a_type.o crypto/asn1/a_set.o crypto/asn1/a_dup.o crypto/asn1/a_d2i_fp.o crypto/asn1/a_i2d_fp.o crypto/asn1/a_enum.o crypto/asn1/a_utf8.o crypto/asn1/a_sign.o crypto/asn1/a_digest.o crypto/asn1/a_verify.o crypto/asn1/a_mbstr.o crypto/asn1/a_strex.o crypto/asn1/x_algor.o crypto/asn1/x_val.o crypto/asn1/x_pubkey.o crypto/asn1/x_sig.o crypto/asn1/x_req.o crypto/asn1/x_attrib.o crypto/asn1/x_bignum.o crypto/asn1/x_long.o crypto/asn1/x_name.o crypto/asn1/x_x509.o crypto/asn1/x_x509a.o crypto/asn1/x_crl.o crypto/asn1/x_info.o crypto/asn1/x_spki.o crypto/asn1/nsseq.o crypto/asn1/x_nx509.o crypto/asn1/d2i_pu.o crypto/asn1/d2i_pr.o crypto/asn1/i2d_pu.o crypto/asn1/i2d_pr.o crypto/asn1/t_req.o crypto/asn1/t_x509.o crypto/asn1/t_x509a.o crypto/asn1/t_crl.o crypto/asn1/t_pkey.o crypto/asn1/t_spki.o crypto/asn1/t_bitst.o crypto/asn1/tasn_new.o crypto/asn1/tasn_fre.o crypto/asn1/tasn_enc.o crypto/asn1/tasn_dec.o crypto/asn1/tasn_utl.o crypto/asn1/tasn_typ.o crypto/asn1/tasn_prn.o crypto/asn1/ameth_lib.o crypto/asn1/f_int.o crypto/asn1/f_string.o crypto/asn1/n_pkey.o crypto/asn1/f_enum.o crypto/asn1/x_pkey.o crypto/asn1/a_bool.o crypto/asn1/x_exten.o crypto/asn1/bio_asn1.o crypto/asn1/bio_ndef.o crypto/asn1/asn_mime.o crypto/asn1/asn1_gen.o crypto/asn1/asn1_par.o crypto/asn1/asn1_lib.o crypto/asn1/asn1_err.o crypto/asn1/a_bytes.o crypto/asn1/a_strnid.o crypto/asn1/evp_asn1.o crypto/asn1/asn_pack.o crypto/asn1/p5_pbe.o crypto/asn1/p5_pbev2.o crypto/asn1/p8_pkey.o crypto/asn1/asn_moid.o crypto/pem/pem_sign.o crypto/pem/pem_seal.o crypto/pem/pem_info.o crypto/pem/pem_lib.o crypto/pem/pem_all.o crypto/pem/pem_err.o crypto/pem/pem_x509.o crypto/pem/pem_xaux.o crypto/pem/pem_oth.o crypto/pem/pem_pk8.o crypto/pem/pem_pkey.o crypto/pem/pvkfmt.o crypto/x509/x509_def.o crypto/x509/x509_d2.o crypto/x509/x509_r2x.o crypto/x509/x509_cmp.o crypto/x509/x509_obj.o crypto/x509/x509_req.o crypto/x509/x509spki.o crypto/x509/x509_vfy.o crypto/x509/x509_set.o crypto/x509/x509cset.o crypto/x509/x509rset.o crypto/x509/x509_err.o crypto/x509/x509name.o crypto/x509/x509_v3.o crypto/x509/x509_ext.o crypto/x509/x509_att.o crypto/x509/x509type.o crypto/x509/x509_lu.o crypto/x509/x_all.o crypto/x509/x509_txt.o crypto/x509/x509_trs.o crypto/x509/x509_vpm.o crypto/x509v3/v3_bcons.o crypto/x509v3/v3_bitst.o crypto/x509v3/v3_conf.o crypto/x509v3/v3_extku.o crypto/x509v3/v3_ia5.o crypto/x509v3/v3_lib.o crypto/x509v3/v3_prn.o crypto/x509v3/v3_utl.o crypto/x509v3/v3err.o crypto/x509v3/v3_genn.o crypto/x509v3/v3_alt.o crypto/x509v3/v3_skey.o crypto/x509v3/v3_akey.o crypto/x509v3/v3_pku.o crypto/x509v3/v3_int.o crypto/x509v3/v3_enum.o crypto/x509v3/v3_sxnet.o crypto/x509v3/v3_cpols.o crypto/x509v3/v3_crld.o crypto/x509v3/v3_purp.o crypto/x509v3/v3_info.o crypto/x509v3/v3_ocsp.o crypto/x509v3/v3_akeya.o crypto/x509v3/v3_pmaps.o crypto/x509v3/v3_pcons.o crypto/x509v3/v3_ncons.o crypto/x509v3/v3_pcia.o crypto/x509v3/v3_pci.o crypto/x509v3/pcy_cache.o crypto/x509v3/pcy_node.o crypto/x509v3/pcy_data.o crypto/x509v3/pcy_map.o crypto/x509v3/pcy_tree.o crypto/x509v3/pcy_lib.o crypto/x509v3/v3_asid.o crypto/x509v3/v3_addr.o crypto/conf/conf_err.o crypto/conf/conf_lib.o crypto/conf/conf_api.o crypto/conf/conf_def.o crypto/conf/conf_mod.o crypto/conf/conf_mall.o crypto/conf/conf_sap.o crypto/txt_db/txt_db.o crypto/pkcs7/pk7_asn1.o crypto/pkcs7/pk7_lib.o crypto/pkcs7/pkcs7err.o crypto/pkcs7/pk7_doit.o crypto/pkcs7/pk7_smime.o crypto/pkcs7/pk7_attr.o crypto/pkcs7/pk7_mime.o crypto/pkcs7/bio_pk7.o crypto/pkcs12/p12_add.o crypto/pkcs12/p12_asn.o crypto/pkcs12/p12_attr.o crypto/pkcs12/p12_crpt.o crypto/pkcs12/p12_crt.o crypto/pkcs12/p12_decr.o crypto/pkcs12/p12_init.o crypto/pkcs12/p12_key.o crypto/pkcs12/p12_kiss.o crypto/pkcs12/p12_mutl.o crypto/pkcs12/p12_utl.o crypto/pkcs12/p12_npas.o crypto/pkcs12/pk12err.o crypto/pkcs12/p12_p8d.o crypto/pkcs12/p12_p8e.o crypto/comp/comp_lib.o crypto/comp/comp_err.o crypto/comp/c_rle.o crypto/comp/c_zlib.o crypto/ocsp/ocsp_asn.o crypto/ocsp/ocsp_ext.o crypto/ocsp/ocsp_ht.o crypto/ocsp/ocsp_lib.o crypto/ocsp/ocsp_cl.o crypto/ocsp/ocsp_srv.o crypto/ocsp/ocsp_prn.o crypto/ocsp/ocsp_vfy.o crypto/ocsp/ocsp_err.o crypto/cmac/cmac.o crypto/cmac/cm_ameth.o crypto/cmac/cm_pmeth.o
make[1]: Leaving directory '/ts/ports/components/shim/work/src/shim-15/Cryptlib/OpenSSL'
if [ ! -d lib ]; then mkdir lib ; fi
make VPATH=/ts/ports/components/shim/work/src/shim-15/lib TOPDIR=/ts/ports/components/shim/work/src/shim-15 CFLAGS="-ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\"" -C lib -f /ts/ports/components/shim/work/src/shim-15/lib/Makefile lib.a
make[1]: Entering directory '/ts/ports/components/shim/work/src/shim-15/lib'
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o simple_file.o simple_file.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o guid.o guid.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o console.o console.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o execute.o execute.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o configtable.o configtable.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o shell.o shell.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o variables.o variables.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include -DDEFAULT_LOADER=L"loader.efi" -DDEFAULT_LOADER_CHAR="loader.efi" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 -DEFI_ARCH=L"x64" -DDEBUGDIR=L"/usr/lib/debug/usr/share/shim/x64-15/" -DVENDOR_CERT_FILE="/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer" -c -o security_policy.o security_policy.c
ar rcs lib.a simple_file.o guid.o console.o execute.o configtable.o shell.o variables.o security_policy.o
make[1]: Leaving directory '/ts/ports/components/shim/work/src/shim-15/lib'
ld -o shimx64.so --hash-style=sysv -nostdlib -znocombreloc -T /ts/ports/components/shim/work/src/shim-15/elf_x86_64_efi.lds -shared -Bsymbolic -L/usr/lib -L/usr/lib64 -LCryptlib -LCryptlib/OpenSSL /usr/lib/crt0-efi-x86_64.o --build-id=sha1 --no-undefined shim.o mok.o netboot.o cert.o replacements.o tpm.o version.o errlog.o httpboot.o Cryptlib/libcryptlib.a Cryptlib/OpenSSL/libopenssl.a lib/lib.a -lefi -lgnuefi --start-group Cryptlib/libcryptlib.a Cryptlib/OpenSSL/libopenssl.a --end-group /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/libgcc.a
objcopy -j .text -j .sdata -j .data -j .data.ident \
-j .dynamic -j .dynsym -j .rel* \
-j .rela* -j .reloc -j .eh_frame \
-j .vendor_cert \
--target efi-app-x86_64 shimx64.so shimx64.efi
objcopy -j .text -j .sdata -j .data \
-j .dynamic -j .dynsym -j .rel* \
-j .rela* -j .reloc -j .eh_frame \
-j .debug_info -j .debug_abbrev -j .debug_aranges \
-j .debug_line -j .debug_str -j .debug_ranges \
-j .note.gnu.build-id \
shimx64.so shimx64.efi.debug
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o MokManager.o MokManager.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o PasswordCrypt.o PasswordCrypt.c
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o crypt_blowfish.o crypt_blowfish.c
ld -o mmx64.so --hash-style=sysv -nostdlib -znocombreloc -T /ts/ports/components/shim/work/src/shim-15/elf_x86_64_efi.lds -shared -Bsymbolic -L/usr/lib -L/usr/lib64 -LCryptlib -LCryptlib/OpenSSL /usr/lib/crt0-efi-x86_64.o --build-id=sha1 --no-undefined MokManager.o PasswordCrypt.o crypt_blowfish.o Cryptlib/libcryptlib.a Cryptlib/OpenSSL/libopenssl.a lib/lib.a -lefi -lgnuefi --start-group Cryptlib/libcryptlib.a Cryptlib/OpenSSL/libopenssl.a --end-group /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/libgcc.a lib/lib.a
objcopy -j .text -j .sdata -j .data \
-j .dynamic -j .dynsym -j .rel* \
-j .rela* -j .reloc -j .eh_frame \
-j .debug_info -j .debug_abbrev -j .debug_aranges \
-j .debug_line -j .debug_str -j .debug_ranges \
-j .note.gnu.build-id \
mmx64.so mmx64.efi.debug
gcc -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic -fshort-wchar -Wall -Wsign-compare -Werror -fno-builtin -Werror=sign-compare -ffreestanding -std=gnu89 -I/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/include "-DDEFAULT_LOADER=L\"loader.efi\"" "-DDEFAULT_LOADER_CHAR=\"loader.efi\"" -nostdinc -I/ts/ports/components/shim/work/src/shim-15/Cryptlib -I/ts/ports/components/shim/work/src/shim-15/Cryptlib/Include -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I/ts/ports/components/shim/work/src/shim-15/include -iquote /ts/ports/components/shim/work/src/shim-15 -iquote /ts/ports/components/shim/work/src/shim-15 -DENABLE_HTTPBOOT -mno-mmx -mno-sse -mno-red-zone -nostdinc -maccumulate-outgoing-args -m64 -DEFI_FUNCTION_WRAPPER -DGNU_EFI_USE_MS_ABI -DNO_BUILTIN_VA_FUNCS -DMDE_CPU_X64 -DPAGE_SIZE=4096 "-DEFI_ARCH=L\"x64\"" "-DDEBUGDIR=L\"/usr/lib/debug/usr/share/shim/x64-15/\"" -DVENDOR_CERT_FILE=\"/ts/ports/components/shim/work/src/ThinStation-UEFI-CA.cer\" -c -o fallback.o fallback.c
ld -o fbx64.so --hash-style=sysv -nostdlib -znocombreloc -T /ts/ports/components/shim/work/src/shim-15/elf_x86_64_efi.lds -shared -Bsymbolic -L/usr/lib -L/usr/lib64 -LCryptlib -LCryptlib/OpenSSL /usr/lib/crt0-efi-x86_64.o --build-id=sha1 --no-undefined fallback.o tpm.o errlog.o Cryptlib/libcryptlib.a Cryptlib/OpenSSL/libopenssl.a lib/lib.a -lefi -lgnuefi --start-group Cryptlib/libcryptlib.a Cryptlib/OpenSSL/libopenssl.a --end-group /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/libgcc.a
objcopy -j .text -j .sdata -j .data \
-j .dynamic -j .dynsym -j .rel* \
-j .rela* -j .reloc -j .eh_frame \
-j .debug_info -j .debug_abbrev -j .debug_aranges \
-j .debug_line -j .debug_str -j .debug_ranges \
-j .note.gnu.build-id \
fbx64.so fbx64.efi.debug
objcopy -j .text -j .sdata -j .data -j .data.ident \
-j .dynamic -j .dynsym -j .rel* \
-j .rela* -j .reloc -j .eh_frame \
-j .vendor_cert \
--target efi-app-x86_64 mmx64.so mmx64.efi
objcopy -j .text -j .sdata -j .data -j .data.ident \
-j .dynamic -j .dynsym -j .rel* \
-j .rela* -j .reloc -j .eh_frame \
-j .vendor_cert \
--target efi-app-x86_64 fbx64.so fbx64.efi
+ make EFIDIR=ThinStation DESTDIR=/ts/ports/components/shim/work/pkg install
gcc -Og -g3 -Wall -Werror -Wextra -o buildid /ts/ports/components/shim/work/src/shim-15/buildid.c -lelf
Making BOOTX64.CSV
install -d -m 0755 /ts/ports/components/shim/work/pkg/
install -d -m 0755 /ts/ports/components/shim/work/pkg//usr/lib/debug/boot/efi/EFI/ThinStation//
install -d -m 0755 /ts/ports/components/shim/work/pkg//usr/src/debug//shim-15
find /ts/ports/components/shim/work/src/shim-15 -type f -a '(' -iname '*.c' -o -iname '*.h' -o -iname '*.S' ')' | while read file ; do \
outfile=$(echo ${file} | sed -e "s,^/ts/ports/components/shim/work/src/shim-15,,") ; \
install -d -m 0755 /ts/ports/components/shim/work/pkg//usr/src/debug//shim-15/$(dirname ${outfile}) ; \
install -m 0644 ${file} /ts/ports/components/shim/work/pkg//usr/src/debug//shim-15/${outfile} ; \
done
install -d -m 0755 /ts/ports/components/shim/work/pkg/
install -d -m 0700 /ts/ports/components/shim/work/pkg/boot/efi/
install -d -m 0755 /ts/ports/components/shim/work/pkg/boot/efi/EFI/BOOT/
install -d -m 0755 /ts/ports/components/shim/work/pkg/boot/efi/EFI/ThinStation/
install -m 0644 shimx64.efi /ts/ports/components/shim/work/pkg/boot/efi/EFI/BOOT//BOOTX64.EFI
install -m 0644 shimx64.efi /ts/ports/components/shim/work/pkg/boot/efi/EFI/ThinStation//
install -m 0644 BOOTX64.CSV /ts/ports/components/shim/work/pkg/boot/efi/EFI/ThinStation//
install -m 0644 fbx64.efi /ts/ports/components/shim/work/pkg/boot/efi/EFI/BOOT//
install -m 0644 mmx64.efi /ts/ports/components/shim/work/pkg/boot/efi/EFI/BOOT//
install -m 0644 mmx64.efi /ts/ports/components/shim/work/pkg/boot/efi/EFI/ThinStation//
+ make DESTDIR=/ts/ports/components/shim/work/pkg install-as-data
install -d -m 0755 /ts/ports/components/shim/work/pkg//usr/share//shim/15/x64/
install -m 0644 shimx64.efi /ts/ports/components/shim/work/pkg//usr/share//shim/15/x64//
install -m 0644 mmx64.efi /ts/ports/components/shim/work/pkg//usr/share//shim/15/x64//mmx64.efi
install -m 0644 fbx64.efi /ts/ports/components/shim/work/pkg//usr/share//shim/15/x64//fbx64.efi
+ install -D -m644 COPYRIGHT /ts/ports/components/shim/work/pkg/usr/share/licenses/shim/LICENSE
+ '[' -e /mnt/Certs/thinstation/TS-SB-UEFI/UEFI.pem ']'
+ '[' -e /mnt/Certs/thinstation/TS-UEFI/UEFI.pem ']'
+ for efi in boot/efi/EFI/ThinStation/mmx64.efi
+ sbsign --key /mnt/Certs/thinstation/TS-UEFI/UEFI.pem --cert /mnt/Certs/thinstation/TS-UEFI/UEFI.pem --output /ts/ports/components/shim/work/pkg/boot/efi/EFI/ThinStation/mmx64.efi /ts/ports/components/shim/work/pkg/boot/efi/EFI/ThinStation/mmx64.efi
warning: data remaining[1029632 vs 1153551]: gaps between PE/COFF sections?
warning: data remaining[1029632 vs 1153552]: gaps between PE/COFF sections?
Signing Unsigned original image
+ sha256sum /ts/ports/components/shim/work/pkg/usr/share/shim/15/x64/shimx64.efi
d001cbf8128378ac2311bfefca9eaf813b72ab2b7711e99785791d998ffd2d86 /ts/ports/components/shim/work/pkg/usr/share/shim/15/x64/shimx64.efi
=======> Build result:
drwxr-xr-x 0 root root 0 May 20 03:09 boot/
drwx------ 0 root root 0 May 20 03:09 boot/efi/
drwxr-xr-x 0 root root 0 May 20 03:09 boot/efi/EFI/
drwxr-xr-x 0 root root 0 May 20 03:09 boot/efi/EFI/BOOT/
drwxr-xr-x 0 root root 0 May 20 03:09 boot/efi/EFI/ThinStation/
-rw-r--r-- 0 root root 1155448 May 20 03:09 boot/efi/EFI/ThinStation/mmx64.efi
-rw-r--r-- 0 root root 1198487 May 20 03:09 boot/efi/EFI/ThinStation/shimx64.efi
-rw-r--r-- 0 root root 128 May 20 03:09 boot/efi/EFI/ThinStation/BOOTX64.CSV
-rw-r--r-- 0 root root 1153551 May 20 03:09 boot/efi/EFI/BOOT/mmx64.efi
-rw-r--r-- 0 root root 1198487 May 20 03:09 boot/efi/EFI/BOOT/BOOTX64.EFI
-rw-r--r-- 0 root root 354314 May 20 03:09 boot/efi/EFI/BOOT/fbx64.efi
drwxr-xr-x 0 root root 0 May 20 03:09 usr/
drwxr-xr-x 0 root root 0 May 20 03:09 usr/share/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/boot/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/boot/efi/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/boot/efi/EFI/
drwxr-xr-x 0 root root 0 May 20 03:09 usr/lib/debug/boot/efi/EFI/ThinStation/
-rw-r--r-- 0 root root 351880 May 20 03:09 usr/lib/debug/boot/efi/EFI/ThinStation/fbx64.efi.debug
-rw-r--r-- 0 root root 1110040 May 20 03:09 usr/lib/debug/boot/efi/EFI/ThinStation/shimx64.efi.debug
-rw-r--r-- 0 root root 1071400 May 20 03:09 usr/lib/debug/boot/efi/EFI/ThinStation/mmx64.efi.debug
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/aa/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/b7/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/ef/
lrwxrwxrwx 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/ef/d37811eff4d7d04e0d7631d67a565d6e0d4d42 -> ../../../.build-id/ef/d37811eff4d7d04e0d7631d67a565d6e0d4d42
lrwxrwxrwx 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/ef/d37811eff4d7d04e0d7631d67a565d6e0d4d42.debug -> ../../../../../usr/lib/debug/boot/efi/EFI/ThinStation/shimx64.efi.debug
lrwxrwxrwx 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/b7/9863f1f11ac9950e8d00acecb44354bf7f97ef -> ../../../.build-id/b7/9863f1f11ac9950e8d00acecb44354bf7f97ef
lrwxrwxrwx 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/b7/9863f1f11ac9950e8d00acecb44354bf7f97ef.debug -> ../../../../../usr/lib/debug/boot/efi/EFI/ThinStation/mmx64.efi.debug
lrwxrwxrwx 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/aa/c5d6b8b0253a1fb667171c1eeedec97aa31d6a.debug -> ../../../../../usr/lib/debug/boot/efi/EFI/ThinStation/fbx64.efi.debug
lrwxrwxrwx 0 root root 0 May 20 03:08 usr/lib/debug/.build-id/aa/c5d6b8b0253a1fb667171c1eeedec97aa31d6a -> ../../../.build-id/aa/c5d6b8b0253a1fb667171c1eeedec97aa31d6a
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/
drwxr-xr-x 0 root root 0 May 20 03:09 usr/src/debug/shim-15/
-rw-r--r-- 0 root root 3574 May 20 03:08 usr/src/debug/shim-15/model.c
-rw-r--r-- 0 root root 279 May 20 03:08 usr/src/debug/shim-15/version.c
-rw-r--r-- 0 root root 7262 May 20 03:08 usr/src/debug/shim-15/replacements.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/
-rw-r--r-- 0 root root 1598 May 20 03:09 usr/src/debug/shim-15/errlog.c
drwxr-xr-x 0 root root 0 May 20 03:09 usr/src/debug/shim-15/include/
-rw-r--r-- 0 root root 3740 May 20 03:09 usr/src/debug/shim-15/buildid.c
-rw-r--r-- 0 root root 8574 May 20 03:09 usr/src/debug/shim-15/mok.c
-rw-r--r-- 0 root root 4667 May 20 03:09 usr/src/debug/shim-15/shim.h
-rw-r--r-- 0 root root 8833 May 20 03:09 usr/src/debug/shim-15/netboot.c
-rw-r--r-- 0 root root 10499 May 20 03:09 usr/src/debug/shim-15/tpm.c
-rw-r--r-- 0 root root 30224 May 20 03:09 usr/src/debug/shim-15/crypt_blowfish.c
-rw-r--r-- 0 root root 71475 May 20 03:09 usr/src/debug/shim-15/shim.c
-rw-r--r-- 0 root root 127 May 20 03:09 usr/src/debug/shim-15/version.h
-rw-r--r-- 0 root root 1454 May 20 03:09 usr/src/debug/shim-15/cert.S
-rw-r--r-- 0 root root 61045 May 20 03:09 usr/src/debug/shim-15/MokManager.c
drwxr-xr-x 0 root root 0 May 20 03:09 usr/src/debug/shim-15/lib/
-rw-r--r-- 0 root root 19264 May 20 03:09 usr/src/debug/shim-15/httpboot.c
-rw-r--r-- 0 root root 26583 May 20 03:09 usr/src/debug/shim-15/fallback.c
-rw-r--r-- 0 root root 7642 May 20 03:09 usr/src/debug/shim-15/PasswordCrypt.c
-rw-r--r-- 0 root root 4731 May 20 03:09 usr/src/debug/shim-15/lib/configtable.c
-rw-r--r-- 0 root root 1182 May 20 03:09 usr/src/debug/shim-15/lib/shell.c
-rw-r--r-- 0 root root 9086 May 20 03:09 usr/src/debug/shim-15/lib/security_policy.c
-rw-r--r-- 0 root root 3259 May 20 03:09 usr/src/debug/shim-15/lib/guid.c
-rw-r--r-- 0 root root 8836 May 20 03:09 usr/src/debug/shim-15/lib/variables.c
-rw-r--r-- 0 root root 11107 May 20 03:09 usr/src/debug/shim-15/lib/simple_file.c
-rw-r--r-- 0 root root 3253 May 20 03:09 usr/src/debug/shim-15/lib/execute.c
-rw-r--r-- 0 root root 12660 May 20 03:09 usr/src/debug/shim-15/lib/console.c
-rw-r--r-- 0 root root 1731 May 20 03:09 usr/src/debug/shim-15/include/httpboot.h
-rw-r--r-- 0 root root 136 May 20 03:09 usr/src/debug/shim-15/include/shell.h
-rw-r--r-- 0 root root 818 May 20 03:09 usr/src/debug/shim-15/include/crypt_blowfish.h
-rw-r--r-- 0 root root 2544 May 20 03:09 usr/src/debug/shim-15/include/configtable.h
-rw-r--r-- 0 root root 1038 May 20 03:09 usr/src/debug/shim-15/include/str.h
-rw-r--r-- 0 root root 6534 May 20 03:09 usr/src/debug/shim-15/include/tpm.h
-rw-r--r-- 0 root root 15405 May 20 03:09 usr/src/debug/shim-15/include/Ip6Config.h
-rw-r--r-- 0 root root 6402 May 20 03:09 usr/src/debug/shim-15/include/efiauthenticated.h
-rw-r--r-- 0 root root 27067 May 20 03:09 usr/src/debug/shim-15/include/PeImage.h
-rw-r--r-- 0 root root 581 May 20 03:09 usr/src/debug/shim-15/include/PasswordCrypt.h
-rw-r--r-- 0 root root 960 May 20 03:09 usr/src/debug/shim-15/include/wincert.h
-rw-r--r-- 0 root root 252 May 20 03:09 usr/src/debug/shim-15/include/execute.h
-rw-r--r-- 0 root root 13812 May 20 03:09 usr/src/debug/shim-15/include/Ip4Config2.h
-rw-r--r-- 0 root root 2066 May 20 03:09 usr/src/debug/shim-15/include/variables.h
-rw-r--r-- 0 root root 285 May 20 03:09 usr/src/debug/shim-15/include/netboot.h
-rw-r--r-- 0 root root 877 May 20 03:09 usr/src/debug/shim-15/include/simple_file.h
-rw-r--r-- 0 root root 3466 May 20 03:09 usr/src/debug/shim-15/include/ucs2.h
-rw-r--r-- 0 root root 19789 May 20 03:09 usr/src/debug/shim-15/include/Http.h
-rw-r--r-- 0 root root 2019 May 20 03:09 usr/src/debug/shim-15/include/hexdump.h
-rw-r--r-- 0 root root 2682 May 20 03:09 usr/src/debug/shim-15/include/console.h
-rw-r--r-- 0 root root 1212 May 20 03:09 usr/src/debug/shim-15/include/guid.h
-rw-r--r-- 0 root root 411 May 20 03:09 usr/src/debug/shim-15/include/security_policy.h
-rw-r--r-- 0 root root 1977 May 20 03:09 usr/src/debug/shim-15/include/replacements.h
-rw-r--r-- 0 root root 259 May 20 03:09 usr/src/debug/shim-15/include/errors.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Cipher/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Pem/
-rw-r--r-- 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Base.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/SysCall/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Include/
-rw-r--r-- 0 root root 998 May 20 03:08 usr/src/debug/shim-15/Cryptlib/InternalCryptLib.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Hash/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Library/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Pk/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Hmac/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/Rand/
drwxr-xr-x 0 root root 0 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/
-rw-r--r-- 0 root root 25349 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/e_os.h
-rw-r--r-- 0 root root 75 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/buildinf.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/dso/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/txt_db/
-rw-r--r-- 0 root root 3177 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/mem_clr.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/rsa/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/buffer/
-rw-r--r-- 0 root root 3041 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_str.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/comp/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/modes/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/x509v3/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/err/
-rw-r--r-- 0 root root 1655 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/LPdir_nyi.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/aes/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pkcs7/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/stack/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/sha/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/x509/
-rw-r--r-- 0 root root 4054 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_str.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/rand/
-rw-r--r-- 0 root root 3271 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_init.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/dh/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/md5/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pkcs12/
-rw-r--r-- 0 root root 3072 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_time.h
-rw-r--r-- 0 root root 3214 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/uid.c
-rw-r--r-- 0 root root 14799 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/mem.c
-rw-r--r-- 0 root root 2105 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_dir.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/lhash/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/ocsp/
-rw-r--r-- 0 root root 3425 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_dir.c
-rw-r--r-- 0 root root 7658 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/constant_time_locl.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/cmac/
-rw-r--r-- 0 root root 15745 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_time.c
-rw-r--r-- 0 root root 16404 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/md32_common.h
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/
-rw-r--r-- 0 root root 4163 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/cversion.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/
-rw-r--r-- 0 root root 23126 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/ex_data.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/
-rw-r--r-- 0 root root 4297 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/cpt_err.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/rc4/
-rw-r--r-- 0 root root 3484 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/o_fips.c
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/hmac/
drwxr-xr-x 0 root root 0 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/
-rw-r--r-- 0 root root 32431 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/cryptlib.c
-rw-r--r-- 0 root root 4542 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/cryptlib.h
-rw-r--r-- 0 root root 26876 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/mem_dbg.c
-rw-r--r-- 0 root root 119 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/fips_ers.c
-rw-r--r-- 0 root root 11669 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/ebcdic.c
drwxr-xr-x 0 root root 0 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/
-rw-r--r-- 0 root root 30521 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_asm.c
-rw-r--r-- 0 root root 17408 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_mont.c
-rw-r--r-- 0 root root 39892 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_nist.c
-rw-r--r-- 0 root root 10389 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_mod.c
-rw-r--r-- 0 root root 15459 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_div.c
-rw-r--r-- 0 root root 6933 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_err.c
-rw-r--r-- 0 root root 11461 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_exp2.c
-rw-r--r-- 0 root root 13117 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_ctx.c
-rw-r--r-- 0 root root 11899 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_sqrt.c
-rw-r--r-- 0 root root 6609 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_shift.c
-rw-r--r-- 0 root root 33464 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_mul.c
-rw-r--r-- 0 root root 22202 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_gcd.c
-rw-r--r-- 0 root root 10346 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_rand.c
-rw-r--r-- 0 root root 4314 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_depr.c
-rw-r--r-- 0 root root 8215 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_add.c
-rw-r--r-- 0 root root 23630 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_lib.c
-rw-r--r-- 0 root root 26609 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_const.c
-rw-r--r-- 0 root root 12782 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_blind.c
-rw-r--r-- 0 root root 17349 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_prime.h
-rw-r--r-- 0 root root 7322 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_word.c
-rw-r--r-- 0 root root 48845 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_exp.c
-rw-r--r-- 0 root root 41334 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn.h
-rw-r--r-- 0 root root 16501 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_prime.c
-rw-r--r-- 0 root root 7739 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_x931p.c
-rw-r--r-- 0 root root 34994 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_gf2m.c
-rw-r--r-- 0 root root 4657 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_mpi.c
-rw-r--r-- 0 root root 5610 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_kron.c
-rw-r--r-- 0 root root 8542 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_sqr.c
-rw-r--r-- 0 root root 4048 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/rsaz_exp.h
-rw-r--r-- 0 root root 7572 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_recp.c
-rw-r--r-- 0 root root 21009 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_lcl.h
-rw-r--r-- 0 root root 11056 May 20 03:09 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bn/bn_print.c
-rw-r--r-- 0 root root 9930 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/o_names.c
-rw-r--r-- 0 root root 267234 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/obj_dat.h
-rw-r--r-- 0 root root 3927 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/obj_err.c
-rw-r--r-- 0 root root 21797 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/obj_dat.c
-rw-r--r-- 0 root root 3712 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/obj_xref.h
-rw-r--r-- 0 root root 6597 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/obj_xref.c
-rw-r--r-- 0 root root 5132 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/objects/obj_lib.c
-rw-r--r-- 0 root root 4925 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/hmac/hm_ameth.c
-rw-r--r-- 0 root root 7252 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/hmac/hm_pmeth.c
-rw-r--r-- 0 root root 8861 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/hmac/hmac.c
-rw-r--r-- 0 root root 117 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/rc4/rc4_locl.h
-rw-r--r-- 0 root root 2732 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/rc4/rc4_utl.c
-rw-r--r-- 0 root root 4517 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/rc4/rc4_skey.c
-rw-r--r-- 0 root root 13178 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/rc4/rc4_enc.c
-rw-r--r-- 0 root root 5186 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_req.c
-rw-r--r-- 0 root root 12573 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_sign.c
-rw-r--r-- 0 root root 16970 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/t_x509.c
-rw-r--r-- 0 root root 11898 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/n_pkey.c
-rw-r--r-- 0 root root 3946 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_spki.c
-rw-r--r-- 0 root root 5565 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/tasn_typ.c
-rw-r--r-- 0 root root 5102 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_algor.c
-rw-r--r-- 0 root root 9435 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_d2i_fp.c
-rw-r--r-- 0 root root 6573 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/d2i_pr.c
-rw-r--r-- 0 root root 19150 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn1_err.c
-rw-r--r-- 0 root root 6384 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_x509a.c
-rw-r--r-- 0 root root 3981 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/i2d_pu.c
-rw-r--r-- 0 root root 10126 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_gentm.c
-rw-r--r-- 0 root root 24997 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn1_gen.c
-rw-r--r-- 0 root root 12982 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn1_lib.c
-rw-r--r-- 0 root root 8876 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_utf8.c
-rw-r--r-- 0 root root 8503 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_set.c
-rw-r--r-- 0 root root 5571 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/p8_pkey.c
-rw-r--r-- 0 root root 9734 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_x509.c
-rw-r--r-- 0 root root 4406 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_dup.c
-rw-r--r-- 0 root root 17528 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/tasn_prn.c
-rw-r--r-- 0 root root 13634 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/bio_asn1.c
-rw-r--r-- 0 root root 4250 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_bool.c
-rw-r--r-- 0 root root 8447 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_bitstr.c
-rw-r--r-- 0 root root 4897 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn_moid.c
-rw-r--r-- 0 root root 3950 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/t_bitst.c
-rw-r--r-- 0 root root 5627 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_type.c
-rw-r--r-- 0 root root 16984 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_crl.c
-rw-r--r-- 0 root root 10762 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/tasn_new.c
-rw-r--r-- 0 root root 7337 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/f_string.c
-rw-r--r-- 0 root root 12932 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_mbstr.c
-rw-r--r-- 0 root root 3483 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_val.c
-rw-r--r-- 0 root root 628 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/charmap.h
-rw-r--r-- 0 root root 21267 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/tasn_enc.c
-rw-r--r-- 0 root root 5123 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_attrib.c
-rw-r--r-- 0 root root 6100 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_enum.c
-rw-r--r-- 0 root root 4162 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/t_spki.c
-rw-r--r-- 0 root root 4392 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_info.c
-rw-r--r-- 0 root root 4485 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/t_x509a.c
-rw-r--r-- 0 root root 6804 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/evp_asn1.c
-rw-r--r-- 0 root root 16915 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_name.c
-rw-r--r-- 0 root root 12350 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_object.c
-rw-r--r-- 0 root root 3828 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/i2d_pr.c
-rw-r--r-- 0 root root 3546 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/nsseq.c
-rw-r--r-- 0 root root 7079 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_time.c
-rw-r--r-- 0 root root 5762 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_pkey.c
-rw-r--r-- 0 root root 3686 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_octet.c
-rw-r--r-- 0 root root 7522 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/bio_ndef.c
-rw-r--r-- 0 root root 7425 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/f_int.c
-rw-r--r-- 0 root root 7180 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/f_enum.c
-rw-r--r-- 0 root root 4943 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_print.c
-rw-r--r-- 0 root root 7814 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/tasn_fre.c
-rw-r--r-- 0 root root 5948 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn1_locl.h
-rw-r--r-- 0 root root 15821 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/ameth_lib.c
-rw-r--r-- 0 root root 13859 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_int.c
-rw-r--r-- 0 root root 7936 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_verify.c
-rw-r--r-- 0 root root 6579 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn_pack.c
-rw-r--r-- 0 root root 5140 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_i2d_fp.c
-rw-r--r-- 0 root root 10462 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_strnid.c
-rw-r--r-- 0 root root 29334 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn_mime.c
-rw-r--r-- 0 root root 9512 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/t_req.c
-rw-r--r-- 0 root root 39984 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/tasn_dec.c
-rw-r--r-- 0 root root 3099 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_nx509.c
-rw-r--r-- 0 root root 10519 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_pubkey.c
-rw-r--r-- 0 root root 15767 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/asn1_par.c
-rw-r--r-- 0 root root 4674 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/t_pkey.c
-rw-r--r-- 0 root root 8323 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/tasn_utl.c
-rw-r--r-- 0 root root 10127 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_bytes.c
-rw-r--r-- 0 root root 4279 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_digest.c
-rw-r--r-- 0 root root 5248 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/d2i_pu.c
-rw-r--r-- 0 root root 4871 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/t_crl.c
-rw-r--r-- 0 root root 4951 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/p5_pbe.c
-rw-r--r-- 0 root root 10490 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_utctm.c
-rw-r--r-- 0 root root 8644 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/p5_pbev2.c
-rw-r--r-- 0 root root 3421 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_exten.c
-rw-r--r-- 0 root root 19137 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/a_strex.c
-rw-r--r-- 0 root root 5488 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_bignum.c
-rw-r--r-- 0 root root 6378 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_long.c
-rw-r--r-- 0 root root 3486 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/asn1/x_sig.c
-rw-r--r-- 0 root root 5788 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_err.c
-rw-r--r-- 0 root root 10326 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_lib.c
-rw-r--r-- 0 root root 16030 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_mod.c
-rw-r--r-- 0 root root 3203 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_mall.c
-rw-r--r-- 0 root root 9709 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_api.c
-rw-r--r-- 0 root root 3771 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_sap.c
-rw-r--r-- 0 root root 10322 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_def.h
-rw-r--r-- 0 root root 20145 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/conf/conf_def.c
-rw-r--r-- 0 root root 986 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bio_lcl.h
-rw-r--r-- 0 root root 7068 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bf_nbio.c
-rw-r--r-- 0 root root 4872 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_null.c
-rw-r--r-- 0 root root 62997 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_dgram.c
-rw-r--r-- 0 root root 12719 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_acpt.c
-rw-r--r-- 0 root root 7281 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/b_dump.c
-rw-r--r-- 0 root root 15741 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_file.c
-rw-r--r-- 0 root root 8815 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_mem.c
-rw-r--r-- 0 root root 7110 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bio_err.c
-rw-r--r-- 0 root root 28830 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/b_sock.c
-rw-r--r-- 0 root root 8568 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_fd.c
-rw-r--r-- 0 root root 14950 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bio_lib.c
-rw-r--r-- 0 root root 21903 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_bio.c
-rw-r--r-- 0 root root 11800 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_log.c
-rw-r--r-- 0 root root 18473 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_conn.c
-rw-r--r-- 0 root root 25554 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/b_print.c
-rw-r--r-- 0 root root 6009 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bio_cb.c
-rw-r--r-- 0 root root 7530 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bss_sock.c
-rw-r--r-- 0 root root 15323 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bf_buff.c
-rw-r--r-- 0 root root 5922 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/bio/bf_null.c
-rw-r--r-- 0 root root 9535 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_pk8.c
-rw-r--r-- 0 root root 3079 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_xaux.c
-rw-r--r-- 0 root root 9630 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_pkey.c
-rw-r--r-- 0 root root 13636 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_info.c
-rw-r--r-- 0 root root 4197 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_sign.c
-rw-r--r-- 0 root root 2959 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_x509.c
-rw-r--r-- 0 root root 14874 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_all.c
-rw-r--r-- 0 root root 6551 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_seal.c
-rw-r--r-- 0 root root 3925 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_oth.c
-rw-r--r-- 0 root root 7786 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_err.c
-rw-r--r-- 0 root root 25312 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pvkfmt.c
-rw-r--r-- 0 root root 25275 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/pem/pem_lib.c
-rw-r--r-- 0 root root 33648 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_aes_cbc_hmac_sha1.c
-rw-r--r-- 0 root root 7383 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/names.c
-rw-r--r-- 0 root root 5178 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_xcbc_d.c
-rw-r--r-- 0 root root 72489 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_aes.c
-rw-r--r-- 0 root root 6946 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_key.c
-rw-r--r-- 0 root root 10099 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_lib.c
-rw-r--r-- 0 root root 4013 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_dss1.c
-rw-r--r-- 0 root root 33290 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_aes_cbc_hmac_sha256.c
-rw-r--r-- 0 root root 7131 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_sigver.c
-rw-r--r-- 0 root root 4825 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/p_verify.c
-rw-r--r-- 0 root root 4852 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_old.c
-rw-r--r-- 0 root root 7755 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_rc2.c
-rw-r--r-- 0 root root 4019 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_md2.c
-rw-r--r-- 0 root root 4028 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_bf.c
-rw-r--r-- 0 root root 9518 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/c_allc.c
-rw-r--r-- 0 root root 18185 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/pmeth_lib.c
-rw-r--r-- 0 root root 6817 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_sha1.c
-rw-r--r-- 0 root root 14307 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/digest.c
-rw-r--r-- 0 root root 4803 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/p_open.c
-rw-r--r-- 0 root root 20149 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_enc.c
-rw-r--r-- 0 root root 12293 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/pmeth_fn.c
-rw-r--r-- 0 root root 17385 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_des3.c
-rw-r--r-- 0 root root 6745 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/pmeth_gn.c
-rw-r--r-- 0 root root 18296 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/bio_b64.c
-rw-r--r-- 0 root root 4411 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_cnf.c
-rw-r--r-- 0 root root 3769 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_null.c
-rw-r--r-- 0 root root 3737 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/c_all.c
-rw-r--r-- 0 root root 4964 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_idea.c
-rw-r--r-- 0 root root 13382 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_err.c
-rw-r--r-- 0 root root 9896 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_des.c
-rw-r--r-- 0 root root 14324 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/encode.c
-rw-r--r-- 0 root root 5320 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/p5_crpt.c
-rw-r--r-- 0 root root 3873 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/p_enc.c
-rw-r--r-- 0 root root 4942 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_rc5.c
-rw-r--r-- 0 root root 3046 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_acnf.c
-rw-r--r-- 0 root root 4093 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_cast.c
-rw-r--r-- 0 root root 4065 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_mdc2.c
-rw-r--r-- 0 root root 6606 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_ecdsa.c
-rw-r--r-- 0 root root 4043 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_md5.c
-rw-r--r-- 0 root root 4828 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_rc4.c
-rw-r--r-- 0 root root 4008 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_dss.c
-rw-r--r-- 0 root root 3430 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_seed.c
-rw-r--r-- 0 root root 15910 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_locl.h
-rw-r--r-- 0 root root 4052 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_sha.c
-rw-r--r-- 0 root root 4191 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/e_null.c
-rw-r--r-- 0 root root 4044 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_md4.c
-rw-r--r-- 0 root root 13094 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/bio_enc.c
-rw-r--r-- 0 root root 873 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/m_wp.c
-rw-r--r-- 0 root root 7172 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_pkey.c
-rw-r--r-- 0 root root 9959 May 20 03:08 usr/src/debug/shim-15/Cryptlib/OpenSSL/crypto/evp/evp_pbe.c