-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathinstall-pi.log
2255 lines (2207 loc) · 426 KB
/
install-pi.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
Installing Rust and Mynewt Build Tools for Raspberry Pi...
+ set +x
----- Setting versions...
+ source scripts/install-version.sh
++ mynewt_version=mynewt_1_7_0_tag
++ nimble_version=nimble_1_2_0_tag
++ mcuboot_version=v1.3.1
++ openocd_version=spi
+ set +x
----- Installing Rust. When prompted, press Enter to select default option...
+ sh
+ curl --proto =https --tlsv1.2 -sSf https://sh.rustup.rs
info: downloading installer
Welcome to Rust!
This will download and install the official compiler for the Rust
programming language, and its package manager, Cargo.
It will add the cargo, rustc, rustup and other commands to
Cargo's bin directory, located at:
/home/pi/.cargo/bin
This can be modified with the CARGO_HOME environment variable.
Rustup metadata and toolchains will be installed into the Rustup
home directory, located at:
/home/pi/.rustup
This can be modified with the RUSTUP_HOME environment variable.
This path will then be added to your PATH environment variable by
modifying the profile file located at:
/home/pi/.profile
You can uninstall at any time with rustup self uninstall and
these changes will be reverted.
Current installation options:
default host triple: armv7-unknown-linux-gnueabihf
default toolchain: stable
profile: default
modify PATH variable: yes
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
>
info: profile set to 'default'
info: default host triple is armv7-unknown-linux-gnueabihf
info: syncing channel updates for 'stable-armv7-unknown-linux-gnueabihf'
info: latest update on 2019-12-19, rust version 1.40.0 (73528e339 2019-12-16)
warning: Force-skipping unavailable component 'clippy-armv7-unknown-linux-gnueabihf'
info: downloading component 'cargo'
4.2 MiB / 4.2 MiB (100 %) 1.4 MiB/s in 3s ETA: 0s
info: downloading component 'rust-std'
16.1 MiB / 16.1 MiB (100 %) 4.4 MiB/s in 2s ETA: 0s
info: downloading component 'rustc'
52.4 MiB / 52.4 MiB (100 %) 13.0 MiB/s in 5s ETA: 0s
info: downloading component 'rustfmt'
2.3 MiB / 2.3 MiB (100 %) 1.9 MiB/s in 1s ETA: 0s
info: installing component 'cargo'
info: installing component 'rust-std'
16.1 MiB / 16.1 MiB (100 %) 7.1 MiB/s in 2s ETA: 0s
info: installing component 'rustc'
52.4 MiB / 52.4 MiB (100 %) 5.4 MiB/s in 11s ETA: 0s
info: installing component 'rustfmt'
info: default toolchain set to 'stable'
stable installed - rustc 1.40.0 (73528e339 2019-12-16)
Rust is installed now. Great!
To get started you need Cargo's bin directory ($HOME/.cargo/bin) in your PATH
environment variable. Next time you log in this will be done
automatically.
To configure your current shell run source $HOME/.cargo/env
+ source /home/pi/.cargo/env
++ export PATH=/home/pi/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
++ PATH=/home/pi/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
+ rustup default nightly
info: syncing channel updates for 'nightly-armv7-unknown-linux-gnueabihf'
info: latest update on 2020-01-20, rust version 1.42.0-nightly (c0e02ad72 2020-01-19)
info: skipping nightly which is missing installed component 'clippy-preview'
info: syncing channel updates for 'nightly-2020-01-19-armv7-unknown-linux-gnueabihf'
info: latest update on 2020-01-19, rust version 1.42.0-nightly (1ce08f9d6 2020-01-18)
info: skipping nightly which is missing installed component 'clippy-preview'
info: syncing channel updates for 'nightly-2020-01-18-armv7-unknown-linux-gnueabihf'
info: latest update on 2020-01-18, rust version 1.42.0-nightly (689fca01c 2020-01-17)
info: downloading component 'cargo'
info: downloading component 'clippy'
info: downloading component 'rust-std'
15.4 MiB / 15.4 MiB (100 %) 13.0 MiB/s in 1s ETA: 0s
info: downloading component 'rustc'
70.1 MiB / 70.1 MiB (100 %) 13.2 MiB/s in 6s ETA: 0s
info: downloading component 'rustfmt'
info: installing component 'cargo'
info: installing component 'clippy'
info: installing component 'rust-std'
15.4 MiB / 15.4 MiB (100 %) 7.3 MiB/s in 2s ETA: 0s
info: installing component 'rustc'
70.1 MiB / 70.1 MiB (100 %) 5.1 MiB/s in 14s ETA: 0s
info: installing component 'rustfmt'
info: default toolchain set to 'nightly-armv7-unknown-linux-gnueabihf'
nightly-armv7-unknown-linux-gnueabihf installed - rustc 1.42.0-nightly (689fca01c 2020-01-17)
+ rustup update
info: syncing channel updates for 'stable-armv7-unknown-linux-gnueabihf'
info: syncing channel updates for 'nightly-armv7-unknown-linux-gnueabihf'
info: latest update on 2020-01-20, rust version 1.42.0-nightly (c0e02ad72 2020-01-19)
info: skipping nightly which is missing installed component 'clippy-preview'
info: syncing channel updates for 'nightly-2020-01-19-armv7-unknown-linux-gnueabihf'
info: latest update on 2020-01-19, rust version 1.42.0-nightly (1ce08f9d6 2020-01-18)
info: skipping nightly which is missing installed component 'clippy-preview'
info: syncing channel updates for 'nightly-2020-01-18-armv7-unknown-linux-gnueabihf'
info: checking for self-updates
stable-armv7-unknown-linux-gnueabihf unchanged - rustc 1.40.0 (73528e339 2019-12-16)
nightly-armv7-unknown-linux-gnueabihf unchanged - rustc 1.42.0-nightly (689fca01c 2020-01-17)
info: cleaning up downloads & tmp directories
+ rustup target add thumbv7em-none-eabihf
info: downloading component 'rust-std' for 'thumbv7em-none-eabihf'
info: installing component 'rust-std' for 'thumbv7em-none-eabihf'
+ set +x
----- Installing build tools...
+ sudo apt install -y wget git autoconf libtool make pkg-config libusb-1.0-0 libusb-1.0-0-dev libhidapi-dev libftdi-dev telnet p7zip-full
Reading package lists... Done
Building dependency tree
Reading state information... Done
git is already the newest version (1:2.20.1-2+deb10u1).
libusb-1.0-0 is already the newest version (2:1.0.22-2).
libusb-1.0-0 set to manually installed.
make is already the newest version (4.2.1-1.2).
make set to manually installed.
p7zip-full is already the newest version (16.02+dfsg-6).
pkg-config is already the newest version (0.29-6).
wget is already the newest version (1.20.1-1.1).
The following packages were automatically installed and are no longer required:
alsa-base gstreamer0.10-alsa gstreamer0.10-plugins-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0
libva-drm2 libva-wayland2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 libxfce4util-bin libxfce4util-common
libxfce4util7 libxfconf-0-2 mesa-va-drivers mesa-vdpau-drivers pimixer point-rpi va-driver-all
vdpau-driver-all xfconf
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
automake autotools-dev libftdi1 libhidapi-hidraw0 libhidapi-libusb0 libltdl-dev libsigsegv2 libusb-1.0-doc
libusb-dev m4
Suggested packages:
autoconf-archive gnu-standards autoconf-doc gettext libtool-doc gfortran | fortran95-compiler gcj-jdk
m4-doc
The following NEW packages will be installed:
autoconf automake autotools-dev libftdi-dev libftdi1 libhidapi-dev libhidapi-hidraw0 libhidapi-libusb0
libltdl-dev libsigsegv2 libtool libusb-1.0-0-dev libusb-1.0-doc libusb-dev m4 telnet
0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,689 kB of archives.
After this operation, 10.7 MB of additional disk space will be used.
Get:1 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf telnet armhf 0.17-41.2 [60.7 kB]
Get:2 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libsigsegv2 armhf 2.12-2 [32.3 kB]
Get:10 http://mirror.rise.ph/raspbian/raspbian buster/main armhf libhidapi-libusb0 armhf 0.8.0~rc1+git20140818.d17db57+dfsg-2 [12.3 kB]
Get:3 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf m4 armhf 1.4.18-2 [185 kB]
Get:11 http://mirror.rise.ph/raspbian/raspbian buster/main armhf libhidapi-hidraw0 armhf 0.8.0~rc1+git20140818.d17db57+dfsg-2 [9,468 B]
Get:12 http://mirror.rise.ph/raspbian/raspbian buster/main armhf libhidapi-dev armhf 0.8.0~rc1+git20140818.d17db57+dfsg-2 [21.8 kB]
Get:4 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf autoconf all 2.69-11 [341 kB]
Get:5 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf autotools-dev all 20180224.1 [77.0 kB]
Get:6 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf automake all 1:1.16.1-4 [771 kB]
Get:7 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libftdi1 armhf 0.20-4 [17.0 kB]
Get:8 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libusb-dev armhf 2:0.1.12-32 [35.7 kB]
Get:9 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libftdi-dev armhf 0.20-4 [172 kB]
Get:13 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libltdl-dev armhf 2.4.6-9 [159 kB]
Get:14 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libtool all 2.4.6-9 [547 kB]
Get:15 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libusb-1.0-0-dev armhf 2:1.0.22-2 [65.5 kB]
Get:16 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libusb-1.0-doc all 2:1.0.22-2 [182 kB]
Fetched 2,689 kB in 1min 26s (31.3 kB/s)
Selecting previously unselected package telnet.
(Reading database ... 155994 files and directories currently installed.)
Preparing to unpack .../00-telnet_0.17-41.2_armhf.deb ...
Unpacking telnet (0.17-41.2) ...
Selecting previously unselected package libsigsegv2:armhf.
Preparing to unpack .../01-libsigsegv2_2.12-2_armhf.deb ...
Unpacking libsigsegv2:armhf (2.12-2) ...
Selecting previously unselected package m4.
Preparing to unpack .../02-m4_1.4.18-2_armhf.deb ...
Unpacking m4 (1.4.18-2) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../03-autoconf_2.69-11_all.deb ...
Unpacking autoconf (2.69-11) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../04-autotools-dev_20180224.1_all.deb ...
Unpacking autotools-dev (20180224.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../05-automake_1%3a1.16.1-4_all.deb ...
Unpacking automake (1:1.16.1-4) ...
Selecting previously unselected package libftdi1:armhf.
Preparing to unpack .../06-libftdi1_0.20-4_armhf.deb ...
Unpacking libftdi1:armhf (0.20-4) ...
Selecting previously unselected package libusb-dev.
Preparing to unpack .../07-libusb-dev_2%3a0.1.12-32_armhf.deb ...
Unpacking libusb-dev (2:0.1.12-32) ...
Selecting previously unselected package libftdi-dev.
Preparing to unpack .../08-libftdi-dev_0.20-4_armhf.deb ...
Unpacking libftdi-dev (0.20-4) ...
Selecting previously unselected package libhidapi-libusb0:armhf.
Preparing to unpack .../09-libhidapi-libusb0_0.8.0~rc1+git20140818.d17db57+dfsg-2_armhf.deb ...
Unpacking libhidapi-libusb0:armhf (0.8.0~rc1+git20140818.d17db57+dfsg-2) ...
Selecting previously unselected package libhidapi-hidraw0:armhf.
Preparing to unpack .../10-libhidapi-hidraw0_0.8.0~rc1+git20140818.d17db57+dfsg-2_armhf.deb ...
Unpacking libhidapi-hidraw0:armhf (0.8.0~rc1+git20140818.d17db57+dfsg-2) ...
Selecting previously unselected package libhidapi-dev:armhf.
Preparing to unpack .../11-libhidapi-dev_0.8.0~rc1+git20140818.d17db57+dfsg-2_armhf.deb ...
Unpacking libhidapi-dev:armhf (0.8.0~rc1+git20140818.d17db57+dfsg-2) ...
Selecting previously unselected package libltdl-dev:armhf.
Preparing to unpack .../12-libltdl-dev_2.4.6-9_armhf.deb ...
Unpacking libltdl-dev:armhf (2.4.6-9) ...
Selecting previously unselected package libtool.
Preparing to unpack .../13-libtool_2.4.6-9_all.deb ...
Unpacking libtool (2.4.6-9) ...
Selecting previously unselected package libusb-1.0-0-dev:armhf.
Preparing to unpack .../14-libusb-1.0-0-dev_2%3a1.0.22-2_armhf.deb ...
Unpacking libusb-1.0-0-dev:armhf (2:1.0.22-2) ...
Selecting previously unselected package libusb-1.0-doc.
Preparing to unpack .../15-libusb-1.0-doc_2%3a1.0.22-2_all.deb ...
Unpacking libusb-1.0-doc (2:1.0.22-2) ...
Setting up telnet (0.17-41.2) ...
update-alternatives: using /usr/bin/telnet.netkit to provide /usr/bin/telnet (telnet) in auto mode
Setting up libusb-1.0-doc (2:1.0.22-2) ...
Setting up libftdi1:armhf (0.20-4) ...
Setting up libusb-1.0-0-dev:armhf (2:1.0.22-2) ...
Setting up libhidapi-hidraw0:armhf (0.8.0~rc1+git20140818.d17db57+dfsg-2) ...
Setting up libusb-dev (2:0.1.12-32) ...
Setting up autotools-dev (20180224.1) ...
Setting up libsigsegv2:armhf (2.12-2) ...
Setting up libhidapi-libusb0:armhf (0.8.0~rc1+git20140818.d17db57+dfsg-2) ...
Setting up libtool (2.4.6-9) ...
Setting up libftdi-dev (0.20-4) ...
Setting up libhidapi-dev:armhf (0.8.0~rc1+git20140818.d17db57+dfsg-2) ...
Setting up m4 (1.4.18-2) ...
Setting up autoconf (2.69-11) ...
Setting up automake (1:1.16.1-4) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libltdl-dev:armhf (2.4.6-9) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for install-info (6.5.0.dfsg.1-4+b1) ...
+ set +x
----- Installing gcc...
+ sudo apt install -y gcc-arm-none-eabi
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
alsa-base gstreamer0.10-alsa gstreamer0.10-plugins-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0
libva-drm2 libva-wayland2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 libxfce4util-bin libxfce4util-common
libxfce4util7 libxfconf-0-2 mesa-va-drivers mesa-vdpau-drivers pimixer point-rpi va-driver-all
vdpau-driver-all xfconf
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
binutils-arm-none-eabi libnewlib-arm-none-eabi libnewlib-dev libstdc++-arm-none-eabi-newlib
Suggested packages:
libnewlib-doc
The following NEW packages will be installed:
binutils-arm-none-eabi gcc-arm-none-eabi libnewlib-arm-none-eabi libnewlib-dev
libstdc++-arm-none-eabi-newlib
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 170 MB of archives.
After this operation, 1,731 MB of additional disk space will be used.
Get:1 http://mirror.rise.ph/raspbian/raspbian buster/main armhf binutils-arm-none-eabi armhf 2.31.1-11+rpi1+11 [2,006 kB]
Get:2 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf gcc-arm-none-eabi armhf 15:7-2018-q2-6 [25.3 MB]
Get:5 http://mirror.rise.ph/raspbian/raspbian buster/main armhf libstdc++-arm-none-eabi-newlib all 15:7-2018-q2-5+12 [111 MB]
Get:3 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libnewlib-dev all 3.1.0.20181231-1 [259 kB]
Get:4 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf libnewlib-arm-none-eabi all 3.1.0.20181231-1 [32.1 MB]
Fetched 170 MB in 43s (3,923 kB/s)
Selecting previously unselected package binutils-arm-none-eabi.
(Reading database ... 156655 files and directories currently installed.)
Preparing to unpack .../binutils-arm-none-eabi_2.31.1-11+rpi1+11_armhf.deb ...
Unpacking binutils-arm-none-eabi (2.31.1-11+rpi1+11) ...
Selecting previously unselected package gcc-arm-none-eabi.
Preparing to unpack .../gcc-arm-none-eabi_15%3a7-2018-q2-6_armhf.deb ...
Unpacking gcc-arm-none-eabi (15:7-2018-q2-6) ...
Selecting previously unselected package libnewlib-dev.
Preparing to unpack .../libnewlib-dev_3.1.0.20181231-1_all.deb ...
Unpacking libnewlib-dev (3.1.0.20181231-1) ...
Selecting previously unselected package libnewlib-arm-none-eabi.
Preparing to unpack .../libnewlib-arm-none-eabi_3.1.0.20181231-1_all.deb ...
Unpacking libnewlib-arm-none-eabi (3.1.0.20181231-1) ...
Selecting previously unselected package libstdc++-arm-none-eabi-newlib.
Preparing to unpack .../libstdc++-arm-none-eabi-newlib_15%3a7-2018-q2-5+12_all.deb ...
Unpacking libstdc++-arm-none-eabi-newlib (15:7-2018-q2-5+12) ...
Setting up binutils-arm-none-eabi (2.31.1-11+rpi1+11) ...
Setting up gcc-arm-none-eabi (15:7-2018-q2-6) ...
Setting up libnewlib-dev (3.1.0.20181231-1) ...
Setting up libnewlib-arm-none-eabi (3.1.0.20181231-1) ...
Setting up libstdc++-arm-none-eabi-newlib (15:7-2018-q2-5+12) ...
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
+ set +x
----- Installing gdb...
+ '[' '!' -e /usr/bin/arm-none-eabi-gdb ']'
+ sudo apt install -y gdb-multiarch
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
alsa-base gstreamer0.10-alsa gstreamer0.10-plugins-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0
libva-drm2 libva-wayland2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 libxfce4util-bin libxfce4util-common
libxfce4util7 libxfconf-0-2 mesa-va-drivers mesa-vdpau-drivers pimixer point-rpi va-driver-all
vdpau-driver-all xfconf
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
gdb-multiarch
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,905 kB of archives.
After this operation, 10.1 MB of additional disk space will be used.
Get:1 http://mirror.nus.edu.sg/raspbian/raspbian buster/main armhf gdb-multiarch armhf 8.2.1-2 [2,905 kB]
Fetched 2,905 kB in 1s (2,265 kB/s)
Selecting previously unselected package gdb-multiarch.
(Reading database ... 159659 files and directories currently installed.)
Preparing to unpack .../gdb-multiarch_8.2.1-2_armhf.deb ...
Unpacking gdb-multiarch (8.2.1-2) ...
Setting up gdb-multiarch (8.2.1-2) ...
+ sudo ln -s /usr/bin/gdb-multiarch /usr/bin/arm-none-eabi-gdb
+ set +x
----- Installing openocd-spi...
+ '[' '!' -d /home/pi/openocd-spi ']'
+ pushd /home/pi
~ ~/pinetime-rust-mynewt
+ git clone --branch spi https://github.com/lupyuen/openocd-spi
Cloning into 'openocd-spi'...
remote: Enumerating objects: 50, done.
remote: Counting objects: 100% (50/50), done.
remote: Compressing objects: 100% (30/30), done.
remote: Total 62877 (delta 35), reused 33 (delta 20), pack-reused 62827
Receiving objects: 100% (62877/62877), 23.70 MiB | 7.50 MiB/s, done.
Resolving deltas: 100% (51576/51576), done.
+ cd openocd-spi
+ ./bootstrap
+ aclocal
+ libtoolize --automake --copy
+ autoconf
+ autoheader
+ automake --gnu --add-missing --copy
configure.ac:26: installing './compile'
configure.ac:37: installing './config.guess'
configure.ac:37: installing './config.sub'
configure.ac:16: installing './install-sh'
configure.ac:16: installing './missing'
Makefile.am:46: warning: wildcard $(srcdir: non-POSIX variable name
Makefile.am:46: (probably a GNU make extension)
Makefile.am: installing './INSTALL'
Makefile.am: installing './depcomp'
Makefile.am:23: installing './mdate-sh'
Makefile.am:23: installing './texinfo.tex'
Setting up submodules
Submodule 'jimtcl' (http://repo.or.cz/r/jimtcl.git) registered for path 'jimtcl'
Submodule 'src/jtag/drivers/libjaylink' (http://repo.or.cz/r/libjaylink.git) registered for path 'src/jtag/drivers/libjaylink'
Submodule 'tools/git2cl' (http://repo.or.cz/r/git2cl.git) registered for path 'tools/git2cl'
Cloning into '/home/pi/openocd-spi/jimtcl'...
warning: redirecting to https://repo.or.cz/r/jimtcl.git/
Cloning into '/home/pi/openocd-spi/tools/git2cl'...
warning: redirecting to https://repo.or.cz/r/git2cl.git/
Cloning into '/home/pi/openocd-spi/src/jtag/drivers/libjaylink'...
warning: redirecting to https://repo.or.cz/r/libjaylink.git/
Submodule path 'jimtcl': checked out 'a9bf5975fd0f89974d689a2d9ebd0873c8d64787'
Submodule path 'src/jtag/drivers/libjaylink': checked out 'f73ad5e667ae8b26a52b847c603fdadaabf302a6'
Submodule path 'tools/git2cl': checked out '8373c9f74993e218a08819cbcdbab3f3564bbeba'
Generating build system...
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
libtoolize: copying file 'build-aux/config.guess'
libtoolize: copying file 'build-aux/config.sub'
libtoolize: copying file 'build-aux/install-sh'
libtoolize: copying file 'build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
configure.ac:42: installing 'build-aux/ar-lib'
configure.ac:37: installing 'build-aux/compile'
configure.ac:30: installing 'build-aux/missing'
Makefile.am: installing './INSTALL'
libjaylink/Makefile.am: installing 'build-aux/depcomp'
Bootstrap complete. Quick build instructions:
./configure ....
+ ./configure --enable-sysfsgpio --enable-bcm2835spi --enable-cmsis-dap
checking for makeinfo... no
configure: WARNING: Info documentation will not be built.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... none needed
checking for ranlib... ranlib
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.23... yes
checking build system type... armv7l-unknown-linux-gnueabihf
checking host system type... armv7l-unknown-linux-gnueabihf
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for an ANSI C-conforming const... yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for library containing ioperm... none required
checking for library containing dlopen... -ldl
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking elf.h usability... yes
checking elf.h presence... yes
checking for elf.h... yes
checking dirent.h usability... yes
checking dirent.h presence... yes
checking for dirent.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for strings.h... (cached) yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking for sys/stat.h... (cached) yes
checking sys/sysctl.h usability... yes
checking sys/sysctl.h presence... yes
checking for sys/sysctl.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for arpa/inet.h... yes
checking for ifaddrs.h... yes
checking for netinet/in.h... yes
checking for netinet/tcp.h... yes
checking for net/if.h... yes
checking whether to enable assertions... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether byte ordering is bigendian... no
checking for strndup... yes
checking for strnlen... yes
checking for gettimeofday... yes
checking for usleep... yes
checking for vasprintf... yes
checking for realpath... yes
checking whether to build a release... no
checking whether to build Doxygen as HTML... yes
checking whether to build Doxygen as PDF... no
checking whether to enable verbose USB I/O messages... no
checking whether to enable verbose USB communication messages... no
checking whether to enable malloc free space logging... no
checking whether to enable ZY1000 minidriver... no
checking whether to enable dummy minidriver... no
checking whether standard drivers can be built... yes
checking for LIBUSB1... yes
configure: libusb-1.0 header bug workaround: LIBUSB1_CFLAGS changed to "-isystem /usr/include/libusb-1.0"
checking for LIBUSB0... yes
checking for HIDAPI... no
checking for HIDAPI... yes
checking for LIBFTDI... no
checking for LIBFTDI... yes
checking for LIBJAYLINK... no
checking for environ in unistd.h and stdlib.h... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in jimtcl (/home/pi/openocd-spi/jimtcl)
configure: running /bin/bash ./configure.gnu --disable-option-checking '--prefix=/usr/local' '--enable-sysfsgpio' '--enable-bcm2835spi' '--enable-cmsis-dap' --cache-file=/dev/null --srcdir=.
No installed jimsh or tclsh, building local bootstrap jimsh0
Host System...armv7l-unknown-linux-gnueabihf
Build System...armv7l-unknown-linux-gnueabihf
C compiler... cc -g -O2
C++ compiler... c++ -g -O2
Build C compiler...cc
Checking for stdlib.h...ok
Checking for long long...ok
Checking for sys/time.h...ok
Checking for sys/socket.h...ok
Checking for netinet/in.h...ok
Checking for arpa/inet.h...ok
Checking for netdb.h...ok
Checking for sys/un.h...ok
Checking for dlfcn.h...ok
Checking for unistd.h...ok
Checking for dirent.h...ok
Checking for crt_externs.h...not found
Checking libs for inet_ntop...none needed
Checking libs for socket...none needed
Checking for ualarm...ok
Checking for lstat...ok
Checking for fork...ok
Checking for vfork...ok
Checking for system...ok
Checking for select...ok
Checking for execvpe...ok
Checking for backtrace...ok
Checking for geteuid...ok
Checking for mkstemp...ok
Checking for realpath...ok
Checking for strptime...ok
Checking for isatty...ok
Checking for regcomp...ok
Checking for waitpid...ok
Checking for sigaction...ok
Checking for sys_signame...not found
Checking for sys_siglist...ok
Checking for isascii...ok
Checking for syslog...ok
Checking for opendir...ok
Checking for readlink...ok
Checking for sleep...ok
Checking for usleep...ok
Checking for pipe...ok
Checking for getaddrinfo...ok
Checking for utimes...ok
Checking for shutdown...ok
Checking for socketpair...ok
Checking for isinf...ok
Checking for isnan...ok
Checking for link...ok
Checking for symlink...ok
Checking for fsync...ok
Checking for dup...ok
Checking for sysinfo...ok
Checking for struct sysinfo.uptime...ok
Checking for struct flock...ok
Checking for sys/types.h...(cached) ok
Checking if -D_FILE_OFFSET_BITS=64 is needed...yes
Checking for fseeko...ok
Checking for ftello...ok
Checking for _NSGetEnviron...not found
Checking environ declared in unistd.h...yes
Checking for sys/types.h...(cached) ok
Checking for sys/stat.h...ok
Checking for mkdir with one arg...no
Checking for termios.h...ok
Enabling line editing
Enabling references
Building static library
Extension aio...enabled
Extension array...enabled
Extension pack...enabled
Extension binary...enabled
Extension clock...enabled
Extension eventloop...enabled
Extension exec...enabled
Extension file...enabled
Extension readdir...enabled
Extension glob...enabled
Extension history...enabled
Extension interp...enabled
Checking libs for dlopen...-ldl
Extension load...enabled
Extension nshelper...enabled
Extension namespace...enabled
Extension oo...enabled
Extension package...enabled
Extension posix...enabled
Extension regexp...enabled
Extension signal...enabled
Extension stdlib...enabled
Extension syslog...enabled
Extension tclcompat...enabled
Extension tclprefix...enabled
Extension tree...enabled
Using built-in regexp
Jim static extensions: aio array binary clock eventloop exec file glob history interp load namespace nshelper oo pack package posix readdir regexp signal stdlib syslog tclcompat tclprefix tree
Created jim-config.h
Created jimautoconf.h
Created Makefile from Makefile.in
Created build-jim-ext from build-jim-ext.in
=== configuring in src/jtag/drivers/libjaylink (/home/pi/openocd-spi/src/jtag/drivers/libjaylink)
configure: running /bin/bash ./configure.gnu --disable-option-checking '--prefix=/usr/local' '--enable-sysfsgpio' '--enable-bcm2835spi' '--enable-cmsis-dap' --cache-file=/dev/null --srcdir=.
checking build system type... armv7l-unknown-linux-gnueabihf
checking host system type... armv7l-unknown-linux-gnueabihf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of gcc... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for libusb... yes
checking whether byte ordering is bigendian... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libjaylink/Makefile
config.status: creating libjaylink/version.h
config.status: creating libjaylink.pc
config.status: creating Doxyfile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
libjaylink configuration summary:
- Package version ................ 0.2.0-git-f73ad5e
- Library version ................ 0:0:0
- Installation prefix ............ /usr/local
- Building on .................... armv7l-unknown-linux-gnueabihf
- Building for ................... armv7l-unknown-linux-gnueabihf
Enabled transports:
- USB ............................ yes
- TCP ............................ yes
OpenOCD configuration summary
--------------------------------------------------
MPSSE mode of FTDI based devices yes (auto)
ST-Link Programmer yes (auto)
TI ICDI JTAG Programmer yes (auto)
Keil ULINK JTAG Programmer yes (auto)
Altera USB-Blaster II Compatible yes (auto)
Bitbang mode of FT232R based devices yes (auto)
Versaloon-Link JTAG Programmer yes (auto)
TI XDS110 Debug Probe yes (auto)
OSBDM (JTAG only) Programmer yes (auto)
eStick/opendous JTAG Programmer yes (auto)
Andes JTAG Programmer yes (auto)
USBProg JTAG Programmer yes (auto)
Raisonance RLink JTAG Programmer yes (auto)
Olimex ARM-JTAG-EW Programmer yes (auto)
CMSIS-DAP Compliant Debugger yes
Cypress KitProg Programmer yes (auto)
Altera USB-Blaster Compatible yes (auto)
ASIX Presto Adapter yes (auto)
OpenJTAG Adapter yes (auto)
SEGGER J-Link Programmer yes (auto)
+ make
Makefile:5509: warning: overriding recipe for target 'check-recursive'
Makefile:4313: warning: ignoring old recipe for target 'check-recursive'
cat src/helper/startup.tcl src/jtag/startup.tcl src/target/startup.tcl src/server/startup.tcl src/flash/startup.tcl | ./src/helper/bin2char.sh > src/startup_tcl.inc || { rm -f src/startup_tcl.inc; false; }
cp src/jtag/drivers/minidriver_imp.h src/jtag/minidriver_imp.h
make all-recursive
make[1]: Entering directory '/home/pi/openocd-spi'
Makefile:5509: warning: overriding recipe for target 'check-recursive'
Makefile:4313: warning: ignoring old recipe for target 'check-recursive'
Making all in jimtcl
make[2]: Entering directory '/home/pi/openocd-spi/jimtcl'
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-load-static-exts.tcl aio array clock eventloop exec file history interp load namespace pack package posix readdir regexp signal syslog tclprefix binary glob nshelper oo stdlib tclcompat tree >_load-static-exts.c || ( rm _load-static-exts.c; exit 1)
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o _load-static-exts.o _load-static-exts.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-subcmd.o jim-subcmd.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-interactive.o jim-interactive.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-format.o jim-format.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim.o jim.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o utf8.o utf8.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jimregexp.o jimregexp.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o linenoise.o linenoise.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-aio.o jim-aio.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-array.o jim-array.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-clock.o jim-clock.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-eventloop.o jim-eventloop.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-exec.o jim-exec.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-file.o jim-file.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-history.o jim-history.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-interp.o jim-interp.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-load.o jim-load.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-namespace.o jim-namespace.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-pack.o jim-pack.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-package.o jim-package.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-posix.o jim-posix.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-readdir.o jim-readdir.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-regexp.o jim-regexp.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-signal.o jim-signal.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-syslog.o jim-syslog.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jim-tclprefix.o jim-tclprefix.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl binary.tcl >_binary.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o binary.o _binary.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl glob.tcl >_glob.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o glob.o _glob.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl nshelper.tcl >_nshelper.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o nshelper.o _nshelper.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl oo.tcl >_oo.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o oo.o _oo.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl stdlib.tcl >_stdlib.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o stdlib.o _stdlib.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl tclcompat.tcl >_tclcompat.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o tclcompat.o _tclcompat.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl tree.tcl >_tree.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o tree.o _tree.c
ar cr libjim.a _load-static-exts.o jim-subcmd.o jim-interactive.o jim-format.o jim.o utf8.o jimregexp.o linenoise.o jim-aio.o jim-array.o jim-clock.o jim-eventloop.o jim-exec.o jim-file.o jim-history.o jim-interp.o jim-load.o jim-namespace.o jim-pack.o jim-package.o jim-posix.o jim-readdir.o jim-regexp.o jim-signal.o jim-syslog.o jim-tclprefix.o binary.o glob.o nshelper.o oo.o stdlib.o tclcompat.o tree.o
ranlib libjim.a
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o jimsh.o jimsh.c
/home/pi/openocd-spi/jimtcl/autosetup/jimsh0 ./make-c-ext.tcl initjimsh.tcl >_initjimsh.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -c -o initjimsh.o _initjimsh.c
cc -Wall -I. -g -O2 -fno-unwind-tables -fno-asynchronous-unwind-tables -rdynamic -o jimsh jimsh.o initjimsh.o libjim.a -ldl
make[2]: Leaving directory '/home/pi/openocd-spi/jimtcl'
Making all in src/jtag/drivers/libjaylink
make[2]: Entering directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink'
make all-recursive
make[3]: Entering directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink'
Making all in libjaylink
make[4]: Entering directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink/libjaylink'
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-buffer.lo -MD -MP -MF .deps/libjaylink_la-buffer.Tpo -c -o libjaylink_la-buffer.lo `test -f 'buffer.c' || echo './'`buffer.c
mv -f .deps/libjaylink_la-buffer.Tpo .deps/libjaylink_la-buffer.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-core.lo -MD -MP -MF .deps/libjaylink_la-core.Tpo -c -o libjaylink_la-core.lo `test -f 'core.c' || echo './'`core.c
mv -f .deps/libjaylink_la-core.Tpo .deps/libjaylink_la-core.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-device.lo -MD -MP -MF .deps/libjaylink_la-device.Tpo -c -o libjaylink_la-device.lo `test -f 'device.c' || echo './'`device.c
mv -f .deps/libjaylink_la-device.Tpo .deps/libjaylink_la-device.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-discovery.lo -MD -MP -MF .deps/libjaylink_la-discovery.Tpo -c -o libjaylink_la-discovery.lo `test -f 'discovery.c' || echo './'`discovery.c
mv -f .deps/libjaylink_la-discovery.Tpo .deps/libjaylink_la-discovery.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-discovery_tcp.lo -MD -MP -MF .deps/libjaylink_la-discovery_tcp.Tpo -c -o libjaylink_la-discovery_tcp.lo `test -f 'discovery_tcp.c' || echo './'`discovery_tcp.c
mv -f .deps/libjaylink_la-discovery_tcp.Tpo .deps/libjaylink_la-discovery_tcp.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-emucom.lo -MD -MP -MF .deps/libjaylink_la-emucom.Tpo -c -o libjaylink_la-emucom.lo `test -f 'emucom.c' || echo './'`emucom.c
mv -f .deps/libjaylink_la-emucom.Tpo .deps/libjaylink_la-emucom.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-error.lo -MD -MP -MF .deps/libjaylink_la-error.Tpo -c -o libjaylink_la-error.lo `test -f 'error.c' || echo './'`error.c
mv -f .deps/libjaylink_la-error.Tpo .deps/libjaylink_la-error.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-fileio.lo -MD -MP -MF .deps/libjaylink_la-fileio.Tpo -c -o libjaylink_la-fileio.lo `test -f 'fileio.c' || echo './'`fileio.c
mv -f .deps/libjaylink_la-fileio.Tpo .deps/libjaylink_la-fileio.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-jtag.lo -MD -MP -MF .deps/libjaylink_la-jtag.Tpo -c -o libjaylink_la-jtag.lo `test -f 'jtag.c' || echo './'`jtag.c
mv -f .deps/libjaylink_la-jtag.Tpo .deps/libjaylink_la-jtag.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-list.lo -MD -MP -MF .deps/libjaylink_la-list.Tpo -c -o libjaylink_la-list.lo `test -f 'list.c' || echo './'`list.c
mv -f .deps/libjaylink_la-list.Tpo .deps/libjaylink_la-list.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-log.lo -MD -MP -MF .deps/libjaylink_la-log.Tpo -c -o libjaylink_la-log.lo `test -f 'log.c' || echo './'`log.c
mv -f .deps/libjaylink_la-log.Tpo .deps/libjaylink_la-log.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-socket.lo -MD -MP -MF .deps/libjaylink_la-socket.Tpo -c -o libjaylink_la-socket.lo `test -f 'socket.c' || echo './'`socket.c
mv -f .deps/libjaylink_la-socket.Tpo .deps/libjaylink_la-socket.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-strutil.lo -MD -MP -MF .deps/libjaylink_la-strutil.Tpo -c -o libjaylink_la-strutil.lo `test -f 'strutil.c' || echo './'`strutil.c
mv -f .deps/libjaylink_la-strutil.Tpo .deps/libjaylink_la-strutil.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-swd.lo -MD -MP -MF .deps/libjaylink_la-swd.Tpo -c -o libjaylink_la-swd.lo `test -f 'swd.c' || echo './'`swd.c
mv -f .deps/libjaylink_la-swd.Tpo .deps/libjaylink_la-swd.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-swo.lo -MD -MP -MF .deps/libjaylink_la-swo.Tpo -c -o libjaylink_la-swo.lo `test -f 'swo.c' || echo './'`swo.c
mv -f .deps/libjaylink_la-swo.Tpo .deps/libjaylink_la-swo.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-target.lo -MD -MP -MF .deps/libjaylink_la-target.Tpo -c -o libjaylink_la-target.lo `test -f 'target.c' || echo './'`target.c
mv -f .deps/libjaylink_la-target.Tpo .deps/libjaylink_la-target.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-transport.lo -MD -MP -MF .deps/libjaylink_la-transport.Tpo -c -o libjaylink_la-transport.lo `test -f 'transport.c' || echo './'`transport.c
mv -f .deps/libjaylink_la-transport.Tpo .deps/libjaylink_la-transport.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-transport_tcp.lo -MD -MP -MF .deps/libjaylink_la-transport_tcp.Tpo -c -o libjaylink_la-transport_tcp.lo `test -f 'transport_tcp.c' || echo './'`transport_tcp.c
mv -f .deps/libjaylink_la-transport_tcp.Tpo .deps/libjaylink_la-transport_tcp.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-util.lo -MD -MP -MF .deps/libjaylink_la-util.Tpo -c -o libjaylink_la-util.lo `test -f 'util.c' || echo './'`util.c
mv -f .deps/libjaylink_la-util.Tpo .deps/libjaylink_la-util.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-version.lo -MD -MP -MF .deps/libjaylink_la-version.Tpo -c -o libjaylink_la-version.lo `test -f 'version.c' || echo './'`version.c
mv -f .deps/libjaylink_la-version.Tpo .deps/libjaylink_la-version.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-discovery_usb.lo -MD -MP -MF .deps/libjaylink_la-discovery_usb.Tpo -c -o libjaylink_la-discovery_usb.lo `test -f 'discovery_usb.c' || echo './'`discovery_usb.c
mv -f .deps/libjaylink_la-discovery_usb.Tpo .deps/libjaylink_la-discovery_usb.Plo
/bin/bash ../libtool --tag=CC --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -MT libjaylink_la-transport_usb.lo -MD -MP -MF .deps/libjaylink_la-transport_usb.Tpo -c -o libjaylink_la-transport_usb.lo `test -f 'transport_usb.c' || echo './'`transport_usb.c
mv -f .deps/libjaylink_la-transport_usb.Tpo .deps/libjaylink_la-transport_usb.Plo
/bin/bash ../libtool --tag=CC --silent --mode=link gcc -Wall -Wextra -Werror -fvisibility=hidden -I/usr/include/libusb-1.0 -g -O2 -no-undefined -o libjaylink.la libjaylink_la-buffer.lo libjaylink_la-core.lo libjaylink_la-device.lo libjaylink_la-discovery.lo libjaylink_la-discovery_tcp.lo libjaylink_la-emucom.lo libjaylink_la-error.lo libjaylink_la-fileio.lo libjaylink_la-jtag.lo libjaylink_la-list.lo libjaylink_la-log.lo libjaylink_la-socket.lo libjaylink_la-strutil.lo libjaylink_la-swd.lo libjaylink_la-swo.lo libjaylink_la-target.lo libjaylink_la-transport.lo libjaylink_la-transport_tcp.lo libjaylink_la-util.lo libjaylink_la-version.lo libjaylink_la-discovery_usb.lo libjaylink_la-transport_usb.lo -lusb-1.0
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink/libjaylink'
make[4]: Entering directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink'
make[4]: Leaving directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink'
make[3]: Leaving directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink'
make[2]: Leaving directory '/home/pi/openocd-spi/src/jtag/drivers/libjaylink'
make[2]: Entering directory '/home/pi/openocd-spi'
Makefile:5509: warning: overriding recipe for target 'check-recursive'
Makefile:4313: warning: ignoring old recipe for target 'check-recursive'
make[3]: Entering directory '/home/pi/openocd-spi'
Makefile:5509: warning: overriding recipe for target 'check-recursive'
Makefile:4313: warning: ignoring old recipe for target 'check-recursive'
make[3]: Leaving directory '/home/pi/openocd-spi'
Updating ./doc/version.texi
restore=: && backupdir=".am$$" && \
am__cwd=`pwd` && CDPATH="${ZSH_VERSION+.}:" && cd . && \
rm -rf $backupdir && mkdir $backupdir && \
if (echo makeinfo missing; true --version) >/dev/null 2>&1; then \
for f in doc/openocd.info doc/openocd.info-[0-9] doc/openocd.info-[0-9][0-9] doc/openocd.i[0-9] doc/openocd.i[0-9][0-9]; do \
if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
done; \
else :; fi && \
cd "$am__cwd"; \
if echo makeinfo missing; true -I doc -I ./doc \
-o doc/openocd.info ./doc/openocd.texi; \
then \
rc=0; \
CDPATH="${ZSH_VERSION+.}:" && cd .; \
else \
rc=$?; \
CDPATH="${ZSH_VERSION+.}:" && cd . && \
$restore $backupdir/* `echo "./doc/openocd.info" | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
makeinfo missing
depbase=`echo src/main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/main.o -MD -MP -MF $depbase.Tpo -c -o src/main.o src/main.c &&\
mv -f $depbase.Tpo $depbase.Po
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DRELSTR=\"`./guess-rev.sh .`\" -DGITVERSION=\"`cd . && git describe`\" -DPKGBLDDATE=\"`date +%F-%R`\" -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/libopenocd_la-hello.lo -MD -MP -MF src/.deps/libopenocd_la-hello.Tpo -c -o src/libopenocd_la-hello.lo `test -f 'src/hello.c' || echo './'`src/hello.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -DRELSTR=\"-01126-g307e591f\" -DGITVERSION=\"v0.10.0-1126-g307e591f\" -DPKGBLDDATE=\"2020-01-20-21:33\" -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/libopenocd_la-hello.lo -MD -MP -MF src/.deps/libopenocd_la-hello.Tpo -c src/hello.c -o src/libopenocd_la-hello.o
mv -f src/.deps/libopenocd_la-hello.Tpo src/.deps/libopenocd_la-hello.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DRELSTR=\"`./guess-rev.sh .`\" -DGITVERSION=\"`cd . && git describe`\" -DPKGBLDDATE=\"`date +%F-%R`\" -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/libopenocd_la-openocd.lo -MD -MP -MF src/.deps/libopenocd_la-openocd.Tpo -c -o src/libopenocd_la-openocd.lo `test -f 'src/openocd.c' || echo './'`src/openocd.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -DRELSTR=\"-01126-g307e591f\" -DGITVERSION=\"v0.10.0-1126-g307e591f\" -DPKGBLDDATE=\"2020-01-20-21:33\" -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/libopenocd_la-openocd.lo -MD -MP -MF src/.deps/libopenocd_la-openocd.Tpo -c src/openocd.c -o src/libopenocd_la-openocd.o
mv -f src/.deps/libopenocd_la-openocd.Tpo src/.deps/libopenocd_la-openocd.Plo
depbase=`echo src/xsvf/xsvf.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/xsvf/xsvf.lo -MD -MP -MF $depbase.Tpo -c -o src/xsvf/xsvf.lo src/xsvf/xsvf.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/xsvf/xsvf.lo -MD -MP -MF src/xsvf/.deps/xsvf.Tpo -c src/xsvf/xsvf.c -o src/xsvf/xsvf.o
/bin/bash ./libtool --tag=CC --mode=link gcc -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -o src/xsvf/libxsvf.la src/xsvf/xsvf.lo -ldl
libtool: link: ar cru src/xsvf/.libs/libxsvf.a src/xsvf/xsvf.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib src/xsvf/.libs/libxsvf.a
libtool: link: ( cd "src/xsvf/.libs" && rm -f "libxsvf.la" && ln -s "../libxsvf.la" "libxsvf.la" )
depbase=`echo src/svf/svf.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/svf/svf.lo -MD -MP -MF $depbase.Tpo -c -o src/svf/svf.lo src/svf/svf.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/svf/svf.lo -MD -MP -MF src/svf/.deps/svf.Tpo -c src/svf/svf.c -o src/svf/svf.o
/bin/bash ./libtool --tag=CC --mode=link gcc -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -o src/svf/libsvf.la src/svf/svf.lo -ldl
libtool: link: ar cru src/svf/.libs/libsvf.a src/svf/svf.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib src/svf/.libs/libsvf.a
libtool: link: ( cd "src/svf/.libs" && rm -f "libsvf.la" && ln -s "../libsvf.la" "libsvf.la" )
depbase=`echo src/pld/pld.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/pld/pld.lo -MD -MP -MF $depbase.Tpo -c -o src/pld/pld.lo src/pld/pld.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/pld/pld.lo -MD -MP -MF src/pld/.deps/pld.Tpo -c src/pld/pld.c -o src/pld/pld.o
depbase=`echo src/pld/xilinx_bit.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/pld/xilinx_bit.lo -MD -MP -MF $depbase.Tpo -c -o src/pld/xilinx_bit.lo src/pld/xilinx_bit.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/pld/xilinx_bit.lo -MD -MP -MF src/pld/.deps/xilinx_bit.Tpo -c src/pld/xilinx_bit.c -o src/pld/xilinx_bit.o
depbase=`echo src/pld/virtex2.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/pld/virtex2.lo -MD -MP -MF $depbase.Tpo -c -o src/pld/virtex2.lo src/pld/virtex2.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/pld/virtex2.lo -MD -MP -MF src/pld/.deps/virtex2.Tpo -c src/pld/virtex2.c -o src/pld/virtex2.o
/bin/bash ./libtool --tag=CC --mode=link gcc -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -o src/pld/libpld.la src/pld/pld.lo src/pld/xilinx_bit.lo src/pld/virtex2.lo -ldl
libtool: link: ar cru src/pld/.libs/libpld.a src/pld/pld.o src/pld/xilinx_bit.o src/pld/virtex2.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib src/pld/.libs/libpld.a
libtool: link: ( cd "src/pld/.libs" && rm -f "libpld.la" && ln -s "../libpld.la" "libpld.la" )
depbase=`echo src/jtag/adapter.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/jtag/adapter.lo -MD -MP -MF $depbase.Tpo -c -o src/jtag/adapter.lo src/jtag/adapter.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/jtag/adapter.lo -MD -MP -MF src/jtag/.deps/adapter.Tpo -c src/jtag/adapter.c -o src/jtag/adapter.o
depbase=`echo src/jtag/core.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/jtag/core.lo -MD -MP -MF $depbase.Tpo -c -o src/jtag/core.lo src/jtag/core.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -I./src -I./src/helper -DPKGDATADIR=\"/usr/local/share/openocd\" -DBINDIR=\"/usr/local/bin\" -I./jimtcl -I./jimtcl -Wall -Wstrict-prototypes -Wformat-security -Wshadow -Wextra -Wno-unused-parameter -Wbad-function-cast -Wcast-align -Wredundant-decls -Werror -g -O2 -MT src/jtag/core.lo -MD -MP -MF src/jtag/.deps/core.Tpo -c src/jtag/core.c -o src/jtag/core.o