[ create a new paste ] login | about

Link: http://codepad.org/pCUG2jXK    [ raw code | fork ]

Plain Text, pasted on Oct 11:
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
-------------------BEGIN
 * Package:    sys-devel/gcc-5.4.0-r3
 * Repository: gentoo
 * Maintainer: toolchain@gentoo.org
 * USE:        abi_mips_n32 cxx debug elibc_glibc gcj kernel_linux mips multilib nls nptl userland_GNU
 * FEATURES:   preserve-libs sandbox userpriv usersandbox
>>> Unpacking source...
>>> Unpacking gcc-5.4.0.tar.bz2 to /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work
>>> Unpacking gcc-5.4.0-patches-1.4.tar.bz2 to /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work
>>> Unpacking gcc-5.4.0-uclibc-patches-1.0.tar.bz2 to /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work
>>> Unpacking gcc-5.4.0-piepatches-v0.6.5.tar.bz2 to /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work
>>> Unpacking gcc-4.4.3-specs-0.2.0.tar.bz2 to /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work
>>> Source unpacked in /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work
>>> Preparing source in /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0 ...
 * Applying Gentoo patches ...
 *   05_all_gcc-spec-env.patch ...
 [ ok ]
 *   09_all_default-ssp.patch ...
 [ ok ]
 *   10_all_default-fortify-source.patch ...
 [ ok ]
 *   11_all_default-warn-format-security.patch ...
 [ ok ]
 *   12_all_default-warn-trampolines.patch ...
 [ ok ]
 *   20_all_msgfmt-libstdc++-link.patch ...
 [ ok ]
 *   24_all_boehm-gc-execinfo.patch ...
 [ ok ]
 *   25_all_alpha-mieee-default.patch ...
 [ ok ]
 *   26_all_alpha-asm-mcpu.patch ...
 [ ok ]
 *   29_all_arm_armv4t-default.patch ...
 [ ok ]
 *   34_all_ia64_note.GNU-stack.patch ...
 [ ok ]
 *   34_all_libjava-classpath-locale-sort.patch ...
 [ ok ]
 *   38_all_sh_pr24836_all-archs.patch ...
 [ ok ]
 *   42_all_superh_default-multilib.patch ...
 [ ok ]
 *   50_all_libiberty-asprintf.patch ...
 [ ok ]
 *   51_all_libiberty-pic.patch ...
 [ ok ]
 *   52_all_netbsd-Bsymbolic.patch ...
 [ ok ]
 *   53_all_libitm-no-fortify-source.patch ...
 [ ok ]
 *   67_all_gcc-poison-system-directories.patch ...
 [ ok ]
 *   70_all_gcc-5-pr546752.patch ...
 [ ok ]
 *   71_all_gcc-5-march-native-pr67310.patch ...
 [ ok ]
 *   74_all_gcc5_isl-dl.patch ...
 [ ok ]
 *   77_all_gcc-5-pr65958.patch ...
 [ ok ]
 *   78_all_gcc-5-pr71442.patch ...
 [ ok ]
 *   90_all_pr55930-dependency-tracking.patch ...
 [ ok ]
 *   91_all_compatibility_fix_with_perl_5.26.patch ...
 [ ok ]
 * Done with patching
 * Applying uClibc patches ...
 *   90_all_100-uclibc-conf.patch ...
 [ ok ]
 *   90_all_302-c99-snprintf.patch ...
 [ ok ]
 * Done with patching
 * Applying pie patches ...
 *   01_all_gcc53_configure.patch ...
 [ ok ]
 *   02_all_gcc48_config.in.patch ...
 [ ok ]
 *   03_all_gcc51_Makefile.in.patch ...
 [ ok ]
 *   05_all_gcc48_gcc.c.patch ...
 [ ok ]
 *   16_all_gcc47_nopie_option.patch ...
 [ ok ]
 *   20_all_gcc49_config_crtbeginp.patch ...
 [ ok ]
 *   24_all_gcc49_invoke.texi.patch ...
 [ ok ]
 *   33_all_gcc48_config_rs6000.patch ...
 [ ok ]
 *   34_all_gcc51_config_i386.patch ...
 [ ok ]
 *   35_all_gcc51_config_arm.patch ...
 [ ok ]
 *   36_all_gcc51_config_mips.patch ...
 [ ok ]
 *   37_all_gcc48_config_ia64.patch ...
 [ ok ]
 *   40_all_gcc49_config_esp.patch ...
 [ ok ]
 * Done with patching
 * Updating gcc to use automatic SSP building ...
 * Copying ecj-4.5.jar
 * Running elibtoolize in: gcc-5.4.0/
 *   Applying portage/2.2 patch ...
 *   Applying sed/1.5.6 patch ...
 *   Applying as-needed/2.2.6 patch ...
 * Using GNU config files from /usr/share/gnuconfig
 *   Updating libjava/libltdl/config.sub
 [ ok ]
 *   Updating libjava/classpath/config.sub
 [ ok ]
 *   Updating config.sub
 [ ok ]
 *   Updating libjava/libltdl/config.guess
 [ ok ]
 *   Updating libjava/classpath/config.guess
 [ ok ]
 *   Updating config.guess
 [ ok ]
 * Fixing misc issues in configure files
 * Applying gcc-configure-texinfo.patch ...
 [ ok ]
 * Touching generated files
 *   Touching gcc/cstamp-h.in
 *   Touching gcc/config.in
 *   Touching boehm-gc/aclocal.m4
 *   Touching boehm-gc/Makefile.in
 *   Touching boehm-gc/configure
>>> Source prepared.
>>> Configuring source in /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0 ...
 * CFLAGS="-O2 -march=loongson2f -Wa,-mfix-loongson2f-nop -pipe"
 * CXXFLAGS="-O2 -march=loongson2f -Wa,-mfix-loongson2f-nop -pipe"
 * LDFLAGS="-Wl,-O1 -Wl,--as-needed"

 * PREFIX:          /usr
 * BINPATH:         /usr/mips64el-unknown-linux-gnu/gcc-bin/5.4.0
 * LIBPATH:         /usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0
 * DATAPATH:        /usr/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0
 * STDCXX_INCDIR:   /usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/include/g++-v5

 * Languages:       c,c++,java

 * Configuring GCC with: 
 * 	--host=mips64el-unknown-linux-gnu 
 * 	--build=mips64el-unknown-linux-gnu 
 * 	--prefix=/usr 
 * 	--bindir=/usr/mips64el-unknown-linux-gnu/gcc-bin/5.4.0 
 * 	--includedir=/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/include 
 * 	--datadir=/usr/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0 
 * 	--mandir=/usr/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0/man 
 * 	--infodir=/usr/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0/info 
 * 	--with-gxx-include-dir=/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/include/g++-v5 
 * 	--with-python-dir=/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0/python 
 * 	--enable-languages=c,c++,java 
 * 	--enable-obsolete 
 * 	--enable-secureplt 
 * 	--disable-werror 
 * 	--with-system-zlib 
 * 	--enable-nls 
 * 	--without-included-gettext 
 * 	--enable-checking=yes 
 * 	--with-bugurl=https://bugs.gentoo.org/ 
 * 	--with-pkgversion=Gentoo 5.4.0-r3 p1.4, pie-0.6.5 
 * 	--enable-libstdcxx-time 
 * 	--enable-shared 
 * 	--enable-threads=posix 
 * 	--enable-__cxa_atexit 
 * 	--enable-clocale=gnu 
 * 	--enable-multilib 
 * 	--disable-altivec 
 * 	--disable-fixed-point 
 * 	--with-abi=n32 
 * 	--disable-libgomp 
 * 	--disable-libmudflap 
 * 	--disable-libssp 
 * 	--disable-libcilkrts 
 * 	--disable-libmpx 
 * 	--disable-vtable-verify 
 * 	--disable-libvtv 
 * 	--disable-libquadmath 
 * 	--enable-lto 
 * 	--without-isl 
 * 	--disable-libsanitizer

/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/configure --host=mips64el-unknown-linux-gnu --build=mips64el-unknown-linux-gnu --prefix=/usr --bindir=/usr/mips64el-unknown-linux-gnu/gcc-bin/5.4.0 --includedir=/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/include --datadir=/usr/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0 --mandir=/usr/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0/man --infodir=/usr/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0/info --with-gxx-include-dir=/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/include/g++-v5 --with-python-dir=/share/gcc-data/mips64el-unknown-linux-gnu/5.4.0/python --enable-languages=c,c++,java --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --enable-nls --without-included-gettext --enable-checking=yes --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion=Gentoo 5.4.0-r3 p1.4, pie-0.6.5 --enable-libstdcxx-time --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-multilib --disable-altivec --disable-fixed-point --with-abi=n32 --disable-libgomp --disable-libmudflap --disable-libssp --disable-libcilkrts --disable-libmpx --disable-vtable-verify --disable-libvtv --disable-libquadmath --enable-lto --without-isl --disable-libsanitizer
configure: loading site script /usr/share/config.site
checking build system type... mips64el-unknown-linux-gnu
checking host system type... mips64el-unknown-linux-gnu
checking target system type... mips64el-unknown-linux-gnu
checking for a BSD-compatible install... /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
checking for gawk... gawk
checking for libatomic support... yes
checking for libitm support... no
checking for mips64el-unknown-linux-gnu-gcc... mips64el-unknown-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether mips64el-unknown-linux-gnu-gcc accepts -g... yes
checking for mips64el-unknown-linux-gnu-gcc option to accept ISO C89... none needed
checking for mips64el-unknown-linux-gnu-g++... mips64el-unknown-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether mips64el-unknown-linux-gnu-g++ accepts -g... yes
checking whether g++ accepts -static-libstdc++ -static-libgcc... yes
checking for mips64el-unknown-linux-gnu-gnatbind... no
checking for gnatbind... no
checking for mips64el-unknown-linux-gnu-gnatmake... no
checking for gnatmake... no
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for objdir... .libs
checking for the correct version of gmp.h... yes
checking for the correct version of mpfr.h... yes
checking for the correct version of mpc.h... yes
checking for the correct version of the gmp/mpfr/mpc libraries... yes
*** This configuration is not supported in the following subdirectories:
     zlib target-libquadmath target-libitm target-libmpx gnattools gotools target-libada target-libgfortran target-libgo target-libbacktrace target-libobjc target-libgomp target-libcilkrts target-liboffloadmic target-libsanitizer target-libvtv target-libssp
    (Any other directories should still work fine.)
checking for default BUILD_CONFIG... bootstrap-debug
checking for --enable-vtable-verify... no
checking for bison... bison -y
checking for bison... bison
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... makeinfo
checking for expect... no
checking for runtest... no
checking for mips64el-unknown-linux-gnu-ar... mips64el-unknown-linux-gnu-ar
checking for mips64el-unknown-linux-gnu-as... mips64el-unknown-linux-gnu-as
checking for mips64el-unknown-linux-gnu-dlltool... no
checking for dlltool... no
checking for ld... (cached) /usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/bin/ld
checking for mips64el-unknown-linux-gnu-ld... (cached) /usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/bin/ld
checking for mips64el-unknown-linux-gnu-lipo... no
checking for lipo... no
checking for mips64el-unknown-linux-gnu-nm... mips64el-unknown-linux-gnu-nm
checking for mips64el-unknown-linux-gnu-ranlib... mips64el-unknown-linux-gnu-ranlib
checking for mips64el-unknown-linux-gnu-strip... mips64el-unknown-linux-gnu-strip
checking for mips64el-unknown-linux-gnu-windres... no
checking for windres... no
checking for mips64el-unknown-linux-gnu-windmc... no
checking for windmc... no
checking for mips64el-unknown-linux-gnu-objcopy... mips64el-unknown-linux-gnu-objcopy
checking for mips64el-unknown-linux-gnu-objdump... mips64el-unknown-linux-gnu-objdump
checking for mips64el-unknown-linux-gnu-readelf... mips64el-unknown-linux-gnu-readelf
checking for cc... cc
checking for c++... c++
checking for gcc... gcc
checking for gcj... no
checking for gfortran... no
checking for gccgo... no
checking for ar... /usr/mips64el-unknown-linux-gnu/bin/ar
checking for as... /usr/mips64el-unknown-linux-gnu/bin/as
checking for dlltool... no
checking for dlltool... no
checking for ld... /usr/mips64el-unknown-linux-gnu/bin/ld
checking for lipo... no
checking for lipo... no
checking for nm... /usr/mips64el-unknown-linux-gnu/bin/nm
checking for objcopy... /usr/mips64el-unknown-linux-gnu/bin/objcopy
checking for objdump... /usr/mips64el-unknown-linux-gnu/bin/objdump
checking for ranlib... /usr/mips64el-unknown-linux-gnu/bin/ranlib
checking for readelf... /usr/mips64el-unknown-linux-gnu/bin/readelf
checking for strip... /usr/mips64el-unknown-linux-gnu/bin/strip
checking for windres... no
checking for windres... no
checking for windmc... no
checking for windmc... no
checking where to find the target ar... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target as... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target cc... just compiled
checking where to find the target c++... just compiled
checking where to find the target c++ for libstdc++... just compiled
checking where to find the target dlltool... host tool
checking where to find the target gcc... just compiled
checking where to find the target gcj... just compiled
checking where to find the target gfortran... host tool
checking where to find the target gccgo... host tool
checking where to find the target ld... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target lipo... host tool
checking where to find the target nm... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target objcopy... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target objdump... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target ranlib... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target readelf... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target strip... pre-installed in /usr/mips64el-unknown-linux-gnu/bin
checking where to find the target windres... host tool
checking where to find the target windmc... host tool
checking whether to enable maintainer-specific portions of Makefiles... no
configure: creating ./config.status
config.status: creating Makefile
>>> Source configured.
>>> Compiling source in /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0 ...
 * Compiling gcc (bootstrap-lean)...
make -j1 'LDFLAGS=-Wl,-O1 -Wl,--as-needed' STAGE1_CFLAGS= LIBPATH=/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0 'BOOT_CFLAGS=-mabi=n32 -O2 -march=loongson2f -Wa,-mfix-loongson2f-nop -pipe' bootstrap-lean 
echo stage3 > stage_final
make[1]: Entering directory '/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/build'
make[2]: Entering directory '/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/build'
make[2]: Leaving directory '/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/build'
make[2]: Entering directory '/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/build'
Configuring stage 1 in ./intl
configure: loading site script /usr/share/config.site
configure: creating cache ./config.cache
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... /usr/bin/gmsgfmt
checking for xgettext... no
checking for msgmerge... no
found gmsgfmt program is not GNU msgfmt; ignore it
checking for mips64el-unknown-linux-gnu-gcc... mips64el-unknown-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether mips64el-unknown-linux-gnu-gcc accepts -g... yes
checking for mips64el-unknown-linux-gnu-gcc option to accept ISO C89... none needed
checking build system type... mips64el-unknown-linux-gnu
checking host system type... mips64el-unknown-linux-gnu
checking for mips64el-unknown-linux-gnu-ranlib... mips64el-unknown-linux-gnu-ranlib
checking for library containing strerror... none required
checking how to run the C preprocessor... mips64el-unknown-linux-gnu-gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
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 off_t... yes
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... yes
checking whether we are using the GNU C Library 2.1 or newer... yes
checking whether integer division by zero raises SIGFPE... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unsigned long long... yes
checking for inttypes.h... yes
checking whether the inttypes.h PRIxNN macros are broken... no
checking for ld used by GCC... /usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/bin/ld
checking if the linker (/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking argz.h usability... yes
checking argz.h presence... yes
checking for argz.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking nl_types.h usability... yes
checking nl_types.h presence... yes
checking for nl_types.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for feof_unlocked... yes
checking for fgets_unlocked... yes
checking for getc_unlocked... yes
checking for getcwd... yes
checking for getegid... yes
checking for geteuid... yes
checking for getgid... yes
checking for getuid... yes
checking for mempcpy... yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for strtoul... yes
checking for tsearch... yes
checking for __argz_count... yes
checking for __argz_stringify... yes
checking for __argz_next... yes
checking for __fsetlocking... yes
checking for iconv... yes
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for nl_langinfo and CODESET... yes
checking for LC_MESSAGES... yes
checking for bison... bison
checking version of bison... 3.0.2, ok
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for aclocal... aclocal
checking for autoconf... autoconf
checking for autoheader... autoheader
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.intl
config.status: creating config.h
config.status: executing default-1 commands
Configuring stage 1 in ./lto-plugin
configure: loading site script /usr/share/config.site
configure: creating cache ./config.cache
checking build system type... mips64el-unknown-linux-gnu
checking host system type... mips64el-unknown-linux-gnu
checking target system type... mips64el-unknown-linux-gnu
checking for a BSD-compatible install... /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for mips64el-unknown-linux-gnu-gcc... mips64el-unknown-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether mips64el-unknown-linux-gnu-gcc accepts -g... yes
checking for mips64el-unknown-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of mips64el-unknown-linux-gnu-gcc... gcc3
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking whether mips64el-unknown-linux-gnu-gcc supports -Wall... yes
checking for -static-libgcc... yes
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 mips64el-unknown-linux-gnu-gcc... /usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/bin/ld
checking if the linker (/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... mips64el-unknown-linux-gnu-nm
checking the name lister (mips64el-unknown-linux-gnu-nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/bin/ld option to reload object files... -r
checking for mips64el-unknown-linux-gnu-objdump... mips64el-unknown-linux-gnu-objdump
checking how to recognize dependent libraries... pass_all
checking for mips64el-unknown-linux-gnu-ar... mips64el-unknown-linux-gnu-ar
checking for mips64el-unknown-linux-gnu-strip... mips64el-unknown-linux-gnu-strip
checking for mips64el-unknown-linux-gnu-ranlib... mips64el-unknown-linux-gnu-ranlib
checking command to parse mips64el-unknown-linux-gnu-nm output from mips64el-unknown-linux-gnu-gcc object... ok
checking how to run the C preprocessor... mips64el-unknown-linux-gnu-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 mips64el-unknown-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for mips64el-unknown-linux-gnu-gcc option to produce PIC... -fPIC -DPIC
checking if mips64el-unknown-linux-gnu-gcc PIC flag -fPIC -DPIC works... yes
checking if mips64el-unknown-linux-gnu-gcc static flag -static works... yes
checking if mips64el-unknown-linux-gnu-gcc supports -c -o file.o... yes
checking if mips64el-unknown-linux-gnu-gcc supports -c -o file.o... (cached) yes
checking whether the mips64el-unknown-linux-gnu-gcc linker (/usr/lib/gcc/mips64el-unknown-linux-gnu/5.4.0/../../../../mips64el-unknown-linux-gnu/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 int64_t... yes
checking for uint64_t... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
Configuring stage 1 in ./libiberty
configure: loading site script /usr/share/config.site
configure: creating cache ./config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000 --split-size=5000000
checking for perl... perl
checking build system type... mips64el-unknown-linux-gnu
checking host system type... mips64el-unknown-linux-gnu
checking for mips64el-unknown-linux-gnu-ar... mips64el-unknown-linux-gnu-ar
checking for mips64el-unknown-linux-gnu-ranlib... mips64el-unknown-linux-gnu-ranlib
checking whether to install libiberty headers and static library... no
configure: target_header_dir = 
checking for mips64el-unknown-linux-gnu-gcc... mips64el-unknown-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether mips64el-unknown-linux-gnu-gcc accepts -g... yes
checking for mips64el-unknown-linux-gnu-gcc option to accept ISO C89... none needed
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking how to run the C preprocessor... mips64el-unknown-linux-gnu-gcc -E
checking whether mips64el-unknown-linux-gnu-gcc supports -W... yes
checking whether mips64el-unknown-linux-gnu-gcc supports -Wall... yes
checking whether mips64el-unknown-linux-gnu-gcc supports -Wwrite-strings... yes
checking whether mips64el-unknown-linux-gnu-gcc supports -Wc++-compat... yes
checking whether mips64el-unknown-linux-gnu-gcc supports -Wstrict-prototypes... yes
checking whether mips64el-unknown-linux-gnu-gcc supports -pedantic ... yes
checking whether mips64el-unknown-linux-gnu-gcc and cc understand -c and -o together... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -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 whether byte ordering is bigendian... no
checking for a BSD-compatible install... /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c
checking for sys/file.h... yes
checking for sys/param.h... yes
checking for limits.h... yes
checking for stdlib.h... (cached) yes
checking for malloc.h... yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/time.h... yes
checking for time.h... yes
checking for sys/resource.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/mman.h... yes
checking for fcntl.h... yes
checking for alloca.h... yes
checking for sys/pstat.h... no
checking for sys/sysmp.h... no
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
checking for sys/sysctl.h... yes
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
checking for process.h... no
checking for sys/prctl.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
checking size of int... 4
checking size of long... 4
checking for long long... yes
checking size of long long... 8
checking for a 64-bit type... uint64_t
checking for intptr_t... yes
checking for uintptr_t... yes
checking for ssize_t... yes
checking for pid_t... yes
checking for library containing strerror... none required
checking for asprintf... yes
checking for atexit... yes
checking for basename... yes
checking for bcmp... yes
checking for bcopy... yes
checking for bsearch... yes
checking for bzero... yes
checking for calloc... yes
checking for clock... yes
checking for ffs... yes
checking for getcwd... yes
checking for getpagesize... yes
checking for gettimeofday... yes
checking for index... yes
checking for insque... yes
checking for memchr... yes
checking for memcmp... yes
checking for memcpy... yes
checking for memmem... yes
checking for memmove... yes
checking for mempcpy... yes
checking for memset... yes
checking for mkstemps... yes
checking for putenv... yes
checking for random... yes
checking for rename... yes
checking for rindex... yes
checking for setenv... yes
checking for snprintf... yes
checking for sigsetmask... yes
checking for stpcpy... yes
checking for stpncpy... yes
checking for strcasecmp... yes
checking for strchr... yes
checking for strdup... yes
checking for strncasecmp... yes
checking for strndup... yes
checking for strnlen... yes
checking for strrchr... yes
checking for strstr... yes
checking for strtod... yes
checking for strtol... yes
checking for strtoul... yes
checking for strtoll... yes
checking for strtoull... yes
checking for strverscmp... yes
checking for tmpnam... yes
checking for vasprintf... yes
checking for vfprintf... yes
checking for vprintf... yes
checking for vsnprintf... yes
checking for vsprintf... yes
checking for waitpid... yes
checking for setproctitle... no
checking whether alloca needs Cray hooks... no
checking stack direction for C alloca... -1
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
checking for sys_errlist... yes
checking for sys_nerr... yes
checking for sys_siglist... yes
checking for external symbol _system_configuration... no
checking for __fsetlocking... yes
checking for canonicalize_file_name... yes
checking for dup3... yes
checking for getrlimit... yes
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
checking for on_exit... yes
checking for psignal... yes
checking for pstat_getdynamic... no
checking for pstat_getstatic... no
checking for realpath... yes
checking for setrlimit... yes
checking for sbrk... yes
checking for spawnve... no
checking for spawnvpe... no
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
checking for sysctl... yes
checking for sysmp... no
checking for table... no
checking for times... yes
checking for wait3... yes
checking for wait4... yes
checking whether basename is declared... no
checking whether ffs is declared... yes
checking whether asprintf is declared... no
checking whether vasprintf is declared... no
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking whether calloc is declared... yes
checking whether getenv is declared... yes
checking whether getopt is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether sbrk is declared... yes
checking whether strtol is declared... yes
checking whether strtoul is declared... yes
checking whether strtoll is declared... yes
checking whether strtoull is declared... yes
checking whether strverscmp is declared... no
checking whether canonicalize_file_name must be declared... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for working strncmp... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating config.h
config.status: executing default commands
make[3]: Entering directory '/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/build/libiberty'
if [ x"-fPIC" != x ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
touch stamp-picdir
if [ x"" != x ] && [ ! -d noasan ]; then \
  mkdir noasan; \
else true; fi
touch stamp-noasandir
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/regex.c -o pic/regex.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/regex.c -o noasan/regex.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/regex.c -o regex.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cplus-dem.c -o noasan/cplus-dem.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cplus-dem.c -o cplus-dem.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cp-demangle.c -o noasan/cp-demangle.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cp-demangle.c -o cp-demangle.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/md5.c -o pic/md5.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/md5.c -o noasan/md5.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/md5.c -o md5.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/sha1.c -o pic/sha1.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/sha1.c -o noasan/sha1.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/sha1.c -o sha1.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/alloca.c -o pic/alloca.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/alloca.c -o noasan/alloca.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/alloca.c -o alloca.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/argv.c -o pic/argv.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/argv.c -o noasan/argv.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/argv.c -o argv.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/choose-temp.c -o noasan/choose-temp.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/choose-temp.c -o choose-temp.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/concat.c -o pic/concat.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/concat.c -o noasan/concat.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/concat.c -o concat.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cp-demint.c -o pic/cp-demint.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cp-demint.c -o noasan/cp-demint.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/cp-demint.c -o cp-demint.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/crc32.c -o pic/crc32.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/crc32.c -o noasan/crc32.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/crc32.c -o crc32.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/d-demangle.c -o pic/d-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/d-demangle.c -o noasan/d-demangle.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/d-demangle.c -o d-demangle.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/dwarfnames.c -o pic/dwarfnames.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/dwarfnames.c -o noasan/dwarfnames.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/dwarfnames.c -o dwarfnames.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/dyn-string.c -o noasan/dyn-string.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/dyn-string.c -o dyn-string.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fdmatch.c -o noasan/fdmatch.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fdmatch.c -o fdmatch.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fibheap.c -o pic/fibheap.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fibheap.c -o noasan/fibheap.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fibheap.c -o fibheap.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/filename_cmp.c -o noasan/filename_cmp.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/filename_cmp.c -o filename_cmp.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/floatformat.c -o noasan/floatformat.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/floatformat.c -o floatformat.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fnmatch.c -o noasan/fnmatch.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fnmatch.c -o fnmatch.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fopen_unlocked.c -o noasan/fopen_unlocked.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/fopen_unlocked.c -o fopen_unlocked.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getopt.c -o noasan/getopt.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getopt.c -o getopt.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getopt1.c -o noasan/getopt1.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getopt1.c -o getopt1.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getpwd.c -o noasan/getpwd.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getpwd.c -o getpwd.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getruntime.c -o noasan/getruntime.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/getruntime.c -o getruntime.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/hashtab.c -o noasan/hashtab.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/hashtab.c -o hashtab.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/hex.c -o pic/hex.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/hex.c -o noasan/hex.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/hex.c -o hex.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/lbasename.c -o pic/lbasename.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/lbasename.c -o noasan/lbasename.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/lbasename.c -o lbasename.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/lrealpath.c -o pic/lrealpath.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/lrealpath.c -o noasan/lrealpath.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/lrealpath.c -o lrealpath.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
else true; fi
if [ x"" != x ]; then \
  mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/make-relative-prefix.c -o noasan/make-relative-prefix.o; \
else true; fi
mips64el-unknown-linux-gnu-gcc -c -DHAVE_CONFIG_H   -I. -I/var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /var/tmp/portage/sys-devel/gcc-5.4.0-r3/work/gcc-5.4.0/libiberty/make-relative-prefix.c -o make-relative-prefix.o
if [ x"-fPIC" != x ]; then \
  mips64el-unknown-linux-gn


Create a new paste based on this one


Comments: