· 4 years ago · Apr 02, 2021, 10:50 AM
1julian@LinuxBot:~$ cd osdev
2julian@LinuxBot:~/osdev$ ls
3bin boot.bin diskimg.dd emu mountloop src tools
4julian@LinuxBot:~/osdev$ cd tools
5julian@LinuxBot:~/osdev/tools$ ls
6binutils-gdb build-binutils build-gcc build.sh gcc opt
7julian@LinuxBot:~/osdev/tools$ ./build.sh
8mkdir: cannot create directory ‘build-binutils’: File exists
9./build.sh: line 10: ../binutils/configure: No such file or directory
10make: *** No targets specified and no makefile found. Stop.
11make: *** No rule to make target 'install'. Stop.
12x86-64-elf-as is not in the path
13mkdir: cannot create directory ‘build-gcc’: File exists
14checking build system type... x86_64-pc-linux-gnu
15checking host system type... x86_64-pc-linux-gnu
16checking target system type... x86-64-elf
17checking for a BSD-compatible install... /usr/bin/install -c
18checking whether ln works... yes
19checking whether ln -s works... yes
20checking for a sed that does not truncate output... /bin/sed
21checking for gawk... gawk
22checking for libatomic support... no
23checking for libitm support... no
24checking for libsanitizer support... no
25checking for libvtv support... no
26checking for libhsail-rt support... no
27checking for libphobos support... no
28checking for gcc... gcc
29checking whether the C compiler works... yes
30checking for C compiler default output file name... a.out
31checking for suffix of executables...
32checking whether we are cross compiling... no
33checking for suffix of object files... o
34checking whether we are using the GNU C compiler... yes
35checking whether gcc accepts -g... yes
36checking for gcc option to accept ISO C89... none needed
37checking for g++... g++
38checking whether we are using the GNU C++ compiler... yes
39checking whether g++ accepts -g... yes
40checking whether g++ accepts -static-libstdc++ -static-libgcc... yes
41checking for gnatbind... no
42checking for gnatmake... no
43checking whether compiler driver understands Ada... no
44checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
45checking whether g++ supports C++11 features by default... yes
46checking for objdir... .libs
47checking for the correct version of gmp.h... yes
48checking for the correct version of mpfr.h... yes
49checking for the correct version of mpc.h... no
50configure: error: Building GCC requires GMP 4.2+, MPFR 3.1.0+ and MPC 0.8.0+.
51Try the --with-gmp, --with-mpfr and/or --with-mpc options to specify
52their locations. Source code for these libraries can be found at
53their respective hosting sites as well as at
54https://gcc.gnu.org/pub/gcc/infrastructure/. See also
55http://gcc.gnu.org/install/prerequisites.html for additional info. If
56you obtained GMP, MPFR and/or MPC from a vendor distribution package,
57make sure that you have installed both the libraries and the header
58files. They may be located in separate packages.
59make: *** No rule to make target 'all-gcc'. Stop.
60make: *** No rule to make target 'all-target-libgcc'. Stop.
61make: *** No rule to make target 'install-gcc'. Stop.
62make: *** No rule to make target 'install-target-libgcc'. Stop.
63julian@LinuxBot:~/osdev/tools$ nano build.sh
64julian@LinuxBot:~/osdev/tools$ ./build.sh
65mkdir: cannot create directory ‘build-binutils’: File exists
66./build.sh: line 10: ../binutils/configure: No such file or directory
67make: *** No targets specified and no makefile found. Stop.
68make: *** No rule to make target 'install'. Stop.
69x86_64-elf-as is not in the path
70mkdir: cannot create directory ‘build-gcc’: File exists
71checking build system type... x86_64-pc-linux-gnu
72checking host system type... x86_64-pc-linux-gnu
73checking target system type... x86_64-pc-elf
74checking for a BSD-compatible install... /usr/bin/install -c
75checking whether ln works... yes
76checking whether ln -s works... yes
77checking for a sed that does not truncate output... /bin/sed
78checking for gawk... gawk
79checking for libatomic support... no
80checking for libitm support... no
81checking for libsanitizer support... no
82checking for libvtv support... no
83checking for libhsail-rt support... no
84checking for libphobos support... no
85checking for gcc... gcc
86checking whether the C compiler works... yes
87checking for C compiler default output file name... a.out
88checking for suffix of executables...
89checking whether we are cross compiling... no
90checking for suffix of object files... o
91checking whether we are using the GNU C compiler... yes
92checking whether gcc accepts -g... yes
93checking for gcc option to accept ISO C89... none needed
94checking for g++... g++
95checking whether we are using the GNU C++ compiler... yes
96checking whether g++ accepts -g... yes
97checking whether g++ accepts -static-libstdc++ -static-libgcc... yes
98checking for gnatbind... no
99checking for gnatmake... no
100checking whether compiler driver understands Ada... no
101checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
102checking whether g++ supports C++11 features by default... yes
103checking for objdir... .libs
104checking for the correct version of gmp.h... yes
105checking for the correct version of mpfr.h... yes
106checking for the correct version of mpc.h... no
107configure: error: Building GCC requires GMP 4.2+, MPFR 3.1.0+ and MPC 0.8.0+.
108Try the --with-gmp, --with-mpfr and/or --with-mpc options to specify
109their locations. Source code for these libraries can be found at
110their respective hosting sites as well as at
111https://gcc.gnu.org/pub/gcc/infrastructure/. See also
112http://gcc.gnu.org/install/prerequisites.html for additional info. If
113you obtained GMP, MPFR and/or MPC from a vendor distribution package,
114make sure that you have installed both the libraries and the header
115files. They may be located in separate packages.
116make: *** No rule to make target 'all-gcc'. Stop.
117make: *** No rule to make target 'all-target-libgcc'. Stop.
118make: *** No rule to make target 'install-gcc'. Stop.
119make: *** No rule to make target 'install-target-libgcc'. Stop.
120julian@LinuxBot:~/osdev/tools$ gmplayerdvd
121/usr/bin/vlcdvd: 76: cd: can't cd to /etc/mtab
122julian@LinuxBot:~/osdev/tools$ gmplayerdvd --version
123/usr/bin/vlcdvd: 76: cd: can't cd to /etc/mtab
124julian@LinuxBot:~/osdev/tools$ sudo apt install libgmp3-dev
125[sudo] password for julian:
126Reading package lists... Done
127Building dependency tree
128Reading state information... Done
129libgmp3-dev is already the newest version (2:6.2.0+dfsg-4).
1300 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
131julian@LinuxBot:~/osdev/tools$ sudo apt install libmpc-dev
132Reading package lists... Done
133Building dependency tree
134Reading state information... Done
135The following NEW packages will be installed:
136 libmpc-dev
1370 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
138Need to get 50,5 kB of archives.
139After this operation, 280 kB of additional disk space will be used.
140Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libmpc-dev amd64 1.1.0-1 [50,5 kB]
141Fetched 50,5 kB in 0s (376 kB/s)
142Selecting previously unselected package libmpc-dev:amd64.
143(Reading database ... 373150 files and directories currently installed.)
144Preparing to unpack .../libmpc-dev_1.1.0-1_amd64.deb ...
145Unpacking libmpc-dev:amd64 (1.1.0-1) ...
146Setting up libmpc-dev:amd64 (1.1.0-1) ...
147julian@LinuxBot:~/osdev/tools$ sudo apt install libmpfr-dev
148Reading package lists... Done
149Building dependency tree
150Reading state information... Done
151libmpfr-dev is already the newest version (4.0.2-1).
1520 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
153julian@LinuxBot:~/osdev/tools$ ./build.sh
154mkdir: cannot create directory ‘build-binutils’: File exists
155./build.sh: line 10: ../binutils/configure: No such file or directory
156make: *** No targets specified and no makefile found. Stop.
157make: *** No rule to make target 'install'. Stop.
158x86_64-elf-as is not in the path
159mkdir: cannot create directory ‘build-gcc’: File exists
160checking build system type... x86_64-pc-linux-gnu
161checking host system type... x86_64-pc-linux-gnu
162checking target system type... x86_64-pc-elf
163checking for a BSD-compatible install... /usr/bin/install -c
164checking whether ln works... yes
165checking whether ln -s works... yes
166checking for a sed that does not truncate output... /bin/sed
167checking for gawk... gawk
168checking for libatomic support... no
169checking for libitm support... no
170checking for libsanitizer support... no
171checking for libvtv support... no
172checking for libhsail-rt support... no
173checking for libphobos support... no
174checking for gcc... gcc
175checking whether the C compiler works... yes
176checking for C compiler default output file name... a.out
177checking for suffix of executables...
178checking whether we are cross compiling... no
179checking for suffix of object files... o
180checking whether we are using the GNU C compiler... yes
181checking whether gcc accepts -g... yes
182checking for gcc option to accept ISO C89... none needed
183checking for g++... g++
184checking whether we are using the GNU C++ compiler... yes
185checking whether g++ accepts -g... yes
186checking whether g++ accepts -static-libstdc++ -static-libgcc... yes
187checking for gnatbind... no
188checking for gnatmake... no
189checking whether compiler driver understands Ada... no
190checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
191checking whether g++ supports C++11 features by default... yes
192checking for objdir... .libs
193checking for the correct version of gmp.h... yes
194checking for the correct version of mpfr.h... yes
195checking for the correct version of mpc.h... yes
196checking for the correct version of the gmp/mpfr/mpc libraries... yes
197checking for isl 0.15 or later... no
198required isl version is 0.15 or later
199*** This configuration is not supported in the following subdirectories:
200 target-libgomp target-libatomic target-libitm target-libsanitizer target-libvtv target-libphobos gnattools gotools target-libada target-libhsail-rt target-zlib target-libbacktrace target-libgfortran target-libgo target-libffi target-libobjc target-liboffloadmic
201 (Any other directories should still work fine.)
202checking for default BUILD_CONFIG...
203checking for --enable-vtable-verify... no
204checking for bison... bison -y
205checking for bison... bison
206checking for gm4... no
207checking for gnum4... no
208checking for m4... m4
209checking for flex... flex
210checking for flex... flex
211checking for makeinfo... no
212/home/julian/osdev/tools/gcc/missing: 81: makeinfo: not found
213checking for expect... no
214checking for runtest... no
215checking for ar... ar
216checking for as... as
217checking for dlltool... no
218checking for ld... ld
219checking for lipo... no
220checking for nm... nm
221checking for ranlib... ranlib
222checking for strip... strip
223checking for windres... no
224checking for windmc... no
225checking for objcopy... objcopy
226checking for objdump... objdump
227checking for otool... no
228checking for readelf... readelf
229checking for x86_64-elf-cc... no
230checking for x86_64-elf-gcc... no
231checking for x86_64-elf-c++... no
232checking for x86_64-elf-g++... no
233checking for x86_64-elf-cxx... no
234checking for x86_64-elf-gxx... no
235checking for x86_64-elf-gcc... no
236checking for x86_64-elf-gfortran... no
237checking for x86_64-elf-gccgo... no
238checking for x86_64-elf-gdc... no
239checking for ar... no
240checking for x86_64-elf-ar... no
241checking for as... no
242checking for x86_64-elf-as... no
243checking for dlltool... no
244checking for x86_64-elf-dlltool... no
245checking for ld... no
246checking for x86_64-elf-ld... no
247checking for lipo... no
248checking for x86_64-elf-lipo... no
249checking for nm... no
250checking for x86_64-elf-nm... no
251checking for objcopy... no
252checking for x86_64-elf-objcopy... no
253checking for objdump... no
254checking for x86_64-elf-objdump... no
255checking for otool... no
256checking for x86_64-elf-otool... no
257checking for ranlib... no
258checking for x86_64-elf-ranlib... no
259checking for readelf... no
260checking for x86_64-elf-readelf... no
261checking for strip... no
262checking for x86_64-elf-strip... no
263checking for windres... no
264checking for x86_64-elf-windres... no
265checking for windmc... no
266checking for x86_64-elf-windmc... no
267checking where to find the target ar... pre-installed
268checking where to find the target as... pre-installed
269checking where to find the target cc... just compiled
270checking where to find the target c++... just compiled
271checking where to find the target c++ for libstdc++... just compiled
272checking where to find the target dlltool... pre-installed
273checking where to find the target gcc... just compiled
274checking where to find the target gfortran... pre-installed
275checking where to find the target gccgo... pre-installed
276checking where to find the target gdc... pre-installed
277checking where to find the target ld... pre-installed
278checking where to find the target lipo... pre-installed
279checking where to find the target nm... pre-installed
280checking where to find the target objcopy... pre-installed
281checking where to find the target objdump... pre-installed
282checking where to find the target otool... pre-installed
283checking where to find the target ranlib... pre-installed
284checking where to find the target readelf... pre-installed
285checking where to find the target strip... pre-installed
286checking where to find the target windres... pre-installed
287checking where to find the target windmc... pre-installed
288checking whether to enable maintainer-specific portions of Makefiles... no
289configure: creating ./config.status
290config.status: creating Makefile
291mkdir -p -- ./intl
292Configuring in ./intl
293configure: creating cache ./config.cache
294checking for x86_64-pc-linux-gnu-gcc... gcc
295checking whether the C compiler works... yes
296checking for C compiler default output file name... a.out
297checking for suffix of executables...
298checking whether we are cross compiling... no
299checking for suffix of object files... o
300checking whether we are using the GNU C compiler... yes
301checking whether gcc accepts -g... yes
302checking for gcc option to accept ISO C89... none needed
303checking how to run the C preprocessor... gcc -E
304checking for grep that handles long lines and -e... /bin/grep
305checking for egrep... /bin/grep -E
306checking for ANSI C header files... yes
307checking for sys/types.h... yes
308checking for sys/stat.h... yes
309checking for stdlib.h... yes
310checking for string.h... yes
311checking for memory.h... yes
312checking for strings.h... yes
313checking for inttypes.h... yes
314checking for stdint.h... yes
315checking for unistd.h... yes
316checking minix/config.h usability... no
317checking minix/config.h presence... no
318checking for minix/config.h... no
319checking whether it is safe to define __EXTENSIONS__... yes
320checking whether make sets $(MAKE)... yes
321checking for a BSD-compatible install... /usr/bin/install -c
322checking whether NLS is requested... no
323checking for msgfmt... /usr/bin/msgfmt
324checking for gmsgfmt... /usr/bin/msgfmt
325checking for xgettext... /usr/bin/xgettext
326checking for msgmerge... /usr/bin/msgmerge
327checking build system type... x86_64-pc-linux-gnu
328checking host system type... x86_64-pc-linux-gnu
329checking for x86_64-pc-linux-gnu-ranlib... ranlib
330checking for library containing strerror... none required
331checking for an ANSI C-conforming const... yes
332checking for inline... inline
333checking for off_t... yes
334checking for size_t... yes
335checking for working alloca.h... yes
336checking for alloca... yes
337checking for stdlib.h... (cached) yes
338checking for unistd.h... (cached) yes
339checking for sys/param.h... yes
340checking for getpagesize... yes
341checking for working mmap... yes
342checking whether we are using the GNU C Library 2.1 or newer... yes
343checking whether integer division by zero raises SIGFPE... yes
344checking for inttypes.h... yes
345checking for stdint.h... yes
346checking for unsigned long long... yes
347checking for inttypes.h... yes
348checking whether the inttypes.h PRIxNN macros are broken... no
349checking for ld used by GCC... ld
350checking if the linker (ld) is GNU ld... yes
351checking for shared library run path origin... done
352checking argz.h usability... yes
353checking argz.h presence... yes
354checking for argz.h... yes
355checking limits.h usability... yes
356checking limits.h presence... yes
357checking for limits.h... yes
358checking locale.h usability... yes
359checking locale.h presence... yes
360checking for locale.h... yes
361checking nl_types.h usability... yes
362checking nl_types.h presence... yes
363checking for nl_types.h... yes
364checking malloc.h usability... yes
365checking malloc.h presence... yes
366checking for malloc.h... yes
367checking stddef.h usability... yes
368checking stddef.h presence... yes
369checking for stddef.h... yes
370checking for stdlib.h... (cached) yes
371checking for string.h... (cached) yes
372checking for unistd.h... (cached) yes
373checking for sys/param.h... (cached) yes
374checking for feof_unlocked... yes
375checking for fgets_unlocked... yes
376checking for getc_unlocked... yes
377checking for getcwd... yes
378checking for getegid... yes
379checking for geteuid... yes
380checking for getgid... yes
381checking for getuid... yes
382checking for mempcpy... yes
383checking for munmap... yes
384checking for putenv... yes
385checking for setenv... yes
386checking for setlocale... yes
387checking for stpcpy... yes
388checking for strcasecmp... yes
389checking for strdup... yes
390checking for strtoul... yes
391checking for tsearch... yes
392checking for __argz_count... yes
393checking for __argz_stringify... yes
394checking for __argz_next... yes
395checking for __fsetlocking... yes
396checking for iconv... yes
397checking for iconv declaration...
398 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
399checking for nl_langinfo and CODESET... yes
400checking for LC_MESSAGES... yes
401checking for bison... bison
402checking version of bison... 3.5.1, ok
403checking whether NLS is requested... no
404checking whether to use NLS... no
405checking for aclocal... no
406checking for autoconf... no
407checking for autoheader... no
408checking bison 3 or later... 3.5.1, bison3
409configure: updating cache ./config.cache
410configure: creating ./config.status
411config.status: creating Makefile
412config.status: creating config.intl
413config.status: creating config.h
414config.status: executing default-1 commands
415mkdir -p -- ./lto-plugin
416Configuring in ./lto-plugin
417configure: creating cache ./config.cache
418checking build system type... x86_64-pc-linux-gnu
419checking host system type... x86_64-pc-linux-gnu
420checking target system type... x86_64-pc-elf
421checking for a BSD-compatible install... /usr/bin/install -c
422checking whether build environment is sane... yes
423checking for a thread-safe mkdir -p... /bin/mkdir -p
424checking for gawk... gawk
425checking whether make sets $(MAKE)... yes
426checking whether make supports nested variables... yes
427checking whether to enable maintainer-specific portions of Makefiles... no
428checking for style of include used by make... GNU
429checking for x86_64-pc-linux-gnu-gcc... gcc
430checking whether the C compiler works... yes
431checking for C compiler default output file name... a.out
432checking for suffix of executables...
433checking whether we are cross compiling... no
434checking for suffix of object files... o
435checking whether we are using the GNU C compiler... yes
436checking whether gcc accepts -g... yes
437checking for gcc option to accept ISO C89... none needed
438checking whether gcc understands -c and -o together... yes
439checking dependency style of gcc... gcc3
440checking how to run the C preprocessor... gcc -E
441checking for grep that handles long lines and -e... /bin/grep
442checking for egrep... /bin/grep -E
443checking for ANSI C header files... yes
444checking for sys/types.h... yes
445checking for sys/stat.h... yes
446checking for stdlib.h... yes
447checking for string.h... yes
448checking for memory.h... yes
449checking for strings.h... yes
450checking for inttypes.h... yes
451checking for stdint.h... yes
452checking for unistd.h... yes
453checking minix/config.h usability... no
454checking minix/config.h presence... no
455checking for minix/config.h... no
456checking whether it is safe to define __EXTENSIONS__... yes
457checking for x86_64-pc-linux-gnu-gcc... (cached) gcc
458checking whether we are using the GNU C compiler... (cached) yes
459checking whether gcc accepts -g... (cached) yes
460checking for gcc option to accept ISO C89... (cached) none needed
461checking whether gcc understands -c and -o together... (cached) yes
462checking dependency style of gcc... (cached) gcc3
463checking for special C compiler options needed for large files... no
464checking for _FILE_OFFSET_BITS value needed for large files... no
465checking whether gcc supports -Wall... yes
466checking for -static-libgcc... yes
467checking for CET support... yes
468checking how to print strings... printf
469checking for a sed that does not truncate output... /bin/sed
470checking for fgrep... /bin/grep -F
471checking for ld used by gcc... ld
472checking if the linker (ld) is GNU ld... yes
473checking for BSD- or MS-compatible name lister (nm)... nm
474checking the name lister (nm) interface... BSD nm
475checking whether ln -s works... yes
476checking the maximum length of command line arguments... 1572864
477checking whether the shell understands some XSI constructs... yes
478checking whether the shell understands "+="... yes
479checking for ld option to reload object files... -r
480checking for x86_64-pc-linux-gnu-objdump... objdump
481checking how to recognize dependent libraries... pass_all
482checking for x86_64-pc-linux-gnu-ar... ar
483checking for x86_64-pc-linux-gnu-strip... no
484checking for strip... strip
485checking for x86_64-pc-linux-gnu-ranlib... ranlib
486checking command to parse nm output from gcc object... ok
487checking for dlfcn.h... yes
488checking for objdir... .libs
489checking if gcc supports -fno-rtti -fno-exceptions... no
490checking for gcc option to produce PIC... -fPIC -DPIC
491checking if gcc PIC flag -fPIC -DPIC works... yes
492checking if gcc static flag -static works... yes
493checking if gcc supports -c -o file.o... yes
494checking if gcc supports -c -o file.o... (cached) yes
495checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
496checking whether -lc should be explicitly linked in... no
497checking dynamic linker characteristics... GNU/Linux ld.so
498checking how to hardcode library paths into programs... immediate
499checking whether stripping libraries is possible... yes
500checking if libtool supports shared libraries... yes
501checking whether to build shared libraries... yes
502checking whether to build static libraries... yes
503checking for int64_t... yes
504checking for uint64_t... yes
505checking for sys/wait.h that is POSIX.1 compatible... yes
506configure: updating cache ./config.cache
507checking that generated files are newer than configure... done
508configure: creating ./config.status
509config.status: creating Makefile
510config.status: creating config.h
511config.status: executing depfiles commands
512config.status: executing libtool commands
513mkdir -p -- ./libiberty
514Configuring in ./libiberty
515configure: creating cache ./config.cache
516checking whether to enable maintainer-specific portions of Makefiles... no
517checking for makeinfo... /home/julian/osdev/tools/gcc/missing makeinfo
518configure: WARNING:
519*** Makeinfo is missing. Info documentation will not be built.
520checking for perl... perl
521checking build system type... x86_64-pc-linux-gnu
522checking host system type... x86_64-pc-linux-gnu
523checking for x86_64-pc-linux-gnu-ar... ar
524checking for x86_64-pc-linux-gnu-ranlib... ranlib
525checking whether to install libiberty headers and static library... no
526configure: target_header_dir =
527checking for x86_64-pc-linux-gnu-gcc... gcc
528checking whether the C compiler works... yes
529checking for C compiler default output file name... a.out
530checking for suffix of executables...
531checking whether we are cross compiling... no
532checking for suffix of object files... o
533checking whether we are using the GNU C compiler... yes
534checking whether gcc accepts -g... yes
535checking for gcc option to accept ISO C89... none needed
536checking how to run the C preprocessor... gcc -E
537checking for grep that handles long lines and -e... /bin/grep
538checking for egrep... /bin/grep -E
539checking for ANSI C header files... yes
540checking for sys/types.h... yes
541checking for sys/stat.h... yes
542checking for stdlib.h... yes
543checking for string.h... yes
544checking for memory.h... yes
545checking for strings.h... yes
546checking for inttypes.h... yes
547checking for stdint.h... yes
548checking for unistd.h... yes
549checking minix/config.h usability... no
550checking minix/config.h presence... no
551checking for minix/config.h... no
552checking whether it is safe to define __EXTENSIONS__... yes
553checking for special C compiler options needed for large files... no
554checking for _FILE_OFFSET_BITS value needed for large files... no
555checking whether gcc supports -W... yes
556checking whether gcc supports -Wall... yes
557checking whether gcc supports -Wwrite-strings... yes
558checking whether gcc supports -Wc++-compat... yes
559checking whether gcc supports -Wstrict-prototypes... yes
560checking whether gcc supports -Wshadow=local... yes
561checking whether gcc supports -pedantic ... yes
562checking whether gcc and cc understand -c and -o together... yes
563checking for an ANSI C-conforming const... yes
564checking for inline... inline
565checking whether byte ordering is bigendian... no
566checking for a BSD-compatible install... /usr/bin/install -c
567checking for CET support... yes
568checking for sys/file.h... yes
569checking for sys/param.h... yes
570checking for limits.h... yes
571checking for stdlib.h... (cached) yes
572checking for malloc.h... yes
573checking for string.h... (cached) yes
574checking for unistd.h... (cached) yes
575checking for strings.h... (cached) yes
576checking for sys/time.h... yes
577checking for time.h... yes
578checking for sys/resource.h... yes
579checking for sys/stat.h... (cached) yes
580checking for sys/mman.h... yes
581checking for fcntl.h... yes
582checking for alloca.h... yes
583checking for sys/pstat.h... no
584checking for sys/sysmp.h... no
585checking for sys/sysinfo.h... yes
586checking for machine/hal_sysinfo.h... no
587checking for sys/table.h... no
588checking for sys/sysctl.h... no
589checking for sys/systemcfg.h... no
590checking for stdint.h... (cached) yes
591checking for stdio_ext.h... yes
592checking for process.h... no
593checking for sys/prctl.h... yes
594checking for sys/wait.h that is POSIX.1 compatible... yes
595checking whether time.h and sys/time.h may both be included... yes
596checking whether errno must be declared... no
597checking size of int... 4
598checking size of long... 8
599checking size of size_t... 8
600checking for long long... yes
601checking size of long long... 8
602checking for a 64-bit type... uint64_t
603checking for intptr_t... yes
604checking for uintptr_t... yes
605checking for ssize_t... yes
606checking for pid_t... yes
607checking for library containing strerror... none required
608checking for asprintf... yes
609checking for atexit... yes
610checking for basename... yes
611checking for bcmp... yes
612checking for bcopy... yes
613checking for bsearch... yes
614checking for bzero... yes
615checking for calloc... yes
616checking for clock... yes
617checking for ffs... yes
618checking for getcwd... yes
619checking for getpagesize... yes
620checking for gettimeofday... yes
621checking for index... yes
622checking for insque... yes
623checking for memchr... yes
624checking for memcmp... yes
625checking for memcpy... yes
626checking for memmem... yes
627checking for memmove... yes
628checking for mempcpy... yes
629checking for memset... yes
630checking for mkstemps... yes
631checking for putenv... yes
632checking for random... yes
633checking for rename... yes
634checking for rindex... yes
635checking for setenv... yes
636checking for snprintf... yes
637checking for sigsetmask... yes
638checking for stpcpy... yes
639checking for stpncpy... yes
640checking for strcasecmp... yes
641checking for strchr... yes
642checking for strdup... yes
643checking for strncasecmp... yes
644checking for strndup... yes
645checking for strnlen... yes
646checking for strrchr... yes
647checking for strstr... yes
648checking for strtod... yes
649checking for strtol... yes
650checking for strtoul... yes
651checking for strtoll... yes
652checking for strtoull... yes
653checking for strverscmp... yes
654checking for tmpnam... yes
655checking for vasprintf... yes
656checking for vfprintf... yes
657checking for vprintf... yes
658checking for vsnprintf... yes
659checking for vsprintf... yes
660checking for waitpid... yes
661checking for setproctitle... no
662checking whether alloca needs Cray hooks... no
663checking stack direction for C alloca... -1
664checking for vfork.h... no
665checking for fork... yes
666checking for vfork... yes
667checking for working fork... yes
668checking for working vfork... (cached) yes
669checking for _doprnt... no
670checking for sys_errlist... yes
671checking for sys_nerr... yes
672checking for sys_siglist... yes
673checking for external symbol _system_configuration... no
674checking for __fsetlocking... yes
675checking for canonicalize_file_name... yes
676checking for dup3... yes
677checking for getrlimit... yes
678checking for getrusage... yes
679checking for getsysinfo... no
680checking for gettimeofday... (cached) yes
681checking for on_exit... yes
682checking for pipe2... yes
683checking for psignal... yes
684checking for pstat_getdynamic... no
685checking for pstat_getstatic... no
686checking for realpath... yes
687checking for setrlimit... yes
688checking for sbrk... yes
689checking for spawnve... no
690checking for spawnvpe... no
691checking for strerror... yes
692checking for strsignal... yes
693checking for sysconf... yes
694checking for sysctl... yes
695checking for sysmp... no
696checking for table... no
697checking for times... yes
698checking for wait3... yes
699checking for wait4... yes
700checking whether basename is declared... yes
701checking whether ffs is declared... yes
702checking whether asprintf is declared... yes
703checking whether vasprintf is declared... yes
704checking whether snprintf is declared... yes
705checking whether vsnprintf is declared... yes
706checking whether calloc is declared... yes
707checking whether getenv is declared... yes
708checking whether getopt is declared... yes
709checking whether malloc is declared... yes
710checking whether realloc is declared... yes
711checking whether sbrk is declared... yes
712checking whether strtol is declared... yes
713checking whether strtoul is declared... yes
714checking whether strtoll is declared... yes
715checking whether strtoull is declared... yes
716checking whether strverscmp is declared... yes
717checking whether strnlen is declared... yes
718checking whether canonicalize_file_name must be declared... no
719checking for stdlib.h... (cached) yes
720checking for unistd.h... (cached) yes
721checking for sys/param.h... (cached) yes
722checking for getpagesize... (cached) yes
723checking for working mmap... yes
724checking for working strncmp... yes
725configure: updating cache ./config.cache
726configure: creating ./config.status
727config.status: creating Makefile
728config.status: creating testsuite/Makefile
729config.status: creating config.h
730config.status: executing default commands
731make[1]: Entering directory '/home/julian/osdev/tools/build-gcc/libiberty'
732if [ x"-fpic" != x ] && [ ! -d pic ]; then \
733 mkdir pic; \
734else true; fi
735touch stamp-picdir
736if [ x"" != x ] && [ ! -d noasan ]; then \
737 mkdir noasan; \
738else true; fi
739touch stamp-noasandir
740if [ x"-fpic" != x ]; then \
741 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/regex.c -o pic/regex.o; \
742else true; fi
743if [ x"" != x ]; then \
744 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/regex.c -o noasan/regex.o; \
745else true; fi
746gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/regex.c -o regex.o
747if [ x"-fpic" != x ]; then \
748 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
749else true; fi
750if [ x"" != x ]; then \
751 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/cplus-dem.c -o noasan/cplus-dem.o; \
752else true; fi
753gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/cplus-dem.c -o cplus-dem.o
754if [ x"-fpic" != x ]; then \
755 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
756else true; fi
757if [ x"" != x ]; then \
758 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/cp-demangle.c -o noasan/cp-demangle.o; \
759else true; fi
760gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/cp-demangle.c -o cp-demangle.o
761if [ x"-fpic" != x ]; then \
762 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/md5.c -o pic/md5.o; \
763else true; fi
764if [ x"" != x ]; then \
765 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/md5.c -o noasan/md5.o; \
766else true; fi
767gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/md5.c -o md5.o
768if [ x"-fpic" != x ]; then \
769 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/sha1.c -o pic/sha1.o; \
770else true; fi
771if [ x"" != x ]; then \
772 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/sha1.c -o noasan/sha1.o; \
773else true; fi
774gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/sha1.c -o sha1.o
775if [ x"-fpic" != x ]; then \
776 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/alloca.c -o pic/alloca.o; \
777else true; fi
778if [ x"" != x ]; then \
779 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/alloca.c -o noasan/alloca.o; \
780else true; fi
781gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/alloca.c -o alloca.o
782if [ x"-fpic" != x ]; then \
783 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/argv.c -o pic/argv.o; \
784else true; fi
785if [ x"" != x ]; then \
786 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/argv.c -o noasan/argv.o; \
787else true; fi
788gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/argv.c -o argv.o
789if [ x"-fpic" != x ]; then \
790 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/bsearch_r.c -o pic/bsearch_r.o; \
791else true; fi
792if [ x"" != x ]; then \
793 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/bsearch_r.c -o noasan/bsearch_r.o; \
794else true; fi
795gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/bsearch_r.c -o bsearch_r.o
796if [ x"-fpic" != x ]; then \
797 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/choose-temp.c -o pic/choose-temp.o; \
798else true; fi
799if [ x"" != x ]; then \
800 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/choose-temp.c -o noasan/choose-temp.o; \
801else true; fi
802gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/choose-temp.c -o choose-temp.o
803if [ x"-fpic" != x ]; then \
804 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/concat.c -o pic/concat.o; \
805else true; fi
806if [ x"" != x ]; then \
807 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/concat.c -o noasan/concat.o; \
808else true; fi
809gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/concat.c -o concat.o
810if [ x"-fpic" != x ]; then \
811 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/cp-demint.c -o pic/cp-demint.o; \
812else true; fi
813if [ x"" != x ]; then \
814 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/cp-demint.c -o noasan/cp-demint.o; \
815else true; fi
816gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/cp-demint.c -o cp-demint.o
817if [ x"-fpic" != x ]; then \
818 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/crc32.c -o pic/crc32.o; \
819else true; fi
820if [ x"" != x ]; then \
821 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/crc32.c -o noasan/crc32.o; \
822else true; fi
823gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/crc32.c -o crc32.o
824if [ x"-fpic" != x ]; then \
825 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/d-demangle.c -o pic/d-demangle.o; \
826else true; fi
827if [ x"" != x ]; then \
828 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/d-demangle.c -o noasan/d-demangle.o; \
829else true; fi
830gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/d-demangle.c -o d-demangle.o
831if [ x"-fpic" != x ]; then \
832 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/dwarfnames.c -o pic/dwarfnames.o; \
833else true; fi
834if [ x"" != x ]; then \
835 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/dwarfnames.c -o noasan/dwarfnames.o; \
836else true; fi
837gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/dwarfnames.c -o dwarfnames.o
838if [ x"-fpic" != x ]; then \
839 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/dyn-string.c -o pic/dyn-string.o; \
840else true; fi
841if [ x"" != x ]; then \
842 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/dyn-string.c -o noasan/dyn-string.o; \
843else true; fi
844gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/dyn-string.c -o dyn-string.o
845if [ x"-fpic" != x ]; then \
846 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fdmatch.c -o pic/fdmatch.o; \
847else true; fi
848if [ x"" != x ]; then \
849 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fdmatch.c -o noasan/fdmatch.o; \
850else true; fi
851gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/fdmatch.c -o fdmatch.o
852if [ x"-fpic" != x ]; then \
853 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fibheap.c -o pic/fibheap.o; \
854else true; fi
855if [ x"" != x ]; then \
856 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fibheap.c -o noasan/fibheap.o; \
857else true; fi
858gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/fibheap.c -o fibheap.o
859if [ x"-fpic" != x ]; then \
860 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/filedescriptor.c -o pic/filedescriptor.o; \
861else true; fi
862if [ x"" != x ]; then \
863 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/filedescriptor.c -o noasan/filedescriptor.o; \
864else true; fi
865gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/filedescriptor.c -o filedescriptor.o
866if [ x"-fpic" != x ]; then \
867 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
868else true; fi
869if [ x"" != x ]; then \
870 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/filename_cmp.c -o noasan/filename_cmp.o; \
871else true; fi
872gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/filename_cmp.c -o filename_cmp.o
873if [ x"-fpic" != x ]; then \
874 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/floatformat.c -o pic/floatformat.o; \
875else true; fi
876if [ x"" != x ]; then \
877 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/floatformat.c -o noasan/floatformat.o; \
878else true; fi
879gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/floatformat.c -o floatformat.o
880if [ x"-fpic" != x ]; then \
881 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fnmatch.c -o pic/fnmatch.o; \
882else true; fi
883if [ x"" != x ]; then \
884 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fnmatch.c -o noasan/fnmatch.o; \
885else true; fi
886gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/fnmatch.c -o fnmatch.o
887if [ x"-fpic" != x ]; then \
888 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
889else true; fi
890if [ x"" != x ]; then \
891 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/fopen_unlocked.c -o noasan/fopen_unlocked.o; \
892else true; fi
893gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/fopen_unlocked.c -o fopen_unlocked.o
894if [ x"-fpic" != x ]; then \
895 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getopt.c -o pic/getopt.o; \
896else true; fi
897if [ x"" != x ]; then \
898 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getopt.c -o noasan/getopt.o; \
899else true; fi
900gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/getopt.c -o getopt.o
901if [ x"-fpic" != x ]; then \
902 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getopt1.c -o pic/getopt1.o; \
903else true; fi
904if [ x"" != x ]; then \
905 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getopt1.c -o noasan/getopt1.o; \
906else true; fi
907gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/getopt1.c -o getopt1.o
908if [ x"-fpic" != x ]; then \
909 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getpwd.c -o pic/getpwd.o; \
910else true; fi
911if [ x"" != x ]; then \
912 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getpwd.c -o noasan/getpwd.o; \
913else true; fi
914gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/getpwd.c -o getpwd.o
915if [ x"-fpic" != x ]; then \
916 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getruntime.c -o pic/getruntime.o; \
917else true; fi
918if [ x"" != x ]; then \
919 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/getruntime.c -o noasan/getruntime.o; \
920else true; fi
921gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/getruntime.c -o getruntime.o
922if [ x"-fpic" != x ]; then \
923 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/hashtab.c -o pic/hashtab.o; \
924else true; fi
925if [ x"" != x ]; then \
926 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/hashtab.c -o noasan/hashtab.o; \
927else true; fi
928gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/hashtab.c -o hashtab.o
929if [ x"-fpic" != x ]; then \
930 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/hex.c -o pic/hex.o; \
931else true; fi
932if [ x"" != x ]; then \
933 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/hex.c -o noasan/hex.o; \
934else true; fi
935gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/hex.c -o hex.o
936if [ x"-fpic" != x ]; then \
937 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/lbasename.c -o pic/lbasename.o; \
938else true; fi
939if [ x"" != x ]; then \
940 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/lbasename.c -o noasan/lbasename.o; \
941else true; fi
942gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/lbasename.c -o lbasename.o
943if [ x"-fpic" != x ]; then \
944 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/lrealpath.c -o pic/lrealpath.o; \
945else true; fi
946if [ x"" != x ]; then \
947 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/lrealpath.c -o noasan/lrealpath.o; \
948else true; fi
949gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/lrealpath.c -o lrealpath.o
950if [ x"-fpic" != x ]; then \
951 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
952else true; fi
953if [ x"" != x ]; then \
954 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/make-relative-prefix.c -o noasan/make-relative-prefix.o; \
955else true; fi
956gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/make-relative-prefix.c -o make-relative-prefix.o
957if [ x"-fpic" != x ]; then \
958 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
959else true; fi
960if [ x"" != x ]; then \
961 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/make-temp-file.c -o noasan/make-temp-file.o; \
962else true; fi
963gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/make-temp-file.c -o make-temp-file.o
964if [ x"-fpic" != x ]; then \
965 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/objalloc.c -o pic/objalloc.o; \
966else true; fi
967if [ x"" != x ]; then \
968 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/objalloc.c -o noasan/objalloc.o; \
969else true; fi
970gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/objalloc.c -o objalloc.o
971if [ x"-fpic" != x ]; then \
972 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/obstack.c -o pic/obstack.o; \
973else true; fi
974if [ x"" != x ]; then \
975 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/obstack.c -o noasan/obstack.o; \
976else true; fi
977gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/obstack.c -o obstack.o
978if [ x"-fpic" != x ]; then \
979 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/partition.c -o pic/partition.o; \
980else true; fi
981if [ x"" != x ]; then \
982 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/partition.c -o noasan/partition.o; \
983else true; fi
984gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/partition.c -o partition.o
985if [ x"-fpic" != x ]; then \
986 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pexecute.c -o pic/pexecute.o; \
987else true; fi
988if [ x"" != x ]; then \
989 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pexecute.c -o noasan/pexecute.o; \
990else true; fi
991gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/pexecute.c -o pexecute.o
992if [ x"-fpic" != x ]; then \
993 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/physmem.c -o pic/physmem.o; \
994else true; fi
995if [ x"" != x ]; then \
996 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/physmem.c -o noasan/physmem.o; \
997else true; fi
998gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/physmem.c -o physmem.o
999if [ x"-fpic" != x ]; then \
1000 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pex-common.c -o pic/pex-common.o; \
1001else true; fi
1002if [ x"" != x ]; then \
1003 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pex-common.c -o noasan/pex-common.o; \
1004else true; fi
1005gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/pex-common.c -o pex-common.o
1006if [ x"-fpic" != x ]; then \
1007 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pex-one.c -o pic/pex-one.o; \
1008else true; fi
1009if [ x"" != x ]; then \
1010 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pex-one.c -o noasan/pex-one.o; \
1011else true; fi
1012gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/pex-one.c -o pex-one.o
1013if [ x"-fpic" != x ]; then \
1014 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pex-unix.c -o pic/pex-unix.o; \
1015else true; fi
1016if [ x"" != x ]; then \
1017 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/pex-unix.c -o noasan/pex-unix.o; \
1018else true; fi
1019gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/pex-unix.c -o pex-unix.o
1020if [ x"-fpic" != x ]; then \
1021 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/vprintf-support.c -o pic/vprintf-support.o; \
1022else true; fi
1023if [ x"" != x ]; then \
1024 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/vprintf-support.c -o noasan/vprintf-support.o; \
1025else true; fi
1026gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/vprintf-support.c -o vprintf-support.o
1027if [ x"-fpic" != x ]; then \
1028 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/rust-demangle.c -o pic/rust-demangle.o; \
1029else true; fi
1030if [ x"" != x ]; then \
1031 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/rust-demangle.c -o noasan/rust-demangle.o; \
1032else true; fi
1033gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/rust-demangle.c -o rust-demangle.o
1034if [ x"-fpic" != x ]; then \
1035 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
1036else true; fi
1037if [ x"" != x ]; then \
1038 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/safe-ctype.c -o noasan/safe-ctype.o; \
1039else true; fi
1040gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/safe-ctype.c -o safe-ctype.o
1041if [ x"-fpic" != x ]; then \
1042 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object.c -o pic/simple-object.o; \
1043else true; fi
1044if [ x"" != x ]; then \
1045 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object.c -o noasan/simple-object.o; \
1046else true; fi
1047gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/simple-object.c -o simple-object.o
1048if [ x"-fpic" != x ]; then \
1049 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
1050else true; fi
1051if [ x"" != x ]; then \
1052 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-coff.c -o noasan/simple-object-coff.o; \
1053else true; fi
1054gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/simple-object-coff.c -o simple-object-coff.o
1055if [ x"-fpic" != x ]; then \
1056 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
1057else true; fi
1058if [ x"" != x ]; then \
1059 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-elf.c -o noasan/simple-object-elf.o; \
1060else true; fi
1061gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/simple-object-elf.c -o simple-object-elf.o
1062if [ x"-fpic" != x ]; then \
1063 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
1064else true; fi
1065if [ x"" != x ]; then \
1066 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-mach-o.c -o noasan/simple-object-mach-o.o; \
1067else true; fi
1068gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
1069if [ x"-fpic" != x ]; then \
1070 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-xcoff.c -o pic/simple-object-xcoff.o; \
1071else true; fi
1072if [ x"" != x ]; then \
1073 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/simple-object-xcoff.c -o noasan/simple-object-xcoff.o; \
1074else true; fi
1075gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/simple-object-xcoff.c -o simple-object-xcoff.o
1076if [ x"-fpic" != x ]; then \
1077 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/sort.c -o pic/sort.o; \
1078else true; fi
1079if [ x"" != x ]; then \
1080 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/sort.c -o noasan/sort.o; \
1081else true; fi
1082gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/sort.c -o sort.o
1083if [ x"-fpic" != x ]; then \
1084 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/spaces.c -o pic/spaces.o; \
1085else true; fi
1086if [ x"" != x ]; then \
1087 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/spaces.c -o noasan/spaces.o; \
1088else true; fi
1089gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/spaces.c -o spaces.o
1090if [ x"-fpic" != x ]; then \
1091 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/splay-tree.c -o pic/splay-tree.o; \
1092else true; fi
1093if [ x"" != x ]; then \
1094 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/splay-tree.c -o noasan/splay-tree.o; \
1095else true; fi
1096gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/splay-tree.c -o splay-tree.o
1097if [ x"-fpic" != x ]; then \
1098 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/stack-limit.c -o pic/stack-limit.o; \
1099else true; fi
1100if [ x"" != x ]; then \
1101 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/stack-limit.c -o noasan/stack-limit.o; \
1102else true; fi
1103gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/stack-limit.c -o stack-limit.o
1104if [ x"-fpic" != x ]; then \
1105 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/strerror.c -o pic/strerror.o; \
1106else true; fi
1107if [ x"" != x ]; then \
1108 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/strerror.c -o noasan/strerror.o; \
1109else true; fi
1110gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/strerror.c -o strerror.o
1111if [ x"-fpic" != x ]; then \
1112 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/strsignal.c -o pic/strsignal.o; \
1113else true; fi
1114if [ x"" != x ]; then \
1115 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/strsignal.c -o noasan/strsignal.o; \
1116else true; fi
1117gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/strsignal.c -o strsignal.o
1118if [ x"-fpic" != x ]; then \
1119 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
1120else true; fi
1121if [ x"" != x ]; then \
1122 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/timeval-utils.c -o noasan/timeval-utils.o; \
1123else true; fi
1124gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/timeval-utils.c -o timeval-utils.o
1125if [ x"-fpic" != x ]; then \
1126 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
1127else true; fi
1128if [ x"" != x ]; then \
1129 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/unlink-if-ordinary.c -o noasan/unlink-if-ordinary.o; \
1130else true; fi
1131gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
1132if [ x"-fpic" != x ]; then \
1133 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xasprintf.c -o pic/xasprintf.o; \
1134else true; fi
1135if [ x"" != x ]; then \
1136 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xasprintf.c -o noasan/xasprintf.o; \
1137else true; fi
1138gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xasprintf.c -o xasprintf.o
1139if [ x"-fpic" != x ]; then \
1140 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xatexit.c -o pic/xatexit.o; \
1141else true; fi
1142if [ x"" != x ]; then \
1143 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xatexit.c -o noasan/xatexit.o; \
1144else true; fi
1145gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xatexit.c -o xatexit.o
1146if [ x"-fpic" != x ]; then \
1147 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xexit.c -o pic/xexit.o; \
1148else true; fi
1149if [ x"" != x ]; then \
1150 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xexit.c -o noasan/xexit.o; \
1151else true; fi
1152gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xexit.c -o xexit.o
1153if [ x"-fpic" != x ]; then \
1154 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xmalloc.c -o pic/xmalloc.o; \
1155else true; fi
1156if [ x"" != x ]; then \
1157 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xmalloc.c -o noasan/xmalloc.o; \
1158else true; fi
1159gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xmalloc.c -o xmalloc.o
1160if [ x"-fpic" != x ]; then \
1161 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xmemdup.c -o pic/xmemdup.o; \
1162else true; fi
1163if [ x"" != x ]; then \
1164 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xmemdup.c -o noasan/xmemdup.o; \
1165else true; fi
1166gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xmemdup.c -o xmemdup.o
1167if [ x"-fpic" != x ]; then \
1168 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xstrdup.c -o pic/xstrdup.o; \
1169else true; fi
1170if [ x"" != x ]; then \
1171 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xstrdup.c -o noasan/xstrdup.o; \
1172else true; fi
1173gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xstrdup.c -o xstrdup.o
1174if [ x"-fpic" != x ]; then \
1175 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xstrerror.c -o pic/xstrerror.o; \
1176else true; fi
1177if [ x"" != x ]; then \
1178 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xstrerror.c -o noasan/xstrerror.o; \
1179else true; fi
1180gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xstrerror.c -o xstrerror.o
1181if [ x"-fpic" != x ]; then \
1182 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xstrndup.c -o pic/xstrndup.o; \
1183else true; fi
1184if [ x"" != x ]; then \
1185 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xstrndup.c -o noasan/xstrndup.o; \
1186else true; fi
1187gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xstrndup.c -o xstrndup.o
1188if [ x"-fpic" != x ]; then \
1189 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xvasprintf.c -o pic/xvasprintf.o; \
1190else true; fi
1191if [ x"" != x ]; then \
1192 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/xvasprintf.c -o noasan/xvasprintf.o; \
1193else true; fi
1194gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/xvasprintf.c -o xvasprintf.o
1195if [ x"-fpic" != x ]; then \
1196 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/setproctitle.c -o pic/setproctitle.o; \
1197else true; fi
1198if [ x"" != x ]; then \
1199 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection -fpic ../../gcc/libiberty/setproctitle.c -o noasan/setproctitle.o; \
1200else true; fi
1201gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic -D_GNU_SOURCE -fcf-protection ../../gcc/libiberty/setproctitle.c -o setproctitle.o
1202rm -f ./libiberty.a pic/./libiberty.a noasan/./libiberty.a
1203ar rc ./libiberty.a \
1204 ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./bsearch_r.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filedescriptor.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o ./setproctitle.o
1205ranlib ./libiberty.a
1206if [ x"-fpic" != x ]; then \
1207 cd pic; \
1208 ar rc ./libiberty.a \
1209 ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./bsearch_r.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filedescriptor.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o ./setproctitle.o; \
1210 ranlib ./libiberty.a; \
1211 cd ..; \
1212else true; fi; \
1213if [ x"" != x ]; then \
1214 cd noasan; \
1215 ar rc ./libiberty.a \
1216 ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./bsearch_r.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filedescriptor.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o ./setproctitle.o; \
1217 ranlib ./libiberty.a; \
1218 cd ..; \
1219else true; fi
1220echo ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./bsearch_r.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filedescriptor.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o > required-list
1221make[2]: Entering directory '/home/julian/osdev/tools/build-gcc/libiberty/testsuite'
1222make[2]: Nothing to be done for 'all'.
1223make[2]: Leaving directory '/home/julian/osdev/tools/build-gcc/libiberty/testsuite'
1224make[1]: Leaving directory '/home/julian/osdev/tools/build-gcc/libiberty'
1225make[1]: Entering directory '/home/julian/osdev/tools/build-gcc/lto-plugin'
1226make all-am
1227make[2]: Entering directory '/home/julian/osdev/tools/build-gcc/lto-plugin'
1228/bin/bash ./libtool --tag=CC --tag=disable-static --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../gcc/lto-plugin -I../../gcc/lto-plugin/../include -DHAVE_CONFIG_H -Wall -fcf-protection -g -O2 -c -o lto-plugin.lo ../../gcc/lto-plugin/lto-plugin.c
1229libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../gcc/lto-plugin -I../../gcc/lto-plugin/../include -DHAVE_CONFIG_H -Wall -fcf-protection -g -O2 -c ../../gcc/lto-plugin/lto-plugin.c -fPIC -DPIC -o .libs/lto-plugin.o
1230/bin/bash ./libtool --tag=CC --tag=disable-static --mode=link gcc -Wall -fcf-protection -g -O2 -Wc,-static-libgcc -module -avoid-version -bindir /home/julian/osdev/tools/opt/cross/libexec/gcc/x86_64-elf/11.0.1 -Xcompiler '-static-libstdc++' -Xcompiler '-static-libgcc' -o liblto_plugin.la -rpath /home/julian/osdev/tools/opt/cross/libexec/gcc/x86_64-elf/11.0.1 lto-plugin.lo -Wc,../libiberty/pic/libiberty.a
1231libtool: link: gcc -shared -fPIC -DPIC .libs/lto-plugin.o -static-libgcc -static-libstdc++ -static-libgcc ../libiberty/pic/libiberty.a -Wl,-soname -Wl,liblto_plugin.so -o .libs/liblto_plugin.so
1232libtool: link: ( cd ".libs" && rm -f "liblto_plugin.la" && ln -s "../liblto_plugin.la" "liblto_plugin.la" )
1233mkdir -p -- ../gcc
1234libtool: install: /usr/bin/install -c .libs/liblto_plugin.so /home/julian/osdev/tools/build-gcc/lto-plugin/../gcc/liblto_plugin.so
1235libtool: install: /usr/bin/install -c .libs/liblto_plugin.lai /home/julian/osdev/tools/build-gcc/lto-plugin/../gcc/liblto_plugin.la
1236libtool: install: warning: remember to run `libtool --finish /home/julian/osdev/tools/opt/cross/libexec/gcc/x86_64-elf/11.0.1'
1237make[2]: Leaving directory '/home/julian/osdev/tools/build-gcc/lto-plugin'
1238make[1]: Leaving directory '/home/julian/osdev/tools/build-gcc/lto-plugin'
1239Configuring in ./gcc
1240configure: creating cache ./config.cache
1241checking build system type... x86_64-pc-linux-gnu
1242checking host system type... x86_64-pc-linux-gnu
1243checking target system type... x86_64-pc-elf
1244checking LIBRARY_PATH variable... ok
1245checking GCC_EXEC_PREFIX variable... ok
1246checking whether to place generated files in the source directory... no
1247checking whether a default linker was specified... no
1248checking whether a default assembler was specified... no
1249checking for x86_64-pc-linux-gnu-gcc... gcc
1250checking whether the C compiler works... yes
1251checking for C compiler default output file name... a.out
1252checking for suffix of executables...
1253checking whether we are cross compiling... no
1254checking for suffix of object files... o
1255checking whether we are using the GNU C compiler... yes
1256checking whether gcc accepts -g... yes
1257checking for gcc option to accept ISO C89... none needed
1258checking whether we are using the GNU C++ compiler... yes
1259checking whether g++ accepts -g... yes
1260checking for x86_64-pc-linux-gnu-gnatbind... no
1261checking for gnatbind... no
1262checking for x86_64-pc-linux-gnu-gnatmake... no
1263checking for gnatmake... no
1264checking whether compiler driver understands Ada... no
1265checking how to run the C++ preprocessor... g++ -E
1266checking for grep that handles long lines and -e... /bin/grep
1267checking for egrep... /bin/grep -E
1268checking for ANSI C header files... yes
1269checking for sys/types.h... yes
1270checking for sys/stat.h... yes
1271checking for stdlib.h... yes
1272checking for string.h... yes
1273checking for memory.h... yes
1274checking for strings.h... yes
1275checking for inttypes.h... yes
1276checking for stdint.h... yes
1277checking for unistd.h... yes
1278checking minix/config.h usability... no
1279checking minix/config.h presence... no
1280checking for minix/config.h... no
1281checking whether it is safe to define __EXTENSIONS__... yes
1282checking how to run the C preprocessor... gcc -E
1283checking for inline... inline
1284checking for special C compiler options needed for large files... no
1285checking for _FILE_OFFSET_BITS value needed for large files... no
1286checking size of void *... 8
1287checking size of short... 2
1288checking size of int... 4
1289checking size of long... 8
1290checking for long long... yes
1291checking size of long long... 8
1292checking for int8_t... yes
1293checking for int16_t... yes
1294checking for int32_t... yes
1295checking for int64_t... yes
1296checking for unsigned long long int... yes
1297checking for long long int... yes
1298checking for intmax_t... yes
1299checking for intptr_t... yes
1300checking for uint8_t... yes
1301checking for uint16_t... yes
1302checking for uint32_t... yes
1303checking for uint64_t... yes
1304checking for uintmax_t... yes
1305checking for uintptr_t... yes
1306checking for int64_t underlying type... long
1307checking for std::swap in <utility>... yes
1308checking whether g++ is affected by placement new aliasing bug... no
1309checking whether g++ supports -W... yes
1310checking whether g++ supports -Wall... yes
1311checking whether g++ supports -Wnarrowing... yes
1312checking whether g++ supports -Wwrite-strings... yes
1313checking whether g++ supports -Wcast-qual... yes
1314checking whether g++ supports -Werror=format-diag... no
1315checking whether gcc supports -Wstrict-prototypes... yes
1316checking whether gcc supports -Wmissing-prototypes... yes
1317checking whether gcc supports -Werror=format-diag... (cached) no
1318checking whether g++ supports -Wmissing-format-attribute... yes
1319checking whether g++ supports -Woverloaded-virtual... yes
1320checking whether gcc supports -Wold-style-definition... yes
1321checking whether gcc supports -Wc++-compat... yes
1322checking whether g++ supports -pedantic -Wlong-long -Wvariadic-macros -Woverlength-strings... yes
1323checking whether gcc supports -fno-exceptions... yes
1324checking whether gcc supports -fno-rtti... yes
1325checking whether gcc supports -fasynchronous-unwind-tables... yes
1326checking valgrind.h usability... no
1327checking valgrind.h presence... no
1328checking for valgrind.h... no
1329checking for VALGRIND_DISCARD in <valgrind/memcheck.h>... no
1330checking for VALGRIND_DISCARD in <memcheck.h>... no
1331checking for multiarch configuration... no, disabled auto check (cross build configured without --with-sysroot)
1332configure: WARNING: decimal float is not supported for this target, ignored
1333configure: WARNING: fixed-point is not supported for this target, ignored
1334checking whether make sets $(MAKE)... yes
1335checking for gawk... gawk
1336checking whether ln -s works... yes
1337checking whether ln works... yes
1338checking for x86_64-pc-linux-gnu-ranlib... ranlib
1339checking for a BSD compatible install... /usr/bin/install -c
1340checking for cmp's capabilities... gnucompare
1341checking for mktemp... yes
1342checking for makeinfo... /home/julian/osdev/tools/gcc/missing makeinfo
1343checking for modern makeinfo... no
1344configure: WARNING:
1345*** Makeinfo is missing or too old.
1346*** Info documentation will not be built.
1347checking for recent Pod::Man... yes
1348checking for flex... flex
1349checking for bison... bison
1350checking for nm... nm
1351checking for ar... ar
1352checking for sphinx-build... texinfo
1353checking for ANSI C header files... (cached) yes
1354checking whether time.h and sys/time.h may both be included... yes
1355checking whether string.h and strings.h may both be included... yes
1356checking for sys/wait.h that is POSIX.1 compatible... yes
1357checking whether termios.h defines TIOCGWINSZ... no
1358checking whether sys/ioctl.h defines TIOCGWINSZ... yes
1359checking for limits.h... yes
1360checking for stddef.h... yes
1361checking for string.h... (cached) yes
1362checking for strings.h... (cached) yes
1363checking for stdlib.h... (cached) yes
1364checking for time.h... yes
1365checking for iconv.h... yes
1366checking for fcntl.h... yes
1367checking for ftw.h... yes
1368checking for unistd.h... (cached) yes
1369checking for sys/file.h... yes
1370checking for sys/time.h... yes
1371checking for sys/mman.h... yes
1372checking for sys/resource.h... yes
1373checking for sys/param.h... yes
1374checking for sys/times.h... yes
1375checking for sys/stat.h... (cached) yes
1376checking for direct.h... no
1377checking for malloc.h... yes
1378checking for langinfo.h... yes
1379checking for ldfcn.h... no
1380checking for locale.h... yes
1381checking for wchar.h... yes
1382checking for thread.h... no
1383checking for pthread.h... yes
1384checking for CHAR_BIT... yes
1385checking whether byte ordering is bigendian... no
1386checking how to run the C++ preprocessor... g++ -E
1387checking for unordered_map... yes
1388checking for tr1/unordered_map... yes
1389checking for ext/hash_map... yes
1390checking dependency style of g++... gcc3
1391checking for collect2 libraries... none required
1392checking for library containing exc_resume... no
1393checking for library containing kstat_open... no
1394checking for library containing gethostbyname... none required
1395checking for library containing socket... none required
1396checking for library containing ldexp... none required
1397checking for library containing dlopen... -ldl
1398checking for inttypes.h... yes
1399checking for zstd.h... no
1400checking for library containing ZSTD_compress... no
1401checking for times... yes
1402checking for clock... yes
1403checking for kill... yes
1404checking for getrlimit... yes
1405checking for setrlimit... yes
1406checking for atoq... no
1407checking for popen... yes
1408checking for sysconf... yes
1409checking for strsignal... yes
1410checking for getrusage... yes
1411checking for nl_langinfo... yes
1412checking for gettimeofday... yes
1413checking for mbstowcs... yes
1414checking for wcswidth... yes
1415checking for mmap... yes
1416checking for posix_fallocate... yes
1417checking for setlocale... yes
1418checking for clearerr_unlocked... yes
1419checking for feof_unlocked... yes
1420checking for ferror_unlocked... yes
1421checking for fflush_unlocked... yes
1422checking for fgetc_unlocked... yes
1423checking for fgets_unlocked... yes
1424checking for fileno_unlocked... yes
1425checking for fprintf_unlocked... no
1426checking for fputc_unlocked... yes
1427checking for fputs_unlocked... yes
1428checking for fread_unlocked... yes
1429checking for fwrite_unlocked... yes
1430checking for getchar_unlocked... yes
1431checking for getc_unlocked... yes
1432checking for putchar_unlocked... yes
1433checking for putc_unlocked... yes
1434checking for madvise... yes
1435checking for mallinfo... yes
1436checking for mallinfo2... no
1437checking for fstatat... yes
1438checking whether mbstowcs works... yes
1439checking for ssize_t... yes
1440checking for caddr_t... yes
1441checking for sighander_t... no
1442checking for sys/mman.h... (cached) yes
1443checking for mmap... (cached) yes
1444checking whether read-only mmap of a plain file works... yes
1445checking whether mmap from /dev/zero works... yes
1446checking for MAP_ANON(YMOUS)... yes
1447checking whether mmap with MAP_ANON(YMOUS) works... yes
1448checking for pid_t... yes
1449checking for vfork.h... no
1450checking for fork... yes
1451checking for vfork... yes
1452checking for working fork... yes
1453checking for working vfork... (cached) yes
1454checking for ld used by GCC... ld
1455checking if the linker (ld) is GNU ld... yes
1456checking for shared library run path origin... done
1457checking for iconv... yes
1458checking for iconv declaration...
1459 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
1460checking for LC_MESSAGES... yes
1461checking for nl_langinfo and CODESET... yes
1462checking whether basename is declared... yes
1463checking whether strstr is declared... yes
1464checking whether getenv is declared... yes
1465checking whether atol is declared... yes
1466checking whether atoll is declared... yes
1467checking whether asprintf is declared... yes
1468checking whether sbrk is declared... yes
1469checking whether abort is declared... yes
1470checking whether atof is declared... yes
1471checking whether getcwd is declared... yes
1472checking whether getwd is declared... yes
1473checking whether madvise is declared... yes
1474checking whether stpcpy is declared... yes
1475checking whether strnlen is declared... yes
1476checking whether strsignal is declared... yes
1477checking whether strverscmp is declared... yes
1478checking whether strtol is declared... yes
1479checking whether strtoul is declared... yes
1480checking whether strtoll is declared... yes
1481checking whether strtoull is declared... yes
1482checking whether setenv is declared... yes
1483checking whether unsetenv is declared... yes
1484checking whether errno is declared... yes
1485checking whether snprintf is declared... yes
1486checking whether vsnprintf is declared... yes
1487checking whether vasprintf is declared... yes
1488checking whether malloc is declared... yes
1489checking whether realloc is declared... yes
1490checking whether calloc is declared... yes
1491checking whether free is declared... yes
1492checking whether getopt is declared... yes
1493checking whether clock is declared... yes
1494checking whether getpagesize is declared... yes
1495checking whether ffs is declared... yes
1496checking whether clearerr_unlocked is declared... yes
1497checking whether feof_unlocked is declared... yes
1498checking whether ferror_unlocked is declared... yes
1499checking whether fflush_unlocked is declared... yes
1500checking whether fgetc_unlocked is declared... yes
1501checking whether fgets_unlocked is declared... yes
1502checking whether fileno_unlocked is declared... yes
1503checking whether fprintf_unlocked is declared... no
1504checking whether fputc_unlocked is declared... yes
1505checking whether fputs_unlocked is declared... yes
1506checking whether fread_unlocked is declared... yes
1507checking whether fwrite_unlocked is declared... yes
1508checking whether getchar_unlocked is declared... yes
1509checking whether getc_unlocked is declared... yes
1510checking whether putchar_unlocked is declared... yes
1511checking whether putc_unlocked is declared... yes
1512checking whether getrlimit is declared... yes
1513checking whether setrlimit is declared... yes
1514checking whether getrusage is declared... yes
1515checking whether mallinfo is declared... yes
1516checking whether mallinfo2 is declared... no
1517checking whether ldgetname is declared... no
1518checking whether times is declared... yes
1519checking whether sigaltstack is declared... yes
1520checking for struct tms... yes
1521checking for clock_t... yes
1522checking for F_SETLKW... yes
1523checking for O_CLOEXEC... yes
1524checking for AF_UNIX... yes
1525checking for AF_INET6... yes
1526checking if mkdir takes one argument... no
1527Using `../../gcc/gcc/config/i386/i386.c' for machine-specific logic.
1528Using `../../gcc/gcc/config/i386/i386.md' as machine description file.
1529Using the following target machine macro files:
1530 ../../gcc/gcc/config/vxworks-dummy.h
1531 ../../gcc/gcc/config/i386/biarch64.h
1532 ../../gcc/gcc/config/i386/i386.h
1533 ../../gcc/gcc/config/i386/unix.h
1534 ../../gcc/gcc/config/i386/att.h
1535 ../../gcc/gcc/config/dbxelf.h
1536 ../../gcc/gcc/config/elfos.h
1537 ../../gcc/gcc/config/newlib-stdint.h
1538 ../../gcc/gcc/config/i386/i386elf.h
1539 ../../gcc/gcc/config/i386/x86-64.h
1540 ../../gcc/gcc/config/initfini-array.h
1541Using host-linux.o for host machine hooks.
1542checking whether NLS is requested... no
1543checking how to print strings... printf
1544checking for a sed that does not truncate output... /bin/sed
1545checking for fgrep... /bin/grep -F
1546checking for ld used by gcc... ld
1547checking if the linker (ld) is GNU ld... yes
1548checking for BSD- or MS-compatible name lister (nm)... nm
1549checking the name lister (nm) interface... BSD nm
1550checking whether ln -s works... yes
1551checking the maximum length of command line arguments... 1572864
1552checking whether the shell understands some XSI constructs... yes
1553checking whether the shell understands "+="... yes
1554checking for ld option to reload object files... -r
1555checking for x86_64-pc-linux-gnu-objdump... objdump
1556checking how to recognize dependent libraries... pass_all
1557checking for x86_64-pc-linux-gnu-ar... (cached) ar
1558checking for x86_64-pc-linux-gnu-strip... no
1559checking for strip... strip
1560checking for x86_64-pc-linux-gnu-ranlib... (cached) ranlib
1561checking command to parse nm output from gcc object... ok
1562checking for dlfcn.h... yes
1563checking for objdir... .libs
1564checking if gcc supports -fno-rtti -fno-exceptions... no
1565checking for gcc option to produce PIC... -fPIC -DPIC
1566checking if gcc PIC flag -fPIC -DPIC works... yes
1567checking if gcc static flag -static works... yes
1568checking if gcc supports -c -o file.o... yes
1569checking if gcc supports -c -o file.o... (cached) yes
1570checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
1571checking whether -lc should be explicitly linked in... no
1572checking dynamic linker characteristics... GNU/Linux ld.so
1573checking how to hardcode library paths into programs... immediate
1574checking whether stripping libraries is possible... yes
1575checking if libtool supports shared libraries... yes
1576checking whether to build shared libraries... yes
1577checking whether to build static libraries... yes
1578checking how to run the C++ preprocessor... g++ -E
1579checking for ld used by g++... ld -m elf_x86_64
1580checking if the linker (ld -m elf_x86_64) is GNU ld... yes
1581checking whether the g++ linker (ld -m elf_x86_64) supports shared libraries... yes
1582checking for g++ option to produce PIC... -fPIC -DPIC
1583checking if g++ PIC flag -fPIC -DPIC works... yes
1584checking if g++ static flag -static works... yes
1585checking if g++ supports -c -o file.o... yes
1586checking if g++ supports -c -o file.o... (cached) yes
1587checking whether the g++ linker (ld -m elf_x86_64) supports shared libraries... yes
1588checking dynamic linker characteristics... (cached) GNU/Linux ld.so
1589checking how to hardcode library paths into programs... immediate
1590checking for x86_64-elf-as... no
1591checking what assembler to use...
1592checking for x86_64-elf-ld... no
1593basename: missing operand
1594Try 'basename --help' for more information.
1595checking whether we are using gold... no
1596checking gold linker with split stack support as non default...
1597checking what linker to use...
1598dirname: missing operand
1599Try 'dirname --help' for more information.
1600basename: missing operand
1601Try 'basename --help' for more information.
1602checking for x86_64-elf-nm... no
1603checking what nm to use...
1604checking for x86_64-elf-objdump... no
1605checking what objdump to use... not found
1606checking for x86_64-elf-readelf... no
1607checking what readelf to use... not found
1608checking for x86_64-elf-otool... no
1609checking what otool to use... not found
1610checking assembler flags...
1611checking assembler for .balign and .p2align... no
1612checking assembler for .p2align with maximum skip... no
1613checking assembler for .literal16... no
1614checking assembler for working .subsection -1... no
1615checking assembler for .weak... no
1616checking assembler for .weakref... no
1617checking assembler for .nsubspa comdat... no
1618checking assembler for .hidden... no
1619checking linker for .hidden support... no
1620checking linker read-only and read-write section mixing... unknown
1621checking for .preinit_array/.init_array/.fini_array support... checking cross compile... guessing... no
1622checking assembler for .sleb128 and .uleb128... no
1623checking assembler for cfi directives... no
1624checking assembler for cfi personality directive... no
1625checking assembler for cfi sections directive... no
1626checking assembler for eh_frame optimization... no
1627checking assembler for section exclude flag... no
1628checking assembler for section exclude flag... no
1629checking assembler for section 'R' flag... no
1630checking assembler for section 'o' flag... no
1631checking assembler for section merging support... no
1632checking assembler for section merging support... (cached) no
1633checking assembler for stabs directive... no
1634checking assembler for COMDAT group support (GNU as)... no
1635checking assembler for COMDAT group support (GNU as, %type)... no
1636checking assembler for line table is_stmt support... no
1637checking assembler for line table discriminator support... no
1638checking assembler for thread-local storage support... no
1639checking linker -Bstatic/-Bdynamic option... no
1640checking linker --version-script option... no
1641checking linker soname option... no
1642checking linker --demangle support... no
1643checking linker plugin support... 0
1644checking assembler for -xbrace_comment... no
1645checking assembler for filds and fists mnemonics... no
1646checking assembler for fildq and fistpq mnemonics... no
1647checking assembler for cmov syntax... no
1648checking assembler for ffreep mnemonic... no
1649checking assembler for .quad directive... no
1650checking assembler for sahf mnemonic... no
1651checking assembler for interunit movq mnemonic... no
1652checking assembler for hle prefixes... no
1653checking assembler for swap suffix... no
1654checking assembler for different section symbol subtraction... no
1655checking assembler for rep and lock prefix... no
1656checking assembler for ud2 mnemonic... no
1657checking assembler for R_386_TLS_GD_PLT reloc... no
1658checking assembler for R_386_TLS_LDM_PLT reloc... no
1659checking assembler for R_386_TLS_LDM reloc... no
1660checking assembler for R_386_GOT32X reloc... no
1661checking assembler for GOTOFF in data... no
1662checking assembler for calling ___tls_get_addr via GOT... no
1663checking assembler for dwarf2 debug_line support... no
1664checking assembler for buggy dwarf2 .file directive... no
1665checking assembler for --gdwarf2 option... no
1666checking assembler for --gdwarf-5 option... no
1667checking assembler for assembly of compiler generated 64-bit .debug_line... no
1668checking assembler for assembly of compiler generated 32-bit .debug_line... no
1669checking assembler for --gstabs option... no
1670checking assembler for --debug-prefix-map option... no
1671checking assembler for compressed debug sections... no
1672checking assembler for .lcomm with alignment... no
1673checking for target glibc version... 0.0
1674checking assembler for gnu_unique_object... no
1675checking assembler for tolerance to line number 0... no
1676checking support for thin archives... yes
1677checking linker PT_GNU_EH_FRAME support... no
1678checking linker CIEv3 in .eh_frame support... no
1679checking linker position independent executable support... no
1680checking linker PIE support with copy reloc... no
1681checking linker EH-compatible garbage collection of sections... no
1682checking linker EH garbage collection of sections bug... no
1683checking linker for compressed debug sections... 0
1684checking linker --as-needed support... no
1685checking linker mapfile support for clearing hardware capabilities... no
1686checking linker --build-id support... no
1687checking linker *_sol2 emulation support... no
1688checking linker --sysroot support... no
1689checking __stack_chk_fail in target C library... no
1690checking sys/sdt.h in the target C library... no
1691checking dl_iterate_phdr in target C library... unknown
1692checking whether to enable maintainer-specific portions of Makefiles... no
1693checking whether to avoid linking multiple front-ends at once... no
1694checking whether to serialize linking of multiple front-ends... no
1695Links are now set up to build a cross-compiler
1696 from x86_64-pc-linux-gnu to x86_64-pc-elf.
1697checking for exported symbols... yes
1698checking for -rdynamic... yes
1699checking for library containing dlopen... (cached) -ldl
1700checking for -fPIC -shared... yes
1701gcc_driver_version: 11.0.1
1702checking for -fno-PIE option... yes
1703checking for -no-pie option... yes
1704checking for CET support... yes
1705checking linker -z bndplt option... no
1706checking linker --push-state/--pop-state options... no
1707configure: updating cache ./config.cache
1708configure: creating ./config.status
1709config.status: creating as
1710config.status: creating collect-ld
1711config.status: creating nm
1712config.status: creating Makefile
1713config.status: creating ada/gcc-interface/Makefile
1714config.status: creating ada/Makefile
1715config.status: creating auto-host.h
1716config.status: executing depdir commands
1717mkdir -p -- .deps
1718config.status: executing gccdepdir commands
1719mkdir -p -- build/.deps
1720mkdir -p -- ada/.deps
1721mkdir -p -- brig/.deps
1722mkdir -p -- c/.deps
1723mkdir -p -- cp/.deps
1724mkdir -p -- d/.deps
1725mkdir -p -- fortran/.deps
1726mkdir -p -- go/.deps
1727mkdir -p -- jit/.deps
1728mkdir -p -- lto/.deps
1729mkdir -p -- objc/.deps
1730mkdir -p -- objcp/.deps
1731mkdir -p -- c-family/.deps
1732mkdir -p -- common/.deps
1733mkdir -p -- analyzer/.deps
1734mkdir -p -- rtl-ssa/.deps
1735config.status: executing default commands
1736make[1]: Entering directory '/home/julian/osdev/tools/build-gcc/intl'
1737make[1]: Nothing to be done for 'all'.
1738make[1]: Leaving directory '/home/julian/osdev/tools/build-gcc/intl'
1739mkdir -p -- build-x86_64-pc-linux-gnu/libiberty
1740Configuring in build-x86_64-pc-linux-gnu/libiberty
1741configure: creating cache ./config.cache
1742checking whether to enable maintainer-specific portions of Makefiles... no
1743checking for makeinfo... /home/julian/osdev/tools/gcc/missing makeinfo
1744configure: WARNING:
1745*** Makeinfo is missing. Info documentation will not be built.
1746checking for perl... perl
1747checking build system type... x86_64-pc-linux-gnu
1748checking host system type... x86_64-pc-linux-gnu
1749checking for x86_64-pc-linux-gnu-ar... ar
1750checking for x86_64-pc-linux-gnu-ranlib... ranlib
1751checking whether to install libiberty headers and static library... no
1752configure: target_header_dir =
1753checking for x86_64-pc-linux-gnu-gcc... gcc
1754checking whether the C compiler works... yes
1755checking for C compiler default output file name... a.out
1756checking for suffix of executables...
1757checking whether we are cross compiling... no
1758checking for suffix of object files... o
1759checking whether we are using the GNU C compiler... yes
1760checking whether gcc accepts -g... yes
1761checking for gcc option to accept ISO C89... none needed
1762checking how to run the C preprocessor... gcc -E
1763checking for grep that handles long lines and -e... /bin/grep
1764checking for egrep... /bin/grep -E
1765checking for ANSI C header files... yes
1766checking for sys/types.h... yes
1767checking for sys/stat.h... yes
1768checking for stdlib.h... yes
1769checking for string.h... yes
1770checking for memory.h... yes
1771checking for strings.h... yes
1772checking for inttypes.h... yes
1773checking for stdint.h... yes
1774checking for unistd.h... yes
1775checking minix/config.h usability... no
1776checking minix/config.h presence... no
1777checking for minix/config.h... no
1778checking whether it is safe to define __EXTENSIONS__... yes
1779checking for special C compiler options needed for large files... no
1780checking for _FILE_OFFSET_BITS value needed for large files... no
1781checking whether gcc supports -W... yes
1782checking whether gcc supports -Wall... yes
1783checking whether gcc supports -Wwrite-strings... yes
1784checking whether gcc supports -Wc++-compat... yes
1785checking whether gcc supports -Wstrict-prototypes... yes
1786checking whether gcc supports -Wshadow=local... yes
1787checking whether gcc supports -pedantic ... yes
1788checking whether gcc and cc understand -c and -o together... yes
1789checking for an ANSI C-conforming const... yes
1790checking for inline... inline
1791checking whether byte ordering is bigendian... no
1792checking for a BSD-compatible install... /usr/bin/install -c
1793checking for CET support... yes
1794checking for sys/file.h... yes
1795checking for sys/param.h... yes
1796checking for limits.h... yes
1797checking for stdlib.h... (cached) yes
1798checking for malloc.h... yes
1799checking for string.h... (cached) yes
1800checking for unistd.h... (cached) yes
1801checking for strings.h... (cached) yes
1802checking for sys/time.h... yes
1803checking for time.h... yes
1804checking for sys/resource.h... yes
1805checking for sys/stat.h... (cached) yes
1806checking for sys/mman.h... yes
1807checking for fcntl.h... yes
1808checking for alloca.h... yes
1809checking for sys/pstat.h... no
1810checking for sys/sysmp.h... no
1811checking for sys/sysinfo.h... yes
1812checking for machine/hal_sysinfo.h... no
1813checking for sys/table.h... no
1814checking for sys/sysctl.h... no
1815checking for sys/systemcfg.h... no
1816checking for stdint.h... (cached) yes
1817checking for stdio_ext.h... yes
1818checking for process.h... no
1819checking for sys/prctl.h... yes
1820checking for sys/wait.h that is POSIX.1 compatible... yes
1821checking whether time.h and sys/time.h may both be included... yes
1822checking whether errno must be declared... no
1823checking size of int... 4
1824checking size of long... 8
1825checking size of size_t... 8
1826checking for long long... yes
1827checking size of long long... 8
1828checking for a 64-bit type... uint64_t
1829checking for intptr_t... yes
1830checking for uintptr_t... yes
1831checking for ssize_t... yes
1832checking for pid_t... yes
1833checking for library containing strerror... none required
1834checking for asprintf... yes
1835checking for atexit... yes
1836checking for basename... yes
1837checking for bcmp... yes
1838checking for bcopy... yes
1839checking for bsearch... yes
1840checking for bzero... yes
1841checking for calloc... yes
1842checking for clock... yes
1843checking for ffs... yes
1844checking for getcwd... yes
1845checking for getpagesize... yes
1846checking for gettimeofday... yes
1847checking for index... yes
1848checking for insque... yes
1849checking for memchr... yes
1850checking for memcmp... yes
1851checking for memcpy... yes
1852checking for memmem... yes
1853checking for memmove... yes
1854checking for mempcpy... yes
1855checking for memset... yes
1856checking for mkstemps... yes
1857checking for putenv... yes
1858checking for random... yes
1859checking for rename... yes
1860checking for rindex... yes
1861checking for setenv... yes
1862checking for snprintf... yes
1863checking for sigsetmask... yes
1864checking for stpcpy... yes
1865checking for stpncpy... yes
1866checking for strcasecmp... yes
1867checking for strchr... yes
1868checking for strdup... yes
1869checking for strncasecmp... yes
1870checking for strndup... yes
1871checking for strnlen... yes
1872checking for strrchr... yes
1873checking for strstr... yes
1874checking for strtod... yes
1875checking for strtol... yes
1876checking for strtoul... yes
1877checking for strtoll... yes
1878checking for strtoull... yes
1879checking for strverscmp... yes
1880checking for tmpnam... yes
1881checking for vasprintf... yes
1882checking for vfprintf... yes
1883checking for vprintf... yes
1884checking for vsnprintf... yes
1885checking for vsprintf... yes
1886checking for waitpid... yes
1887checking for setproctitle... no
1888checking whether alloca needs Cray hooks... no
1889checking stack direction for C alloca... -1
1890checking for vfork.h... no
1891checking for fork... yes
1892checking for vfork... yes
1893checking for working fork... yes
1894checking for working vfork... (cached) yes
1895checking for _doprnt... no
1896checking for sys_errlist... yes
1897checking for sys_nerr... yes
1898checking for sys_siglist... yes
1899checking for external symbol _system_configuration... no
1900checking for __fsetlocking... yes
1901checking for canonicalize_file_name... yes
1902checking for dup3... yes
1903checking for getrlimit... yes
1904checking for getrusage... yes
1905checking for getsysinfo... no
1906checking for gettimeofday... (cached) yes
1907checking for on_exit... yes
1908checking for pipe2... yes
1909checking for psignal... yes
1910checking for pstat_getdynamic... no
1911checking for pstat_getstatic... no
1912checking for realpath... yes
1913checking for setrlimit... yes
1914checking for sbrk... yes
1915checking for spawnve... no
1916checking for spawnvpe... no
1917checking for strerror... yes
1918checking for strsignal... yes
1919checking for sysconf... yes
1920checking for sysctl... yes
1921checking for sysmp... no
1922checking for table... no
1923checking for times... yes
1924checking for wait3... yes
1925checking for wait4... yes
1926checking whether basename is declared... yes
1927checking whether ffs is declared... yes
1928checking whether asprintf is declared... yes
1929checking whether vasprintf is declared... yes
1930checking whether snprintf is declared... yes
1931checking whether vsnprintf is declared... yes
1932checking whether calloc is declared... yes
1933checking whether getenv is declared... yes
1934checking whether getopt is declared... yes
1935checking whether malloc is declared... yes
1936checking whether realloc is declared... yes
1937checking whether sbrk is declared... yes
1938checking whether strtol is declared... yes
1939checking whether strtoul is declared... yes
1940checking whether strtoll is declared... yes
1941checking whether strtoull is declared... yes
1942checking whether strverscmp is declared... yes
1943checking whether strnlen is declared... yes
1944checking whether canonicalize_file_name must be declared... no
1945checking for stdlib.h... (cached) yes
1946checking for unistd.h... (cached) yes
1947checking for sys/param.h... (cached) yes
1948checking for getpagesize... (cached) yes
1949checking for working mmap... yes
1950checking for working strncmp... yes
1951configure: updating cache ./config.cache
1952configure: creating ./config.status
1953config.status: creating Makefile
1954config.status: creating testsuite/Makefile
1955config.status: creating config.h
1956config.status: executing default commands
1957make[1]: Entering directory '/home/julian/osdev/tools/build-gcc/build-x86_64-pc-linux-gnu/libiberty'
1958=== shit cut out ===
1959 *.def) | tr ' ' '\012' | sort -u`; \
1960srcdirstrip=`echo "../../gcc/gcc" | sed 's/[].[^$\\*|]/\\\\&/g'`; \
1961for file in $headers; do \
1962 if [ -f $file ] ; then \
1963 path=$file; \
1964 elif [ -f ../../gcc/gcc/$file ]; then \
1965 path=../../gcc/gcc/$file; \
1966 else continue; \
1967 fi; \
1968 case $path in \
1969 "../../gcc/gcc"/config/* | "../../gcc/gcc"/common/config/* \
1970 | "../../gcc/gcc"/c-family/* | "../../gcc/gcc"/*.def ) \
1971 base=`echo "$path" | sed -e "s|$srcdirstrip/||"`;; \
1972 *) base=`basename $path` ;; \
1973 esac; \
1974 dest=/home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/$base; \
1975 echo /usr/bin/install -c -m 644 $path $dest; \
1976 dir=`dirname $dest`; \
1977 /bin/bash ../../gcc/gcc/../mkinstalldirs $dir; \
1978 /usr/bin/install -c -m 644 $path $dest; \
1979done
1980/usr/bin/install -c -m 644 ../../gcc/gcc/addresses.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/addresses.h
1981/usr/bin/install -c -m 644 ../../gcc/gcc/alias.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/alias.h
1982/usr/bin/install -c -m 644 ../../gcc/gcc/align.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/align.h
1983/usr/bin/install -c -m 644 ../../gcc/gcc/alloc-pool.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/alloc-pool.h
1984/usr/bin/install -c -m 644 all-tree.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/all-tree.def
1985/usr/bin/install -c -m 644 ../../gcc/gcc/array-traits.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/array-traits.h
1986/usr/bin/install -c -m 644 ../../gcc/gcc/asan.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/asan.h
1987/usr/bin/install -c -m 644 ../../gcc/gcc/attr-fnspec.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/attr-fnspec.h
1988/usr/bin/install -c -m 644 ../../gcc/gcc/attribs.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/attribs.h
1989/usr/bin/install -c -m 644 auto-host.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/auto-host.h
1990/usr/bin/install -c -m 644 ../../gcc/gcc/auto-profile.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/auto-profile.h
1991/usr/bin/install -c -m 644 ../../gcc/gcc/backend.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/backend.h
1992/usr/bin/install -c -m 644 ../../gcc/gcc/basic-block.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/basic-block.h
1993/usr/bin/install -c -m 644 ../../gcc/gcc/bb-reorder.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/bb-reorder.h
1994/usr/bin/install -c -m 644 ../../gcc/gcc/bitmap.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/bitmap.h
1995/usr/bin/install -c -m 644 ../../gcc/gcc/brig-builtins.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/brig-builtins.def
1996/usr/bin/install -c -m 644 ../../gcc/gcc/builtin-attrs.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/builtin-attrs.def
1997/usr/bin/install -c -m 644 ../../gcc/gcc/builtins.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/builtins.def
1998/usr/bin/install -c -m 644 ../../gcc/gcc/builtins.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/builtins.h
1999/usr/bin/install -c -m 644 ../../gcc/gcc/builtin-types.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/builtin-types.def
2000/usr/bin/install -c -m 644 bversion.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/bversion.h
2001/usr/bin/install -c -m 644 ../../gcc/gcc/calls.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/calls.h
2002/usr/bin/install -c -m 644 ../../gcc/gcc/ccmp.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ccmp.h
2003/usr/bin/install -c -m 644 ../../gcc/gcc/c/c-tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/c-tree.h
2004/usr/bin/install -c -m 644 ../../gcc/gcc/c-family/c-common.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/c-family/c-common.def
2005mkdir -p -- /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/c-family
2006/usr/bin/install -c -m 644 ../../gcc/gcc/c-family/c-common.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/c-family/c-common.h
2007/usr/bin/install -c -m 644 ../../gcc/gcc/c-family/c-objc.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/c-family/c-objc.h
2008/usr/bin/install -c -m 644 ../../gcc/gcc/c-family/c-pragma.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/c-family/c-pragma.h
2009/usr/bin/install -c -m 644 ../../gcc/gcc/c-family/c-pretty-print.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/c-family/c-pretty-print.h
2010/usr/bin/install -c -m 644 ../../gcc/gcc/cfganal.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfganal.h
2011/usr/bin/install -c -m 644 ../../gcc/gcc/cfgbuild.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfgbuild.h
2012/usr/bin/install -c -m 644 ../../gcc/gcc/cfgcleanup.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfgcleanup.h
2013/usr/bin/install -c -m 644 ../../gcc/gcc/cfgexpand.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfgexpand.h
2014/usr/bin/install -c -m 644 ../../gcc/gcc/cfg-flags.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfg-flags.def
2015/usr/bin/install -c -m 644 ../../gcc/gcc/cfg.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfg.h
2016/usr/bin/install -c -m 644 ../../gcc/gcc/cfghooks.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfghooks.h
2017/usr/bin/install -c -m 644 ../../gcc/gcc/cfgloop.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfgloop.h
2018/usr/bin/install -c -m 644 ../../gcc/gcc/cfgloopmanip.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfgloopmanip.h
2019/usr/bin/install -c -m 644 ../../gcc/gcc/cfgrtl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cfgrtl.h
2020/usr/bin/install -c -m 644 ../../gcc/gcc/cgraph.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cgraph.h
2021/usr/bin/install -c -m 644 ../../gcc/gcc/cif-code.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cif-code.def
2022/usr/bin/install -c -m 644 ../../gcc/gcc/collect2-aix.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/collect2-aix.h
2023/usr/bin/install -c -m 644 ../../gcc/gcc/collect2.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/collect2.h
2024/usr/bin/install -c -m 644 ../../gcc/gcc/collect-utils.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/collect-utils.h
2025/usr/bin/install -c -m 644 ../../gcc/gcc/color-macros.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/color-macros.h
2026/usr/bin/install -c -m 644 ../../gcc/gcc/conditions.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/conditions.h
2027/usr/bin/install -c -m 644 configargs.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/configargs.h
2028/usr/bin/install -c -m 644 ../../gcc/gcc/config/dbxelf.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/dbxelf.h
2029mkdir -p -- /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config
2030/usr/bin/install -c -m 644 ../../gcc/gcc/config/elfos.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/elfos.h
2031/usr/bin/install -c -m 644 config.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config.h
2032/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/att.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/att.h
2033mkdir -p -- /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386
2034/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/biarch64.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/biarch64.h
2035/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/i386elf.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/i386elf.h
2036/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/i386.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/i386.h
2037/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/i386-protos.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/i386-protos.h
2038/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/unix.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/unix.h
2039/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/x86-64.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/x86-64.h
2040/usr/bin/install -c -m 644 ../../gcc/gcc/config/initfini-array.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/initfini-array.h
2041/usr/bin/install -c -m 644 ../../gcc/gcc/config/newlib-stdint.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/newlib-stdint.h
2042/usr/bin/install -c -m 644 ../../gcc/gcc/config/vxworks-dummy.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/vxworks-dummy.h
2043/usr/bin/install -c -m 644 ../../gcc/gcc/context.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/context.h
2044/usr/bin/install -c -m 644 ../../gcc/gcc/convert.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/convert.h
2045/usr/bin/install -c -m 644 ../../gcc/gcc/coretypes.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/coretypes.h
2046/usr/bin/install -c -m 644 ../../gcc/gcc/coroutine-builtins.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/coroutine-builtins.def
2047/usr/bin/install -c -m 644 ../../gcc/gcc/coverage.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/coverage.h
2048/usr/bin/install -c -m 644 ../../gcc/gcc/cppbuiltin.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cppbuiltin.h
2049/usr/bin/install -c -m 644 ../../gcc/gcc/cppdefault.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cppdefault.h
2050/usr/bin/install -c -m 644 ../../gcc/gcc/cselib.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cselib.h
2051/usr/bin/install -c -m 644 ../../gcc/gcc/data-streamer.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/data-streamer.h
2052/usr/bin/install -c -m 644 ../../gcc/gcc/dbgcnt.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dbgcnt.def
2053/usr/bin/install -c -m 644 ../../gcc/gcc/dbgcnt.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dbgcnt.h
2054/usr/bin/install -c -m 644 ../../gcc/gcc/dbxout.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dbxout.h
2055/usr/bin/install -c -m 644 ../../gcc/gcc/dce.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dce.h
2056/usr/bin/install -c -m 644 ../../gcc/gcc/ddg.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ddg.h
2057/usr/bin/install -c -m 644 ../../gcc/gcc/debug.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/debug.h
2058/usr/bin/install -c -m 644 ../../gcc/gcc/defaults.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/defaults.h
2059/usr/bin/install -c -m 644 ../../gcc/gcc/df.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/df.h
2060/usr/bin/install -c -m 644 ../../gcc/gcc/dfp.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dfp.h
2061/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic-color.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic-color.h
2062/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic-core.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic-core.h
2063/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic.def
2064/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic-event-id.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic-event-id.h
2065/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic.h
2066/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic-metadata.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic-metadata.h
2067/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic-path.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic-path.h
2068/usr/bin/install -c -m 644 ../../gcc/gcc/diagnostic-url.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/diagnostic-url.h
2069/usr/bin/install -c -m 644 ../../gcc/gcc/digraph.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/digraph.h
2070/usr/bin/install -c -m 644 ../../gcc/gcc/dojump.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dojump.h
2071/usr/bin/install -c -m 644 ../../gcc/gcc/dominance.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dominance.h
2072/usr/bin/install -c -m 644 ../../gcc/gcc/domwalk.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/domwalk.h
2073/usr/bin/install -c -m 644 ../../gcc/gcc/double-int.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/double-int.h
2074/usr/bin/install -c -m 644 ../../gcc/gcc/dump-context.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dump-context.h
2075/usr/bin/install -c -m 644 ../../gcc/gcc/dumpfile.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dumpfile.h
2076/usr/bin/install -c -m 644 ../../gcc/gcc/dwarf2asm.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dwarf2asm.h
2077/usr/bin/install -c -m 644 ../../gcc/gcc/dwarf2out.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/dwarf2out.h
2078/usr/bin/install -c -m 644 ../../gcc/gcc/edit-context.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/edit-context.h
2079/usr/bin/install -c -m 644 ../../gcc/gcc/emit-rtl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/emit-rtl.h
2080/usr/bin/install -c -m 644 ../../gcc/gcc/errors.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/errors.h
2081/usr/bin/install -c -m 644 ../../gcc/gcc/escaped_string.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/escaped_string.h
2082/usr/bin/install -c -m 644 ../../gcc/gcc/et-forest.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/et-forest.h
2083/usr/bin/install -c -m 644 ../../gcc/gcc/except.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/except.h
2084/usr/bin/install -c -m 644 ../../gcc/gcc/explow.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/explow.h
2085/usr/bin/install -c -m 644 ../../gcc/gcc/expmed.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/expmed.h
2086/usr/bin/install -c -m 644 ../../gcc/gcc/expr.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/expr.h
2087/usr/bin/install -c -m 644 ../../gcc/gcc/fibonacci_heap.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/fibonacci_heap.h
2088/usr/bin/install -c -m 644 ../../gcc/gcc/file-find.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/file-find.h
2089/usr/bin/install -c -m 644 ../../gcc/gcc/file-prefix-map.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/file-prefix-map.h
2090/usr/bin/install -c -m 644 ../../gcc/gcc/fixed-value.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/fixed-value.h
2091/usr/bin/install -c -m 644 ../../gcc/gcc/flags.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/flags.h
2092/usr/bin/install -c -m 644 ../../gcc/gcc/flag-types.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/flag-types.h
2093/usr/bin/install -c -m 644 ../../gcc/gcc/fold-const-call.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/fold-const-call.h
2094/usr/bin/install -c -m 644 ../../gcc/gcc/fold-const.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/fold-const.h
2095/usr/bin/install -c -m 644 ../../gcc/gcc/function-abi.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/function-abi.h
2096/usr/bin/install -c -m 644 ../../gcc/gcc/function.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/function.h
2097/usr/bin/install -c -m 644 ../../gcc/gcc/ada/gcc-interface/ada-tree.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ada/gcc-interface/ada-tree.def
2098mkdir -p -- /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ada/gcc-interface
2099/usr/bin/install -c -m 644 ../../gcc/gcc/common/config/i386/i386-cpuinfo.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/common/config/i386/i386-cpuinfo.h
2100mkdir -p -- /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/common/config/i386
2101/usr/bin/install -c -m 644 ../../gcc/gcc/config/dbxelf.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/dbxelf.h
2102/usr/bin/install -c -m 644 ../../gcc/gcc/config/elfos.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/elfos.h
2103/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/att.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/att.h
2104/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/biarch64.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/biarch64.h
2105/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/i386elf.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/i386elf.h
2106/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/i386.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/i386.h
2107/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/i386-opts.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/i386-opts.h
2108/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/i386-protos.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/i386-protos.h
2109/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/stringop.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/stringop.def
2110/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/unix.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/unix.h
2111/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/x86-64.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/x86-64.h
2112/usr/bin/install -c -m 644 ../../gcc/gcc/config/i386/x86-tune.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/i386/x86-tune.def
2113/usr/bin/install -c -m 644 ../../gcc/gcc/config/initfini-array.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/initfini-array.h
2114/usr/bin/install -c -m 644 ../../gcc/gcc/config/newlib-stdint.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/newlib-stdint.h
2115/usr/bin/install -c -m 644 ../../gcc/gcc/config/vxworks-dummy.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/config/vxworks-dummy.h
2116/usr/bin/install -c -m 644 ../../gcc/gcc/cp/cp-tree.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cp/cp-tree.def
2117/usr/bin/install -c -m 644 ../../gcc/gcc/d/d-tree.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/d/d-tree.def
2118mkdir -p -- /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/d
2119/usr/bin/install -c -m 644 ../../gcc/gcc/defaults.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/defaults.h
2120/usr/bin/install -c -m 644 ../../gcc/gcc/../include/ansidecl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ansidecl.h
2121/usr/bin/install -c -m 644 ../../gcc/gcc/../include/filenames.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/filenames.h
2122/usr/bin/install -c -m 644 ../../gcc/gcc/../include/gomp-constants.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gomp-constants.h
2123/usr/bin/install -c -m 644 ../../gcc/gcc/../include/hashtab.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hashtab.h
2124/usr/bin/install -c -m 644 ../../gcc/gcc/../include/libiberty.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/libiberty.h
2125/usr/bin/install -c -m 644 ../../gcc/gcc/../include/md5.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/md5.h
2126/usr/bin/install -c -m 644 ../../gcc/gcc/../include/obstack.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/obstack.h
2127/usr/bin/install -c -m 644 ../../gcc/gcc/../include/plugin-api.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/plugin-api.h
2128/usr/bin/install -c -m 644 ../../gcc/gcc/../include/safe-ctype.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/safe-ctype.h
2129/usr/bin/install -c -m 644 ../../gcc/gcc/../include/splay-tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/splay-tree.h
2130/usr/bin/install -c -m 644 ../../gcc/gcc/insn-addr.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-addr.h
2131/usr/bin/install -c -m 644 ../../gcc/gcc/../libcpp/include/cpplib.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/cpplib.h
2132/usr/bin/install -c -m 644 ../../gcc/gcc/../libcpp/include/line-map.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/line-map.h
2133/usr/bin/install -c -m 644 ../../gcc/gcc/../libcpp/include/symtab.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/symtab.h
2134/usr/bin/install -c -m 644 ../../gcc/gcc/objc/objc-tree.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/objc/objc-tree.def
2135mkdir -p -- /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/objc
2136/usr/bin/install -c -m 644 ../../gcc/gcc/gcc.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcc.h
2137/usr/bin/install -c -m 644 ../../gcc/gcc/gcc-plugin.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcc-plugin.h
2138/usr/bin/install -c -m 644 ../../gcc/gcc/gcc-rich-location.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcc-rich-location.h
2139/usr/bin/install -c -m 644 ../../gcc/gcc/gcc-symtab.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcc-symtab.h
2140/usr/bin/install -c -m 644 ../../gcc/gcc/gcov-counter.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcov-counter.def
2141/usr/bin/install -c -m 644 ../../gcc/gcc/gcov-io.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcov-io.h
2142/usr/bin/install -c -m 644 ../../gcc/gcc/gcse-common.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcse-common.h
2143/usr/bin/install -c -m 644 ../../gcc/gcc/gcse.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gcse.h
2144/usr/bin/install -c -m 644 ../../gcc/gcc/generic-match.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/generic-match.h
2145/usr/bin/install -c -m 644 ../../gcc/gcc/gengtype.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gengtype.h
2146/usr/bin/install -c -m 644 genrtl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/genrtl.h
2147/usr/bin/install -c -m 644 ../../gcc/gcc/gensupport.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gensupport.h
2148/usr/bin/install -c -m 644 ../../gcc/gcc/ggc.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ggc.h
2149/usr/bin/install -c -m 644 ../../gcc/gcc/ggc-internal.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ggc-internal.h
2150/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-array-bounds.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-array-bounds.h
2151/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-builder.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-builder.h
2152/usr/bin/install -c -m 644 ../../gcc/gcc/gimple.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple.def
2153/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-expr.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-expr.h
2154/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-fold.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-fold.h
2155/usr/bin/install -c -m 644 ../../gcc/gcc/gimple.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple.h
2156/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-iterator.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-iterator.h
2157/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-low.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-low.h
2158/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-match.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-match.h
2159/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-predict.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-predict.h
2160/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-pretty-print.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-pretty-print.h
2161/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-range-cache.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-range-cache.h
2162/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-range-edge.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-range-edge.h
2163/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-range-gori.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-range-gori.h
2164/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-range.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-range.h
2165/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-ssa-evrp-analyze.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-ssa-evrp-analyze.h
2166/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-ssa.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-ssa.h
2167/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-ssa-warn-restrict.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-ssa-warn-restrict.h
2168/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-streamer.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-streamer.h
2169/usr/bin/install -c -m 644 ../../gcc/gcc/gimple-walk.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimple-walk.h
2170/usr/bin/install -c -m 644 ../../gcc/gcc/gimplify.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimplify.h
2171/usr/bin/install -c -m 644 ../../gcc/gcc/gimplify-me.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gimplify-me.h
2172/usr/bin/install -c -m 644 ../../gcc/gcc/glimits.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/glimits.h
2173/usr/bin/install -c -m 644 ../../gcc/gcc/graphds.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/graphds.h
2174/usr/bin/install -c -m 644 ../../gcc/gcc/graph.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/graph.h
2175/usr/bin/install -c -m 644 ../../gcc/gcc/graphite.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/graphite.h
2176/usr/bin/install -c -m 644 ../../gcc/gcc/graphviz.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/graphviz.h
2177/usr/bin/install -c -m 644 ../../gcc/gcc/gsstruct.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gsstruct.def
2178/usr/bin/install -c -m 644 ../../gcc/gcc/gstab.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gstab.h
2179/usr/bin/install -c -m 644 ../../gcc/gcc/gsyms.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gsyms.h
2180/usr/bin/install -c -m 644 ../../gcc/gcc/gsyslimits.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gsyslimits.h
2181/usr/bin/install -c -m 644 ../../gcc/gcc/gtm-builtins.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gtm-builtins.def
2182/usr/bin/install -c -m 644 gtype-desc.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/gtype-desc.h
2183/usr/bin/install -c -m 644 ../../gcc/gcc/hard-reg-set.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hard-reg-set.h
2184/usr/bin/install -c -m 644 ../../gcc/gcc/hash-map.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hash-map.h
2185/usr/bin/install -c -m 644 ../../gcc/gcc/hash-map-traits.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hash-map-traits.h
2186/usr/bin/install -c -m 644 ../../gcc/gcc/hash-set.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hash-set.h
2187/usr/bin/install -c -m 644 ../../gcc/gcc/hash-table.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hash-table.h
2188/usr/bin/install -c -m 644 ../../gcc/gcc/hash-traits.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hash-traits.h
2189/usr/bin/install -c -m 644 ../../gcc/gcc/highlev-plugin-common.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/highlev-plugin-common.h
2190/usr/bin/install -c -m 644 ../../gcc/gcc/hooks.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hooks.h
2191/usr/bin/install -c -m 644 ../../gcc/gcc/hosthooks-def.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hosthooks-def.h
2192/usr/bin/install -c -m 644 ../../gcc/gcc/hosthooks.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hosthooks.h
2193/usr/bin/install -c -m 644 ../../gcc/gcc/hw-doloop.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hw-doloop.h
2194/usr/bin/install -c -m 644 ../../gcc/gcc/hwint.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/hwint.h
2195/usr/bin/install -c -m 644 ../../gcc/gcc/ifcvt.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ifcvt.h
2196/usr/bin/install -c -m 644 ../../gcc/gcc/inchash.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/inchash.h
2197/usr/bin/install -c -m 644 ../../gcc/gcc/incpath.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/incpath.h
2198/usr/bin/install -c -m 644 ../../gcc/gcc/input.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/input.h
2199/usr/bin/install -c -m 644 ../../gcc/gcc/insn-addr.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-addr.h
2200/usr/bin/install -c -m 644 insn-attr-common.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-attr-common.h
2201/usr/bin/install -c -m 644 insn-attr.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-attr.h
2202/usr/bin/install -c -m 644 insn-codes.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-codes.h
2203/usr/bin/install -c -m 644 insn-config.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-config.h
2204/usr/bin/install -c -m 644 insn-constants.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-constants.h
2205/usr/bin/install -c -m 644 insn-flags.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-flags.h
2206/usr/bin/install -c -m 644 insn-modes.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-modes.h
2207/usr/bin/install -c -m 644 insn-modes-inline.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-modes-inline.h
2208/usr/bin/install -c -m 644 ../../gcc/gcc/insn-notes.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/insn-notes.def
2209/usr/bin/install -c -m 644 ../../gcc/gcc/internal-fn.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/internal-fn.def
2210/usr/bin/install -c -m 644 ../../gcc/gcc/internal-fn.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/internal-fn.h
2211/usr/bin/install -c -m 644 ../../gcc/gcc/intl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/intl.h
2212/usr/bin/install -c -m 644 ../../gcc/gcc/int-vector-builder.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/int-vector-builder.h
2213/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-fnsummary.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-fnsummary.h
2214/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-icf-gimple.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-icf-gimple.h
2215/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-icf.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-icf.h
2216/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-inline.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-inline.h
2217/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-modref.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-modref.h
2218/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-modref-tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-modref-tree.h
2219/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-param-manipulation.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-param-manipulation.h
2220/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-predicate.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-predicate.h
2221/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-prop.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-prop.h
2222/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-reference.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-reference.h
2223/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-ref.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-ref.h
2224/usr/bin/install -c -m 644 ../../gcc/gcc/ipa-utils.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ipa-utils.h
2225/usr/bin/install -c -m 644 ../../gcc/gcc/ira.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ira.h
2226/usr/bin/install -c -m 644 ../../gcc/gcc/ira-int.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ira-int.h
2227/usr/bin/install -c -m 644 ../../gcc/gcc/is-a.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/is-a.h
2228/usr/bin/install -c -m 644 ../../gcc/gcc/iterator-utils.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/iterator-utils.h
2229/usr/bin/install -c -m 644 ../../gcc/gcc/json.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/json.h
2230/usr/bin/install -c -m 644 ../../gcc/gcc/langhooks-def.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/langhooks-def.h
2231/usr/bin/install -c -m 644 ../../gcc/gcc/langhooks.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/langhooks.h
2232/usr/bin/install -c -m 644 ../../gcc/gcc/lcm.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/lcm.h
2233/usr/bin/install -c -m 644 ../../gcc/gcc/libfuncs.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/libfuncs.h
2234/usr/bin/install -c -m 644 ../../gcc/gcc/limitx.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/limitx.h
2235/usr/bin/install -c -m 644 ../../gcc/gcc/limity.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/limity.h
2236/usr/bin/install -c -m 644 ../../gcc/gcc/loop-unroll.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/loop-unroll.h
2237/usr/bin/install -c -m 644 ../../gcc/gcc/lower-subreg.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/lower-subreg.h
2238/usr/bin/install -c -m 644 ../../gcc/gcc/lra.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/lra.h
2239/usr/bin/install -c -m 644 ../../gcc/gcc/lra-int.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/lra-int.h
2240/usr/bin/install -c -m 644 ../../gcc/gcc/lto-compress.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/lto-compress.h
2241/usr/bin/install -c -m 644 ../../gcc/gcc/lto-section-names.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/lto-section-names.h
2242/usr/bin/install -c -m 644 ../../gcc/gcc/lto-streamer.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/lto-streamer.h
2243/usr/bin/install -c -m 644 ../../gcc/gcc/machmode.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/machmode.def
2244/usr/bin/install -c -m 644 ../../gcc/gcc/machmode.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/machmode.h
2245/usr/bin/install -c -m 644 ../../gcc/gcc/memmodel.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/memmodel.h
2246/usr/bin/install -c -m 644 ../../gcc/gcc/memory-block.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/memory-block.h
2247/usr/bin/install -c -m 644 ../../gcc/gcc/mem-stats.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/mem-stats.h
2248/usr/bin/install -c -m 644 ../../gcc/gcc/mem-stats-traits.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/mem-stats-traits.h
2249/usr/bin/install -c -m 644 ../../gcc/gcc/mode-classes.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/mode-classes.def
2250/usr/bin/install -c -m 644 ../../gcc/gcc/mux-utils.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/mux-utils.h
2251/usr/bin/install -c -m 644 ../../gcc/gcc/obstack-utils.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/obstack-utils.h
2252/usr/bin/install -c -m 644 ../../gcc/gcc/omp-builtins.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/omp-builtins.def
2253/usr/bin/install -c -m 644 ../../gcc/gcc/omp-expand.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/omp-expand.h
2254/usr/bin/install -c -m 644 ../../gcc/gcc/omp-general.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/omp-general.h
2255/usr/bin/install -c -m 644 ../../gcc/gcc/omp-low.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/omp-low.h
2256/usr/bin/install -c -m 644 ../../gcc/gcc/omp-offload.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/omp-offload.h
2257/usr/bin/install -c -m 644 ../../gcc/gcc/omp-simd-clone.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/omp-simd-clone.h
2258/usr/bin/install -c -m 644 ../../gcc/gcc/optabs.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/optabs.def
2259/usr/bin/install -c -m 644 ../../gcc/gcc/optabs.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/optabs.h
2260/usr/bin/install -c -m 644 ../../gcc/gcc/optabs-libfuncs.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/optabs-libfuncs.h
2261/usr/bin/install -c -m 644 ../../gcc/gcc/optabs-query.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/optabs-query.h
2262/usr/bin/install -c -m 644 ../../gcc/gcc/optabs-tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/optabs-tree.h
2263/usr/bin/install -c -m 644 ../../gcc/gcc/optinfo-emit-json.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/optinfo-emit-json.h
2264/usr/bin/install -c -m 644 ../../gcc/gcc/optinfo.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/optinfo.h
2265/usr/bin/install -c -m 644 options.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/options.h
2266/usr/bin/install -c -m 644 ../../gcc/gcc/opt-problem.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/opt-problem.h
2267/usr/bin/install -c -m 644 ../../gcc/gcc/opts-diagnostic.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/opts-diagnostic.h
2268/usr/bin/install -c -m 644 ../../gcc/gcc/opts.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/opts.h
2269/usr/bin/install -c -m 644 ../../gcc/gcc/opt-suggestions.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/opt-suggestions.h
2270/usr/bin/install -c -m 644 ../../gcc/gcc/ordered-hash-map.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ordered-hash-map.h
2271/usr/bin/install -c -m 644 ../../gcc/gcc/output.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/output.h
2272/usr/bin/install -c -m 644 ../../gcc/gcc/passes.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/passes.def
2273/usr/bin/install -c -m 644 pass-instances.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/pass-instances.def
2274/usr/bin/install -c -m 644 ../../gcc/gcc/pass_manager.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/pass_manager.h
2275/usr/bin/install -c -m 644 ../../gcc/gcc/plugin.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/plugin.def
2276/usr/bin/install -c -m 644 ../../gcc/gcc/plugin.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/plugin.h
2277/usr/bin/install -c -m 644 plugin-version.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/plugin-version.h
2278/usr/bin/install -c -m 644 ../../gcc/gcc/poly-int.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/poly-int.h
2279/usr/bin/install -c -m 644 ../../gcc/gcc/poly-int-types.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/poly-int-types.h
2280/usr/bin/install -c -m 644 ../../gcc/gcc/predict.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/predict.def
2281/usr/bin/install -c -m 644 ../../gcc/gcc/predict.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/predict.h
2282/usr/bin/install -c -m 644 ../../gcc/gcc/prefix.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/prefix.h
2283/usr/bin/install -c -m 644 ../../gcc/gcc/pretty-print.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/pretty-print.h
2284/usr/bin/install -c -m 644 ../../gcc/gcc/print-rtl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/print-rtl.h
2285/usr/bin/install -c -m 644 ../../gcc/gcc/print-tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/print-tree.h
2286/usr/bin/install -c -m 644 ../../gcc/gcc/profile-count.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/profile-count.h
2287/usr/bin/install -c -m 644 ../../gcc/gcc/profile.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/profile.h
2288/usr/bin/install -c -m 644 ../../gcc/gcc/range.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/range.h
2289/usr/bin/install -c -m 644 ../../gcc/gcc/range-op.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/range-op.h
2290/usr/bin/install -c -m 644 ../../gcc/gcc/read-md.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/read-md.h
2291/usr/bin/install -c -m 644 ../../gcc/gcc/read-rtl-function.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/read-rtl-function.h
2292/usr/bin/install -c -m 644 ../../gcc/gcc/real.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/real.h
2293/usr/bin/install -c -m 644 ../../gcc/gcc/realmpfr.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/realmpfr.h
2294/usr/bin/install -c -m 644 ../../gcc/gcc/recog.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/recog.h
2295/usr/bin/install -c -m 644 ../../gcc/gcc/regcprop.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/regcprop.h
2296/usr/bin/install -c -m 644 ../../gcc/gcc/reg-notes.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/reg-notes.def
2297/usr/bin/install -c -m 644 ../../gcc/gcc/regrename.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/regrename.h
2298/usr/bin/install -c -m 644 ../../gcc/gcc/regset.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/regset.h
2299/usr/bin/install -c -m 644 ../../gcc/gcc/regs.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/regs.h
2300/usr/bin/install -c -m 644 ../../gcc/gcc/reload.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/reload.h
2301/usr/bin/install -c -m 644 ../../gcc/gcc/resource.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/resource.h
2302/usr/bin/install -c -m 644 ../../gcc/gcc/rtlanal.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtlanal.h
2303/usr/bin/install -c -m 644 ../../gcc/gcc/rtl.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtl.def
2304/usr/bin/install -c -m 644 ../../gcc/gcc/rtl-error.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtl-error.h
2305/usr/bin/install -c -m 644 ../../gcc/gcc/rtl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtl.h
2306/usr/bin/install -c -m 644 ../../gcc/gcc/rtlhash.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtlhash.h
2307/usr/bin/install -c -m 644 ../../gcc/gcc/rtlhooks-def.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtlhooks-def.h
2308/usr/bin/install -c -m 644 ../../gcc/gcc/rtl-iter.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtl-iter.h
2309/usr/bin/install -c -m 644 ../../gcc/gcc/rtl-ssa.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtl-ssa.h
2310/usr/bin/install -c -m 644 ../../gcc/gcc/rtx-vector-builder.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/rtx-vector-builder.h
2311/usr/bin/install -c -m 644 ../../gcc/gcc/run-rtl-passes.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/run-rtl-passes.h
2312/usr/bin/install -c -m 644 ../../gcc/gcc/sanitizer.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sanitizer.def
2313/usr/bin/install -c -m 644 ../../gcc/gcc/sbitmap.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sbitmap.h
2314/usr/bin/install -c -m 644 ../../gcc/gcc/sched-int.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sched-int.h
2315/usr/bin/install -c -m 644 ../../gcc/gcc/selftest-diagnostic.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/selftest-diagnostic.h
2316/usr/bin/install -c -m 644 ../../gcc/gcc/selftest.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/selftest.h
2317/usr/bin/install -c -m 644 ../../gcc/gcc/selftest-rtl.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/selftest-rtl.h
2318/usr/bin/install -c -m 644 ../../gcc/gcc/sel-sched-dump.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sel-sched-dump.h
2319/usr/bin/install -c -m 644 ../../gcc/gcc/sel-sched.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sel-sched.h
2320/usr/bin/install -c -m 644 ../../gcc/gcc/sel-sched-ir.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sel-sched-ir.h
2321/usr/bin/install -c -m 644 ../../gcc/gcc/sese.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sese.h
2322/usr/bin/install -c -m 644 ../../gcc/gcc/shortest-paths.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/shortest-paths.h
2323/usr/bin/install -c -m 644 ../../gcc/gcc/shrink-wrap.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/shrink-wrap.h
2324/usr/bin/install -c -m 644 ../../gcc/gcc/signop.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/signop.h
2325/usr/bin/install -c -m 644 ../../gcc/gcc/sparseset.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sparseset.h
2326/usr/bin/install -c -m 644 ../../gcc/gcc/spellcheck.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/spellcheck.h
2327/usr/bin/install -c -m 644 ../../gcc/gcc/spellcheck-tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/spellcheck-tree.h
2328/usr/bin/install -c -m 644 ../../gcc/gcc/splay-tree-utils.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/splay-tree-utils.h
2329/usr/bin/install -c -m 644 ../../gcc/gcc/sreal.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sreal.h
2330/usr/bin/install -c -m 644 ../../gcc/gcc/ssa.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ssa.h
2331/usr/bin/install -c -m 644 ../../gcc/gcc/ssa-iterators.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ssa-iterators.h
2332/usr/bin/install -c -m 644 ../../gcc/gcc/stab.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/stab.def
2333/usr/bin/install -c -m 644 ../../gcc/gcc/statistics.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/statistics.h
2334/usr/bin/install -c -m 644 ../../gcc/gcc/stmt.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/stmt.h
2335/usr/bin/install -c -m 644 ../../gcc/gcc/stor-layout.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/stor-layout.h
2336/usr/bin/install -c -m 644 ../../gcc/gcc/streamer-hooks.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/streamer-hooks.h
2337/usr/bin/install -c -m 644 ../../gcc/gcc/stringpool.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/stringpool.h
2338/usr/bin/install -c -m 644 ../../gcc/gcc/substring-locations.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/substring-locations.h
2339/usr/bin/install -c -m 644 ../../gcc/gcc/symbol-summary.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/symbol-summary.h
2340/usr/bin/install -c -m 644 ../../gcc/gcc/symtab-clones.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/symtab-clones.h
2341/usr/bin/install -c -m 644 ../../gcc/gcc/symtab-thunks.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/symtab-thunks.h
2342/usr/bin/install -c -m 644 ../../gcc/gcc/sync-builtins.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/sync-builtins.def
2343/usr/bin/install -c -m 644 ../../gcc/gcc/system.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/system.h
2344/usr/bin/install -c -m 644 ../../gcc/gcc/target.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/target.def
2345/usr/bin/install -c -m 644 ../../gcc/gcc/target-def.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/target-def.h
2346/usr/bin/install -c -m 644 ../../gcc/gcc/target-globals.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/target-globals.h
2347/usr/bin/install -c -m 644 ../../gcc/gcc/target.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/target.h
2348/usr/bin/install -c -m 644 ../../gcc/gcc/target-hooks-macros.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/target-hooks-macros.h
2349/usr/bin/install -c -m 644 ../../gcc/gcc/target-insns.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/target-insns.def
2350/usr/bin/install -c -m 644 ../../gcc/gcc/targhooks.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/targhooks.h
2351/usr/bin/install -c -m 644 ../../gcc/gcc/timevar.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/timevar.def
2352/usr/bin/install -c -m 644 ../../gcc/gcc/timevar.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/timevar.h
2353/usr/bin/install -c -m 644 tm.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tm.h
2354/usr/bin/install -c -m 644 tm_p.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tm_p.h
2355/usr/bin/install -c -m 644 tm-preds.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tm-preds.h
2356/usr/bin/install -c -m 644 ../../gcc/gcc/toplev.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/toplev.h
2357/usr/bin/install -c -m 644 ../../gcc/gcc/tracer.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tracer.h
2358/usr/bin/install -c -m 644 ../../gcc/gcc/trans-mem.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/trans-mem.h
2359/usr/bin/install -c -m 644 ../../gcc/gcc/tree-affine.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-affine.h
2360/usr/bin/install -c -m 644 ../../gcc/gcc/tree-cfgcleanup.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-cfgcleanup.h
2361/usr/bin/install -c -m 644 ../../gcc/gcc/tree-cfg.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-cfg.h
2362/usr/bin/install -c -m 644 tree-check.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-check.h
2363/usr/bin/install -c -m 644 ../../gcc/gcc/tree-chrec.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-chrec.h
2364/usr/bin/install -c -m 644 ../../gcc/gcc/tree-core.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-core.h
2365/usr/bin/install -c -m 644 ../../gcc/gcc/tree-data-ref.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-data-ref.h
2366/usr/bin/install -c -m 644 ../../gcc/gcc/tree.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree.def
2367/usr/bin/install -c -m 644 ../../gcc/gcc/tree-dfa.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-dfa.h
2368/usr/bin/install -c -m 644 ../../gcc/gcc/tree-diagnostic.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-diagnostic.h
2369/usr/bin/install -c -m 644 ../../gcc/gcc/tree-dump.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-dump.h
2370/usr/bin/install -c -m 644 ../../gcc/gcc/tree-eh.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-eh.h
2371/usr/bin/install -c -m 644 ../../gcc/gcc/tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree.h
2372/usr/bin/install -c -m 644 ../../gcc/gcc/tree-hasher.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-hasher.h
2373/usr/bin/install -c -m 644 ../../gcc/gcc/tree-hash-traits.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-hash-traits.h
2374/usr/bin/install -c -m 644 ../../gcc/gcc/tree-if-conv.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-if-conv.h
2375/usr/bin/install -c -m 644 ../../gcc/gcc/tree-inline.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-inline.h
2376/usr/bin/install -c -m 644 ../../gcc/gcc/tree-into-ssa.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-into-ssa.h
2377/usr/bin/install -c -m 644 ../../gcc/gcc/tree-iterator.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-iterator.h
2378/usr/bin/install -c -m 644 ../../gcc/gcc/tree-nested.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-nested.h
2379/usr/bin/install -c -m 644 ../../gcc/gcc/tree-object-size.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-object-size.h
2380/usr/bin/install -c -m 644 ../../gcc/gcc/tree-outof-ssa.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-outof-ssa.h
2381/usr/bin/install -c -m 644 ../../gcc/gcc/tree-parloops.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-parloops.h
2382/usr/bin/install -c -m 644 ../../gcc/gcc/tree-pass.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-pass.h
2383/usr/bin/install -c -m 644 ../../gcc/gcc/tree-phinodes.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-phinodes.h
2384/usr/bin/install -c -m 644 ../../gcc/gcc/tree-pretty-print.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-pretty-print.h
2385/usr/bin/install -c -m 644 ../../gcc/gcc/tree-scalar-evolution.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-scalar-evolution.h
2386/usr/bin/install -c -m 644 ../../gcc/gcc/tree-sra.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-sra.h
2387/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-address.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-address.h
2388/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-alias-compare.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-alias-compare.h
2389/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-alias.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-alias.h
2390/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-ccp.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-ccp.h
2391/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-coalesce.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-coalesce.h
2392/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-dce.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-dce.h
2393/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-dom.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-dom.h
2394/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-dse.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-dse.h
2395/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa.h
2396/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-live.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-live.h
2397/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-loop.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-loop.h
2398/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-loop-ivopts.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-loop-ivopts.h
2399/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-loop-manip.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-loop-manip.h
2400/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-loop-niter.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-loop-niter.h
2401/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-math-opts.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-math-opts.h
2402/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssanames.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssanames.h
2403/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-operands.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-operands.h
2404/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-propagate.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-propagate.h
2405/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-reassoc.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-reassoc.h
2406/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-sccvn.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-sccvn.h
2407/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-scopedtables.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-scopedtables.h
2408/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-strlen.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-strlen.h
2409/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-ter.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-ter.h
2410/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-threadedge.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-threadedge.h
2411/usr/bin/install -c -m 644 ../../gcc/gcc/tree-ssa-threadupdate.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-ssa-threadupdate.h
2412/usr/bin/install -c -m 644 ../../gcc/gcc/tree-stdarg.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-stdarg.h
2413/usr/bin/install -c -m 644 ../../gcc/gcc/tree-streamer.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-streamer.h
2414/usr/bin/install -c -m 644 ../../gcc/gcc/treestruct.def /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/treestruct.def
2415/usr/bin/install -c -m 644 ../../gcc/gcc/tree-switch-conversion.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-switch-conversion.h
2416/usr/bin/install -c -m 644 ../../gcc/gcc/tree-vector-builder.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-vector-builder.h
2417/usr/bin/install -c -m 644 ../../gcc/gcc/tree-vectorizer.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-vectorizer.h
2418/usr/bin/install -c -m 644 ../../gcc/gcc/tree-vrp.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tree-vrp.h
2419/usr/bin/install -c -m 644 ../../gcc/gcc/tristate.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tristate.h
2420/usr/bin/install -c -m 644 ../../gcc/gcc/tsan.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tsan.h
2421/usr/bin/install -c -m 644 ../../gcc/gcc/tsystem.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/tsystem.h
2422/usr/bin/install -c -m 644 ../../gcc/gcc/typeclass.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/typeclass.h
2423/usr/bin/install -c -m 644 ../../gcc/gcc/typed-splay-tree.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/typed-splay-tree.h
2424/usr/bin/install -c -m 644 ../../gcc/gcc/ubsan.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/ubsan.h
2425/usr/bin/install -c -m 644 ../../gcc/gcc/valtrack.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/valtrack.h
2426/usr/bin/install -c -m 644 ../../gcc/gcc/value-prof.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/value-prof.h
2427/usr/bin/install -c -m 644 ../../gcc/gcc/value-query.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/value-query.h
2428/usr/bin/install -c -m 644 ../../gcc/gcc/value-range-equiv.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/value-range-equiv.h
2429/usr/bin/install -c -m 644 ../../gcc/gcc/value-range.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/value-range.h
2430/usr/bin/install -c -m 644 ../../gcc/gcc/varasm.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/varasm.h
2431/usr/bin/install -c -m 644 ../../gcc/gcc/vec.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/vec.h
2432/usr/bin/install -c -m 644 ../../gcc/gcc/vec-perm-indices.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/vec-perm-indices.h
2433/usr/bin/install -c -m 644 ../../gcc/gcc/vector-builder.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/vector-builder.h
2434/usr/bin/install -c -m 644 ../../gcc/gcc/version.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/version.h
2435/usr/bin/install -c -m 644 ../../gcc/gcc/vmsdbg.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/vmsdbg.h
2436/usr/bin/install -c -m 644 ../../gcc/gcc/vr-values.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/vr-values.h
2437/usr/bin/install -c -m 644 ../../gcc/gcc/vtable-verify.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/vtable-verify.h
2438/usr/bin/install -c -m 644 ../../gcc/gcc/wide-int-bitmask.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/wide-int-bitmask.h
2439/usr/bin/install -c -m 644 ../../gcc/gcc/wide-int.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/wide-int.h
2440/usr/bin/install -c -m 644 ../../gcc/gcc/wide-int-print.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/wide-int-print.h
2441/usr/bin/install -c -m 644 ../../gcc/gcc/xcoff.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/xcoff.h
2442/usr/bin/install -c -m 644 ../../gcc/gcc/xcoffout.h /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/xcoffout.h
2443/usr/bin/install -c -m 644 b-header-vars /home/julian/osdev/tools/opt/cross/lib/gcc/x86_64-elf/11.0.1/plugin/include/b-header-vars
2444make[1]: Leaving directory '/home/julian/osdev/tools/build-gcc/gcc'
2445/bin/bash ../gcc/mkinstalldirs /home/julian/osdev/tools/opt/cross /home/julian/osdev/tools/opt/cross
2446make[1]: Entering directory '/home/julian/osdev/tools/build-gcc/x86_64-elf/libgcc'
2447make[1]: *** No rule to make target 'install'. Stop.
2448make[1]: Leaving directory '/home/julian/osdev/tools/build-gcc/x86_64-elf/libgcc'
2449make: *** [Makefile:13583: install-target-libgcc] Error 2
2450julian@LinuxBot:~/osdev/tools$ ls
2451binutils-gdb build-binutils build-gcc build.sh gcc opt
2452julian@LinuxBot:~/osdev/tools$ cat build.sh
2453#!/bin/bash
2454
2455export PREFIX="$HOME/osdev/tools/opt/cross"
2456export TARGET=x86_64-elf
2457export PATH="$PREFIX/bin:$PATH"
2458
2459cd "$HOME/osdev/tools"
2460mkdir build-binutils
2461cd build-binutils
2462../binutils/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror
2463make
2464make install
2465
2466cd "$HOME/osdev/tools"
2467which -- $TARGET-as || echo $TARGET-as is not in the path
2468
2469mkdir build-gcc
2470cd build-gcc
2471../gcc/configure --target=$TARGET --prefix="$PREFIX" --disable-nls --enable-languages=c,c++ --without-headers
2472make all-gcc
2473make all-target-libgcc
2474make install-gcc
2475make install-target-libgcc
2476
2477julian@LinuxBot:~/osdev/tools$ ls
2478binutils-gdb build-binutils build-gcc build.sh gcc opt
2479julian@LinuxBot:~/osdev/tools$ cd build-gcc
2480julian@LinuxBot:~/osdev/tools/build-gcc$ ls
2481build-x86_64-pc-linux-gnu fixincludes libbacktrace libdecnumber Makefile zlib
2482config.log gcc libcody libiberty serdep.tmp
2483config.status intl libcpp lto-plugin x86_64-elf
2484julian@LinuxBot:~/osdev/tools/build-gcc$ cd x86_64-elf
2485julian@LinuxBot:~/osdev/tools/build-gcc/x86_64-elf$ ls
2486libgcc
2487julian@LinuxBot:~/osdev/tools/build-gcc/x86_64-elf$ gcc --version
2488gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
2489Copyright (C) 2019 Free Software Foundation, Inc.
2490This is free software; see the source for copying conditions. There is NO
2491warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
2492
2493julian@LinuxBot:~/osdev/tools/build-gcc/x86_64-elf$ binutils --version
2494bash: binutils: command not found
2495julian@LinuxBot:~/osdev/tools/build-gcc/x86_64-elf$ ld --version
2496GNU ld (GNU Binutils for Ubuntu) 2.34
2497Copyright (C) 2020 Free Software Foundation, Inc.
2498This program is free software; you may redistribute it under the terms of
2499the GNU General Public License version 3 or (at your option) a later version.
2500This program has absolutely no warranty.
2501julian@LinuxBot:~/osdev/tools/build-gcc/x86_64-elf$
2502julian@LinuxBot:~/osdev/tools/build-gcc/x86_64-elf$ ^C
2503julian@LinuxBot:~/osdev/tools/build-gcc/x86_64-elf$
2504