forked from daos-stack/daos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaos_build_log_scons
3150 lines (3121 loc) · 952 KB
/
daos_build_log_scons
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
[root@25dbd0ead0be daos]# scons --jobs 1 install PREFIX=/opt/daos BUILD_TYPE=debug TARGET_TYPE=debug --build-deps=yes
scons: Reading SConscript files ...
Checking for C header file stdatomic.h... yes
Checking whether gcc program exists.../bin/gcc
Checking whether g++ program exists.../bin/g++
Using build version of ofi
Using build version of ucx
Using build version of mercury
Using build version of valgrind_devel
Checking targets for component 'argobots'
Checking for C header file abt.h... yes
Checking for C library abt... yes
Checking targets for component 'libunwind'
Checking for C header file libunwind.h... yes
Checking for C library unwind... yes
Checking targets for component 'ucx'
Checking for C header file uct/api/uct.h... yes
Checking for C library ucs... yes
Checking for C library ucp... yes
Checking for C library uct... yes
Checking for C function ucs_debug_disable_signal()... yes
Checking targets for component 'ofi'
Checking for libfabric > 1.11... yes
Checking for C header file rdma/fabric.h... yes
Checking for C library fabric... yes
Checking targets for component 'hwloc'
Checking for C header file hwloc.h... yes
Checking for C library hwloc... yes
Checking targets for component 'mercury'
Checking for C library mercury... yes
Checking targets for component 'boost'
Checking for C header file boost/preprocessor.hpp... yes
Checking targets for component 'rt'
Checking for C library rt... yes
Checking targets for component 'uuid'
Checking for C header file uuid/uuid.h... yes
Checking for C library uuid... yes
Checking targets for component 'crypto'
Checking for C header file openssl/md5.h... yes
Checking for C library crypto... yes
Checking targets for component 'protobufc'
Checking for C header file protobuf-c/protobuf-c.h... yes
Checking for C library protobuf-c... yes
Checking targets for component 'lz4'
Checking for C header file lz4.h... yes
Checking targets for component 'isal'
Checking for C library isal... yes
Checking targets for component 'isal_crypto'
Checking for C library isal_crypto... yes
Checking targets for component 'cmocka'
Checking for C library cmocka... yes
Checking targets for component 'pmdk'
Checking for C library pmemobj... yes
Checking whether patchelf program exists.../bin/patchelf
Downloading source for spdk
com_name:spdk, dir_name_cache:cache/spdk, subdir:/root/project/stor/daos/main/daos/build/external/debug/spdk
use cache, dir_name_cache:cache/spdk, url:https://github.com/spdk/spdk.git, subdir:/root/project/stor/daos/main/daos/build/external/debug/spdk
RUN: cp -r cache/spdk /root/project/stor/daos/main/daos/build/external/debug/spdk
Running commands in /root/project/stor/daos/main/daos/build/external/debug/spdk
RUN: git checkout v22.01.2
warning: unable to rmdir 'isa-l-crypto': Directory not empty
warning: unable to rmdir 'xnvme': Directory not empty
M dpdk
M intel-ipsec-mb
M libvfio-user
M ocf
Note: switching to 'v22.01.2'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at cbf9b3496 SPDK 22.01.2
Running commands in /root/project/stor/daos/main/daos/build/external/debug/spdk
RUN: git checkout v22.01.2
M dpdk
M intel-ipsec-mb
M libvfio-user
M ocf
HEAD is now at cbf9b3496 SPDK 22.01.2
Running commands in /root/project/stor/daos/main/daos/build/external/debug/spdk
RUN: git reset --hard HEAD
HEAD is now at cbf9b3496 SPDK 22.01.2
Running commands in /root/project/stor/daos/main/daos/build/external/debug/spdk
RUN: git submodule init
RUN: git submodule update
Submodule path 'dpdk': checked out '744e58cca9556e59c65d3993115c6f034d57c4f2'
Submodule path 'intel-ipsec-mb': checked out '5b6f01f1d52c5a2a577b47094b8d358541fdcb5e'
Submodule path 'libvfio-user': checked out 'b52bff72d4eb646a453d19e19ddbd13ed6111a09'
Submodule path 'ocf': checked out '4477cb55a0bcd313a5ebcfdf877ca76a31695df7'
Running commands in /root/project/stor/daos/main/daos/build/external/debug/spdk
RUN: ./configure --prefix=/opt/daos/prereq/debug/spdk --disable-tests --disable-unit-tests --disable-apps --without-vhost --without-crypto --without-pmdk --without-rbd --without-iscsi-initiator --without-isal --without-vtune --with-shared --target-arch=haswell
Notice: ISA-L, compression & crypto require NASM version 2.14 or newer. Turning off default ISA-L and crypto features.
Using default SPDK env in /root/project/stor/daos/main/daos/build/external/debug/spdk/lib/env_dpdk
Using default DPDK in /root/project/stor/daos/main/daos/build/external/debug/spdk/dpdk/build
Creating mk/config.mk...done.
Creating mk/cc.flags.mk...done.
Type 'make' to build.
RUN: make -j 1 CONFIG_ARCH=haswell
The Meson build system
Version: 0.61.5
Source dir: /root/project/stor/daos/main/daos/build/external/debug/spdk/dpdk
Build dir: /root/project/stor/daos/main/daos/build/external/debug/spdk/dpdk/build-tmp
Build type: native build
Program cat found: YES (/bin/cat)
Project name: DPDK
Project version: 21.11.2
C compiler for the host machine: cc (gcc 8.5.0 "cc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-18)")
C linker for the host machine: cc ld.bfd 2.30-119
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/bin/pkg-config)
Program check-symbols.sh found: YES (/root/project/stor/daos/main/daos/build/external/debug/spdk/dpdk/buildtools/check-symbols.sh)
Program options-ibverbs-static.sh found: YES (/root/project/stor/daos/main/daos/build/external/debug/spdk/dpdk/buildtools/options-ibverbs-static.sh)
Program objdump found: YES (/bin/objdump)
Program python3 found: YES (/home/daos/venv/bin/python3)
Program cat found: YES (/bin/cat)
Checking for size of "void *" : 8
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES
Library libfdt found: NO
Library libexecinfo found: NO
Found pkg-config: /bin/pkg-config (1.4.2)
Run-time dependency libarchive found: NO (tried pkgconfig)
Run-time dependency libbsd found: NO (tried pkgconfig)
Run-time dependency jansson found: NO (tried pkgconfig)
Run-time dependency libpcap found: NO (tried pkgconfig)
Library pcap found: NO
Compiler for C supports arguments -Wextra: YES
config/meson.build:291: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES
Compiler for C supports arguments -Wdeprecated: YES
Compiler for C supports arguments -Wformat: YES
Compiler for C supports arguments -Wformat-nonliteral: YES
Compiler for C supports arguments -Wformat-security: YES
Compiler for C supports arguments -Wmissing-declarations: YES
Compiler for C supports arguments -Wmissing-prototypes: YES
Compiler for C supports arguments -Wnested-externs: YES
Compiler for C supports arguments -Wold-style-definition: YES
Compiler for C supports arguments -Wpointer-arith: YES
Compiler for C supports arguments -Wsign-compare: YES
Compiler for C supports arguments -Wstrict-prototypes: YES
Compiler for C supports arguments -Wundef: YES
Compiler for C supports arguments -Wwrite-strings: YES
Compiler for C supports arguments -Wno-address-of-packed-member: NO
Compiler for C supports arguments -Wno-packed-not-aligned: YES
Compiler for C supports arguments -Wno-missing-field-initializers: YES
Compiler for C supports arguments -mavx512f: YES
Checking if "AVX512 checking" compiles: YES
Fetching value of define "__SSE4_2__" : 1
Fetching value of define "__AES__" : 1
Fetching value of define "__AVX__" : 1
Fetching value of define "__AVX2__" : 1
Fetching value of define "__AVX512BW__" :
Fetching value of define "__AVX512CD__" :
Fetching value of define "__AVX512DQ__" :
Fetching value of define "__AVX512F__" :
Fetching value of define "__AVX512VL__" :
Fetching value of define "__PCLMUL__" : 1
Fetching value of define "__RDRND__" : 1
Fetching value of define "__RDSEED__" :
Fetching value of define "__VPCLMULQDQ__" :
Compiler for C supports arguments -Wno-format-truncation: YES
Checking for function "getentropy" : YES
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" : (cached)
Compiler for C supports arguments -mpclmul: YES
Compiler for C supports arguments -maes: YES
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES
Compiler for C supports arguments -mavx512dq: YES
Compiler for C supports arguments -mavx512vl: YES
Compiler for C supports arguments -mvpclmulqdq: YES
Compiler for C supports arguments -mavx2: YES
Compiler for C supports arguments -mavx: YES
Compiler for C supports arguments -Wno-cast-qual: YES
Has header "linux/userfaultfd.h" : YES
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Program doxygen found: NO
Program sphinx-build found: NO
Configuring rte_build_config.h using configuration
Message:
=================
Libraries Enabled
=================
libs:
kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net,
meter, ethdev, pci, cmdline, hash, timer, compressdev, cryptodev,
power, reorder, security, vhost,
Message:
===============
Drivers Enabled
===============
common:
bus:
pci, vdev,
mempool:
ring,
dma:
net:
raw:
crypto:
compress:
regex:
vdpa:
event:
baseband:
gpu:
Message:
=================
Content Skipped
=================
libs:
metrics: explicitly disabled via build config
acl: explicitly disabled via build config
bbdev: explicitly disabled via build config
bitratestats: explicitly disabled via build config
bpf: explicitly disabled via build config
cfgfile: explicitly disabled via build config
distributor: explicitly disabled via build config
efd: explicitly disabled via build config
eventdev: explicitly disabled via build config
gpudev: explicitly disabled via build config
gro: explicitly disabled via build config
gso: explicitly disabled via build config
ip_frag: explicitly disabled via build config
jobstats: explicitly disabled via build config
kni: explicitly disabled via build config
latencystats: explicitly disabled via build config
lpm: explicitly disabled via build config
member: explicitly disabled via build config
pcapng: explicitly disabled via build config
rawdev: explicitly disabled via build config
regexdev: explicitly disabled via build config
dmadev: explicitly disabled via build config
rib: explicitly disabled via build config
sched: explicitly disabled via build config
stack: explicitly disabled via build config
ipsec: explicitly disabled via build config
fib: explicitly disabled via build config
port: explicitly disabled via build config
pdump: explicitly disabled via build config
table: explicitly disabled via build config
pipeline: explicitly disabled via build config
flow_classify: explicitly disabled via build config
graph: explicitly disabled via build config
node: explicitly disabled via build config
drivers:
common/cpt: not in enabled drivers build config
common/dpaax: not in enabled drivers build config
common/iavf: not in enabled drivers build config
common/mvep: not in enabled drivers build config
common/octeontx: not in enabled drivers build config
common/octeontx2: not in enabled drivers build config
bus/auxiliary: not in enabled drivers build config
bus/dpaa: not in enabled drivers build config
bus/fslmc: not in enabled drivers build config
bus/ifpga: not in enabled drivers build config
bus/vmbus: not in enabled drivers build config
common/cnxk: not in enabled drivers build config
common/mlx5: not in enabled drivers build config
common/qat: not in enabled drivers build config
common/sfc_efx: not in enabled drivers build config
mempool/bucket: not in enabled drivers build config
mempool/cnxk: not in enabled drivers build config
mempool/dpaa: not in enabled drivers build config
mempool/dpaa2: not in enabled drivers build config
mempool/octeontx: not in enabled drivers build config
mempool/octeontx2: not in enabled drivers build config
mempool/stack: not in enabled drivers build config
dma/cnxk: not in enabled drivers build config
dma/dpaa: not in enabled drivers build config
dma/hisilicon: not in enabled drivers build config
dma/idxd: not in enabled drivers build config
dma/ioat: not in enabled drivers build config
dma/skeleton: not in enabled drivers build config
net/af_packet: not in enabled drivers build config
net/af_xdp: not in enabled drivers build config
net/ark: not in enabled drivers build config
net/atlantic: not in enabled drivers build config
net/avp: not in enabled drivers build config
net/axgbe: not in enabled drivers build config
net/bnx2x: not in enabled drivers build config
net/bnxt: not in enabled drivers build config
net/bonding: not in enabled drivers build config
net/cnxk: not in enabled drivers build config
net/cxgbe: not in enabled drivers build config
net/dpaa: not in enabled drivers build config
net/dpaa2: not in enabled drivers build config
net/e1000: not in enabled drivers build config
net/ena: not in enabled drivers build config
net/enetc: not in enabled drivers build config
net/enetfec: not in enabled drivers build config
net/enic: not in enabled drivers build config
net/failsafe: not in enabled drivers build config
net/fm10k: not in enabled drivers build config
net/hinic: not in enabled drivers build config
net/hns3: not in enabled drivers build config
net/i40e: not in enabled drivers build config
net/iavf: not in enabled drivers build config
net/ice: not in enabled drivers build config
net/igc: not in enabled drivers build config
net/ionic: not in enabled drivers build config
net/ipn3ke: not in enabled drivers build config
net/ixgbe: not in enabled drivers build config
net/kni: not in enabled drivers build config
net/liquidio: not in enabled drivers build config
net/memif: not in enabled drivers build config
net/mlx4: not in enabled drivers build config
net/mlx5: not in enabled drivers build config
net/mvneta: not in enabled drivers build config
net/mvpp2: not in enabled drivers build config
net/netvsc: not in enabled drivers build config
net/nfb: not in enabled drivers build config
net/nfp: not in enabled drivers build config
net/ngbe: not in enabled drivers build config
net/null: not in enabled drivers build config
net/octeontx: not in enabled drivers build config
net/octeontx2: not in enabled drivers build config
net/octeontx_ep: not in enabled drivers build config
net/pcap: not in enabled drivers build config
net/pfe: not in enabled drivers build config
net/qede: not in enabled drivers build config
net/ring: not in enabled drivers build config
net/sfc: not in enabled drivers build config
net/softnic: not in enabled drivers build config
net/tap: not in enabled drivers build config
net/thunderx: not in enabled drivers build config
net/txgbe: not in enabled drivers build config
net/vdev_netvsc: not in enabled drivers build config
net/vhost: not in enabled drivers build config
net/virtio: not in enabled drivers build config
net/vmxnet3: not in enabled drivers build config
raw/cnxk_bphy: not in enabled drivers build config
raw/dpaa2_cmdif: not in enabled drivers build config
raw/dpaa2_qdma: not in enabled drivers build config
raw/ifpga: not in enabled drivers build config
raw/ioat: not in enabled drivers build config
raw/ntb: not in enabled drivers build config
raw/skeleton: not in enabled drivers build config
crypto/armv8: not in enabled drivers build config
crypto/bcmfs: not in enabled drivers build config
crypto/caam_jr: not in enabled drivers build config
crypto/ccp: not in enabled drivers build config
crypto/cnxk: not in enabled drivers build config
crypto/dpaa_sec: not in enabled drivers build config
crypto/dpaa2_sec: not in enabled drivers build config
crypto/ipsec_mb: not in enabled drivers build config
crypto/mlx5: not in enabled drivers build config
crypto/mvsam: not in enabled drivers build config
crypto/nitrox: not in enabled drivers build config
crypto/null: not in enabled drivers build config
crypto/octeontx: not in enabled drivers build config
crypto/octeontx2: not in enabled drivers build config
crypto/openssl: not in enabled drivers build config
crypto/scheduler: not in enabled drivers build config
crypto/virtio: not in enabled drivers build config
compress/isal: not in enabled drivers build config
compress/mlx5: not in enabled drivers build config
compress/octeontx: not in enabled drivers build config
compress/zlib: not in enabled drivers build config
regex/mlx5: not in enabled drivers build config
regex/octeontx2: not in enabled drivers build config
vdpa/ifc: not in enabled drivers build config
vdpa/mlx5: not in enabled drivers build config
vdpa/sfc: not in enabled drivers build config
event/cnxk: not in enabled drivers build config
event/dlb2: not in enabled drivers build config
event/dpaa: not in enabled drivers build config
event/dpaa2: not in enabled drivers build config
event/dsw: not in enabled drivers build config
event/octeontx2: not in enabled drivers build config
event/opdl: not in enabled drivers build config
event/skeleton: not in enabled drivers build config
event/sw: not in enabled drivers build config
event/octeontx: not in enabled drivers build config
baseband/acc100: not in enabled drivers build config
baseband/fpga_5gnr_fec: not in enabled drivers build config
baseband/fpga_lte_fec: not in enabled drivers build config
baseband/la12xx: not in enabled drivers build config
baseband/null: not in enabled drivers build config
baseband/turbo_sw: not in enabled drivers build config
gpu/cuda: not in enabled drivers build config
Build targets in project: 100
DPDK 21.11.2
User defined options
libdir : lib
prefix : /root/project/stor/daos/main/daos/build/external/debug/spdk/dpdk/build
c_args : -fPIC -Wno-error
c_link_args :
cpu_instruction_set: haswell
disable_libs : gro,sched,port,stack,bpf,lpm,kni,gpudev,cfgfile,ipsec,bbdev,latencystats,regexdev,flow_classify,acl,table,pipeline,pdump,ip_frag,jobstats,member,metrics,bitratestats,rib,fib,efd,node,eventdev,rawdev,gso,distributor,dmadev,pcapng,graph
enable_docs : false
enable_drivers : bus,bus/pci,bus/vdev,mempool/ring
enable_kmods : false
tests : false
Found ninja-1.11.1.git.kitware.jobserver-1 at /home/daos/venv/bin/ninja
NOTICE: You are using Python 3.6 which is EOL. Starting with v0.62.0, Meson will require Python 3.7 or newer
ninja: Entering directory `/root/project/stor/daos/main/daos/build/external/debug/spdk/dpdk/build-tmp'
[265/265] Linking target drivers/librte_mempool_ring.so.22.0
CC lib/log/log.o
CC lib/log/log_flags.o
LIB libspdk_log.a
SO libspdk_log.so.4.1
SYMLINK libspdk_log.so
CC lib/util/base64.o
CC lib/util/bit_array.o
CC lib/util/cpuset.o
CC lib/util/crc16.o
CC lib/util/crc32.o
CC lib/util/crc32c.o
CC lib/util/crc32_ieee.o
CC lib/util/dif.o
CC lib/util/fd.o
CC lib/util/file.o
CC lib/util/iov.o
CC lib/util/math.o
CC lib/util/pipe.o
CC lib/util/strerror_tls.o
CC lib/util/string.o
CC lib/util/uuid.o
CC lib/util/fd_group.o
CC lib/util/zipf.o
LIB libspdk_util.a
SO libspdk_util.so.4.1
SYMLINK libspdk_util.so
CC lib/json/json_parse.o
CC lib/json/json_util.o
CC lib/json/json_write.o
LIB libspdk_json.a
SO libspdk_json.so.3.3
SYMLINK libspdk_json.so
CC lib/jsonrpc/jsonrpc_server.o
CC lib/jsonrpc/jsonrpc_server_tcp.o
CC lib/jsonrpc/jsonrpc_client.o
CC lib/jsonrpc/jsonrpc_client_tcp.o
LIB libspdk_jsonrpc.a
SO libspdk_jsonrpc.so.3.0
SYMLINK libspdk_jsonrpc.so
CC lib/rpc/rpc.o
LIB libspdk_rpc.a
SO libspdk_rpc.so.3.0
SYMLINK libspdk_rpc.so
CC lib/trace/trace.o
CC lib/trace/trace_flags.o
CC lib/trace/trace_rpc.o
LIB libspdk_trace.a
SO libspdk_trace.so.5.1
SYMLINK libspdk_trace.so
CC lib/thread/thread.o
LIB libspdk_thread.a
SO libspdk_thread.so.6.1
SYMLINK libspdk_thread.so
CC lib/notify/notify.o
CC lib/notify/notify_rpc.o
LIB libspdk_notify.a
SO libspdk_notify.so.3.0
SYMLINK libspdk_notify.so
CC lib/bdev/bdev.o
CC lib/bdev/bdev_rpc.o
CC lib/bdev/bdev_zone.o
CC lib/bdev/part.o
CC lib/bdev/scsi_nvme.o
LIB libspdk_bdev.a
SO libspdk_bdev.so.8.1
SYMLINK libspdk_bdev.so
CC lib/blob/blobstore.o
CC lib/blob/request.o
CC lib/blob/zeroes.o
CC lib/blob/blob_bs_dev.o
LIB libspdk_blob.a
SO libspdk_blob.so.6.0
SYMLINK libspdk_blob.so
CC lib/blobfs/blobfs.o
CC lib/blobfs/tree.o
LIB libspdk_blobfs.a
SO libspdk_blobfs.so.5.0
SYMLINK libspdk_blobfs.so
CC lib/conf/conf.o
LIB libspdk_conf.a
SO libspdk_conf.so.3.0
SYMLINK libspdk_conf.so
CC lib/dma/dma.o
LIB libspdk_dma.a
SO libspdk_dma.so.1.0
SYMLINK libspdk_dma.so
CC lib/accel/accel_engine.o
LIB libspdk_accel.a
SO libspdk_accel.so.8.0
SYMLINK libspdk_accel.so
CC lib/init/json_config.o
CC lib/init/subsystem.o
CC lib/init/subsystem_rpc.o
CC lib/init/rpc.o
LIB libspdk_init.a
SO libspdk_init.so.1.0
SYMLINK libspdk_init.so
CC lib/event/app.o
CC lib/event/reactor.o
CC lib/event/log_rpc.o
CC lib/event/app_rpc.o
CC lib/event/scheduler_static.o
LIB libspdk_event.a
SO libspdk_event.so.10.0
SYMLINK libspdk_event.so
CC lib/lvol/lvol.o
LIB libspdk_lvol.a
SO libspdk_lvol.so.5.0
SYMLINK libspdk_lvol.so
CC lib/sock/sock.o
CC lib/sock/sock_rpc.o
LIB libspdk_sock.a
SO libspdk_sock.so.5.0
SYMLINK libspdk_sock.so
CC lib/nvme/nvme_ctrlr_cmd.o
CC lib/nvme/nvme_ctrlr.o
CC lib/nvme/nvme_fabric.o
CC lib/nvme/nvme_ns_cmd.o
CC lib/nvme/nvme_ns.o
CC lib/nvme/nvme_pcie_common.o
CC lib/nvme/nvme_pcie.o
CC lib/nvme/nvme_qpair.o
CC lib/nvme/nvme.o
CC lib/nvme/nvme_quirks.o
CC lib/nvme/nvme_transport.o
CC lib/nvme/nvme_discovery.o
CC lib/nvme/nvme_ctrlr_ocssd_cmd.o
CC lib/nvme/nvme_ns_ocssd_cmd.o
CC lib/nvme/nvme_tcp.o
CC lib/nvme/nvme_opal.o
CC lib/nvme/nvme_io_msg.o
CC lib/nvme/nvme_poll_group.o
CC lib/nvme/nvme_zns.o
LIB libspdk_nvme.a
SO libspdk_nvme.so.7.2
SYMLINK libspdk_nvme.so
CC lib/vmd/vmd.o
CC lib/vmd/led.o
LIB libspdk_vmd.a
SO libspdk_vmd.so.3.1
SYMLINK libspdk_vmd.so
CC lib/nvmf/ctrlr.o
CC lib/nvmf/ctrlr_discovery.o
CC lib/nvmf/ctrlr_bdev.o
CC lib/nvmf/subsystem.o
CC lib/nvmf/nvmf.o
CC lib/nvmf/nvmf_rpc.o
CC lib/nvmf/transport.o
CC lib/nvmf/tcp.o
LIB libspdk_nvmf.a
SO libspdk_nvmf.so.11.0
SYMLINK libspdk_nvmf.so
CC lib/scsi/dev.o
CC lib/scsi/lun.o
CC lib/scsi/port.o
CC lib/scsi/scsi.o
CC lib/scsi/scsi_bdev.o
CC lib/scsi/scsi_pr.o
CC lib/scsi/scsi_rpc.o
CC lib/scsi/task.o
LIB libspdk_scsi.a
SO libspdk_scsi.so.4.1
SYMLINK libspdk_scsi.so
CC lib/ioat/ioat.o
LIB libspdk_ioat.a
SO libspdk_ioat.so.4.0
SYMLINK libspdk_ioat.so
CC lib/ut_mock/mock.o
LIB libspdk_ut_mock.a
SO libspdk_ut_mock.so.3.0
SYMLINK libspdk_ut_mock.so
CC lib/iscsi/conn.o
CC lib/iscsi/init_grp.o
CC lib/iscsi/iscsi.o
CC lib/iscsi/md5.o
CC lib/iscsi/param.o
CC lib/iscsi/portal_grp.o
CC lib/iscsi/tgt_node.o
CC lib/iscsi/iscsi_subsystem.o
CC lib/iscsi/iscsi_rpc.o
CC lib/iscsi/task.o
LIB libspdk_iscsi.a
SO libspdk_iscsi.so.5.0
SYMLINK libspdk_iscsi.so
CXX lib/trace_parser/trace.o
LIB libspdk_trace_parser.a
SO libspdk_trace_parser.so.1.0
SYMLINK libspdk_trace_parser.so
CC lib/nbd/nbd.o
CC lib/nbd/nbd_rpc.o
LIB libspdk_nbd.a
SO libspdk_nbd.so.4.0
SYMLINK libspdk_nbd.so
CC lib/ftl/ftl_band.o
CC lib/ftl/ftl_core.o
CC lib/ftl/ftl_debug.o
CC lib/ftl/ftl_io.o
CC lib/ftl/ftl_reloc.o
CC lib/ftl/ftl_restore.o
CC lib/ftl/ftl_init.o
CC lib/ftl/ftl_trace.o
LIB libspdk_ftl.a
SO libspdk_ftl.so.3.0
SYMLINK libspdk_ftl.so
CC lib/virtio/virtio.o
CC lib/virtio/virtio_user.o
CC lib/virtio/virtio_pci.o
CC lib/virtio/vhost_user.o
LIB libspdk_virtio.a
SO libspdk_virtio.so.3.0
SYMLINK libspdk_virtio.so
CC lib/env_dpdk/env.o
CC lib/env_dpdk/memory.o
CC lib/env_dpdk/pci.o
CC lib/env_dpdk/init.o
CC lib/env_dpdk/threads.o
CC lib/env_dpdk/pci_ioat.o
CC lib/env_dpdk/pci_virtio.o
CC lib/env_dpdk/pci_vmd.o
CC lib/env_dpdk/pci_idxd.o
CC lib/env_dpdk/pci_event.o
CC lib/env_dpdk/sigbus_handler.o
LIB libspdk_env_dpdk.a
SO libspdk_env_dpdk.so.8.1
SYMLINK libspdk_env_dpdk.so
CC module/blob/bdev/blob_bdev.o
LIB libspdk_blob_bdev.a
SO libspdk_blob_bdev.so.6.0
SYMLINK libspdk_blob_bdev.so
CC module/bdev/delay/vbdev_delay.o
CC module/bdev/delay/vbdev_delay_rpc.o
LIB libspdk_bdev_delay.a
SO libspdk_bdev_delay.so.3.0
SYMLINK libspdk_bdev_delay.so
CC module/bdev/error/vbdev_error.o
CC module/bdev/error/vbdev_error_rpc.o
LIB libspdk_bdev_error.a
SO libspdk_bdev_error.so.3.0
SYMLINK libspdk_bdev_error.so
CC module/bdev/gpt/gpt.o
CC module/bdev/gpt/vbdev_gpt.o
LIB libspdk_bdev_gpt.a
SO libspdk_bdev_gpt.so.3.0
SYMLINK libspdk_bdev_gpt.so
CC module/bdev/lvol/vbdev_lvol.o
CC module/bdev/lvol/vbdev_lvol_rpc.o
LIB libspdk_bdev_lvol.a
SO libspdk_bdev_lvol.so.3.0
SYMLINK libspdk_bdev_lvol.so
CC module/bdev/malloc/bdev_malloc.o
CC module/bdev/malloc/bdev_malloc_rpc.o
LIB libspdk_bdev_malloc.a
SO libspdk_bdev_malloc.so.3.0
SYMLINK libspdk_bdev_malloc.so
CC module/bdev/null/bdev_null.o
CC module/bdev/null/bdev_null_rpc.o
LIB libspdk_bdev_null.a
SO libspdk_bdev_null.so.3.0
SYMLINK libspdk_bdev_null.so
CC module/bdev/nvme/bdev_nvme.o
CC module/bdev/nvme/bdev_nvme_rpc.o
CC module/bdev/nvme/nvme_rpc.o
CC module/bdev/nvme/vbdev_opal.o
CC module/bdev/nvme/vbdev_opal_rpc.o
LIB libspdk_bdev_nvme.a
SO libspdk_bdev_nvme.so.4.0
SYMLINK libspdk_bdev_nvme.so
CC module/bdev/passthru/vbdev_passthru.o
CC module/bdev/passthru/vbdev_passthru_rpc.o
LIB libspdk_bdev_passthru.a
SO libspdk_bdev_passthru.so.3.0
SYMLINK libspdk_bdev_passthru.so
CC module/bdev/raid/bdev_raid.o
CC module/bdev/raid/bdev_raid_rpc.o
CC module/bdev/raid/raid0.o
LIB libspdk_bdev_raid.a
SO libspdk_bdev_raid.so.3.0
SYMLINK libspdk_bdev_raid.so
CC module/bdev/split/vbdev_split.o
CC module/bdev/split/vbdev_split_rpc.o
LIB libspdk_bdev_split.a
SO libspdk_bdev_split.so.3.0
SYMLINK libspdk_bdev_split.so
CC module/bdev/zone_block/vbdev_zone_block.o
CC module/bdev/zone_block/vbdev_zone_block_rpc.o
LIB libspdk_bdev_zone_block.a
SO libspdk_bdev_zone_block.so.3.0
SYMLINK libspdk_bdev_zone_block.so
CC module/bdev/aio/bdev_aio.o
CC module/bdev/aio/bdev_aio_rpc.o
LIB libspdk_bdev_aio.a
SO libspdk_bdev_aio.so.3.0
SYMLINK libspdk_bdev_aio.so
CC module/bdev/ftl/bdev_ftl.o
CC module/bdev/ftl/bdev_ftl_rpc.o
LIB libspdk_bdev_ftl.a
SO libspdk_bdev_ftl.so.3.0
SYMLINK libspdk_bdev_ftl.so
CC module/bdev/virtio/bdev_virtio_scsi.o
CC module/bdev/virtio/bdev_virtio_blk.o
CC module/bdev/virtio/bdev_virtio_rpc.o
LIB libspdk_bdev_virtio.a
SO libspdk_bdev_virtio.so.3.0
SYMLINK libspdk_bdev_virtio.so
CC module/blobfs/bdev/blobfs_bdev.o
CC module/blobfs/bdev/blobfs_bdev_rpc.o
LIB libspdk_blobfs_bdev.a
SO libspdk_blobfs_bdev.so.3.0
SYMLINK libspdk_blobfs_bdev.so
CC module/accel/ioat/accel_engine_ioat.o
CC module/accel/ioat/accel_engine_ioat_rpc.o
LIB libspdk_accel_ioat.a
SO libspdk_accel_ioat.so.3.0
SYMLINK libspdk_accel_ioat.so
CC module/event/subsystems/accel/accel.o
LIB libspdk_event_accel.a
SO libspdk_event_accel.so.3.0
SYMLINK libspdk_event_accel.so
CC module/event/subsystems/vmd/vmd.o
CC module/event/subsystems/vmd/vmd_rpc.o
LIB libspdk_event_vmd.a
SO libspdk_event_vmd.so.3.0
SYMLINK libspdk_event_vmd.so
CC module/event/subsystems/sock/sock.o
LIB libspdk_event_sock.a
SO libspdk_event_sock.so.2.0
SYMLINK libspdk_event_sock.so
CC module/event/subsystems/bdev/bdev.o
LIB libspdk_event_bdev.a
SO libspdk_event_bdev.so.3.0
SYMLINK libspdk_event_bdev.so
CC module/event/subsystems/scheduler/scheduler.o
LIB libspdk_event_scheduler.a
SO libspdk_event_scheduler.so.1.0
SYMLINK libspdk_event_scheduler.so
CC module/event/subsystems/scsi/scsi.o
LIB libspdk_event_scsi.a
SO libspdk_event_scsi.so.3.0
SYMLINK libspdk_event_scsi.so
CC module/event/subsystems/iscsi/iscsi.o
LIB libspdk_event_iscsi.a
SO libspdk_event_iscsi.so.3.0
SYMLINK libspdk_event_iscsi.so
CC module/event/subsystems/nvmf/nvmf_rpc.o
CC module/event/subsystems/nvmf/nvmf_tgt.o
LIB libspdk_event_nvmf.a
SO libspdk_event_nvmf.so.3.0
SYMLINK libspdk_event_nvmf.so
CC module/event/subsystems/nbd/nbd.o
LIB libspdk_event_nbd.a
SO libspdk_event_nbd.so.3.0
SYMLINK libspdk_event_nbd.so
CC module/sock/posix/posix.o
LIB libspdk_sock_posix.a
SO libspdk_sock_posix.so.3.0
SYMLINK libspdk_sock_posix.so
CC module/scheduler/dynamic/scheduler_dynamic.o
LIB libspdk_scheduler_dynamic.a
SO libspdk_scheduler_dynamic.so.1.0
SYMLINK libspdk_scheduler_dynamic.so
CC module/scheduler/dpdk_governor/dpdk_governor.o
LIB libspdk_scheduler_dpdk_governor.a
SO libspdk_scheduler_dpdk_governor.so.1.0
SYMLINK libspdk_scheduler_dpdk_governor.so
CC module/scheduler/gscheduler/gscheduler.o
LIB libspdk_scheduler_gscheduler.a
SO libspdk_scheduler_gscheduler.so.1.0
SYMLINK libspdk_scheduler_gscheduler.so
CC module/env_dpdk/env_dpdk_rpc.o
LIB libspdk_env_dpdk_rpc.a
SO libspdk_env_dpdk_rpc.so.3.0
SYMLINK libspdk_env_dpdk_rpc.so
SO libspdk.so.3.0
SYMLINK libspdk.so
CC examples/accel/perf/accel_perf.o
LINK accel_perf
CC examples/bdev/hello_world/hello_bdev.o
LINK hello_bdev
CC examples/blob/hello_world/hello_blob.o
LINK hello_blob
CC examples/blob/cli/blobcli.o
LINK blobcli
CC examples/ioat/perf/perf.o
LINK ioat_perf
CC examples/ioat/verify/verify.o
LINK verify
CC examples/nvme/hello_world/hello_world.o
LINK hello_world
CC examples/nvme/identify/identify.o
LINK identify
CC examples/nvme/perf/perf.o
LINK perf
CC examples/nvme/reconnect/reconnect.o
LINK reconnect
CC examples/nvme/nvme_manage/nvme_manage.o
LINK nvme_manage
CC examples/nvme/arbitration/arbitration.o
LINK arbitration
CC examples/nvme/hotplug/hotplug.o
LINK hotplug
CC examples/nvme/cmb_copy/cmb_copy.o
LINK cmb_copy
CC examples/nvme/abort/abort.o
LINK abort
CC examples/nvme/pmr_persistence/pmr_persistence.o
LINK pmr_persistence
CC examples/nvme/discovery_aer/discovery_aer.o
LINK discovery_aer
CC examples/sock/hello_world/hello_sock.o
LINK hello_sock
CC examples/vmd/lsvmd/lsvmd.o
LINK lsvmd
CC examples/vmd/led/led.o
LINK led
CC examples/nvmf/nvmf/nvmf.o
LINK nvmf
CC examples/util/zipf/zipf.o
LINK zipf
make[1]: Nothing to be done for 'all'.
RUN: make -j 1 install
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_log.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_log.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_log.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_util.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_util.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_util.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_json.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_json.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_json.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_jsonrpc.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_jsonrpc.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_jsonrpc.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_rpc.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_rpc.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_rpc.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_trace.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_trace.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_trace.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_thread.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_thread.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_thread.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_notify.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_notify.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_notify.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blob.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_blob.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blob.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blobfs.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_blobfs.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blobfs.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_conf.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_conf.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_conf.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_dma.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_dma.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_dma.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_accel.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_accel.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_accel.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_init.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_init.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_init.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_event.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_event.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_event.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_lvol.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_lvol.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_lvol.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_sock.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_sock.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_sock.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_nvme.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_nvme.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_nvme.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_vmd.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_vmd.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_vmd.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_nvmf.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_nvmf.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_nvmf.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_scsi.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_scsi.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_scsi.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_ioat.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_ioat.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_ioat.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_ut_mock.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_ut_mock.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_ut_mock.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_iscsi.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_iscsi.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_iscsi.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_trace_parser.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_trace_parser.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_trace_parser.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_nbd.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_nbd.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_nbd.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_ftl.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_ftl.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_ftl.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_virtio.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_virtio.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_virtio.so
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_dpdklibs.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_env_dpdk.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_env_dpdk.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_env_dpdk.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blob_bdev.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_blob_bdev.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blob_bdev.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_delay.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_delay.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_delay.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_error.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_error.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_error.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_gpt.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_gpt.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_gpt.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_lvol.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_lvol.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_lvol.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_malloc.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_malloc.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_malloc.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_null.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_null.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_null.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_nvme.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_nvme.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_nvme.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_passthru.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_passthru.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_passthru.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_raid.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_raid.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_raid.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_split.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_split.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_split.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_zone_block.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_zone_block.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_zone_block.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_aio.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_aio.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_aio.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_ftl.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_ftl.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_ftl.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_virtio.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_bdev_virtio.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_bdev_virtio.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blobfs_bdev.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_blobfs_bdev.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_blobfs_bdev.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_accel_ioat.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_accel_ioat.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_accel_ioat.so
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_event_accel.a
INSTALL /opt/daos/prereq/debug/spdk/lib/pkgconfig/spdk_event_accel.pc
INSTALL /opt/daos/prereq/debug/spdk/lib/libspdk_event_accel.so