summaryrefslogtreecommitdiffstats
path: root/copyright
blob: 1d57ba6f1bf4b35092343591e9f5b73ee6e6f82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
gcc
===

In General
----------

Copyright (C) 1986-2019 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

gcc/config/aarch64/arm_acle.h, gcc/config/aarch64/arm_fp16.h,
gcc/config/aarch64/arm_neon.h, gcc/config/aarch64/biarchilp32.h,
gcc/config/aarch64/biarchlp64.h, gcc/config/aarch64/rtems.h,
gcc/config/arm/aout.h, gcc/config/arm/arm-ldmstm.ml, gcc/config/arm/arm-opts.h,
gcc/config/arm/arm.h, gcc/config/arm/arm_acle.h, gcc/config/arm/arm_cmse.h,
gcc/config/arm/arm_fp16.h, gcc/config/arm/arm_neon.h, gcc/config/arm/bpabi.h,
gcc/config/arm/elf.h, gcc/config/arm/freebsd.h, gcc/config/arm/ldmstm.md,
gcc/config/arm/linux-elf.h, gcc/config/arm/linux-gas.h,
gcc/config/arm/mmintrin.h, gcc/config/arm/netbsd-elf.h, gcc/config/arm/rtems.h,
gcc/config/arm/uclinux-eabi.h, gcc/config/arm/uclinux-elf.h,
gcc/config/arm/vxworks.h, gcc/config/avr/stdfix.h, gcc/config/bfin/elf.h,
gcc/config/bfin/linux.h, gcc/config/bfin/rtems.h, gcc/config/bfin/uclinux.h,
gcc/config/c6x/c6x_intrinsics.h, gcc/config/darwin.h, gcc/config/dbx.h,
gcc/config/dbxelf.h, gcc/config/dragonfly-stdint.h, gcc/config/dragonfly.h,
gcc/config/elfos.h, gcc/config/epiphany/epiphany_intrinsics.h,
gcc/config/freebsd-spec.h, gcc/config/freebsd-stdint.h,
gcc/config/glibc-stdint.h, gcc/config/gnu-user.h, gcc/config/i386/adxintrin.h,
gcc/config/i386/ammintrin.h, gcc/config/i386/att.h,
gcc/config/i386/avx2intrin.h, gcc/config/i386/avx512*.h,
gcc/config/i386/avxintrin.h, gcc/config/i386/biarch64.h,
gcc/config/i386/biarchx32.h, gcc/config/i386/bmi2intrin.h,
gcc/config/i386/bmiintrin.h, gcc/config/i386/bmmintrin.h, gcc/config/i386/cet.h,
gcc/config/i386/cetintrin.h, gcc/config/i386/clflushoptintrin.h,
gcc/config/i386/clwbintrin.h, gcc/config/i386/clzerointrin.h,
gcc/config/i386/cpuid.h, gcc/config/i386/cross-stdarg.h,
gcc/config/i386/dragonfly.h, gcc/config/i386/emmintrin.h,
gcc/config/i386/f16cintrin.h, gcc/config/i386/fma4intrin.h,
gcc/config/i386/fmaintrin.h, gcc/config/i386/fxsrintrin.h,
gcc/config/i386/gfniintrin.h, gcc/config/i386/gmm_malloc.h,
gcc/config/i386/gnu-user64.h, gcc/config/i386/i386-builtin.def,
gcc/config/i386/i386-opts.h, gcc/config/i386/i386.h,
gcc/config/i386/ia32intrin.h, gcc/config/i386/iamcu.h,
gcc/config/i386/immintrin.h, gcc/config/i386/intelmic-offload.h,
gcc/config/i386/linux64.h, gcc/config/i386/lwpintrin.h,
gcc/config/i386/lzcntintrin.h, gcc/config/i386/mm3dnow.h,
gcc/config/i386/mmintrin.h, gcc/config/i386/movdirintrin.h,
gcc/config/i386/mwaitxintrin.h, gcc/config/i386/nmmintrin.h,
gcc/config/i386/pkuintrin.h, gcc/config/i386/pmm_malloc.h,
gcc/config/i386/pmmintrin.h, gcc/config/i386/popcntintrin.h,
gcc/config/i386/prfchwintrin.h, gcc/config/i386/rdseedintrin.h,
gcc/config/i386/rtemself.h, gcc/config/i386/rtmintrin.h,
gcc/config/i386/sgxintrin.h, gcc/config/i386/shaintrin.h,
gcc/config/i386/smmintrin.h, gcc/config/i386/tbmintrin.h,
gcc/config/i386/tmmintrin.h, gcc/config/i386/unix.h,
gcc/config/i386/vaesintrin.h, gcc/config/i386/vpclmulqdqintrin.h,
gcc/config/i386/wmmintrin.h, gcc/config/i386/x86-64.h,
gcc/config/i386/x86-tune-costs.h, gcc/config/i386/x86-tune.def,
gcc/config/i386/x86intrin.h, gcc/config/i386/xmmintrin.h,
gcc/config/i386/xopintrin.h, gcc/config/i386/xsavecintrin.h,
gcc/config/i386/xsaveintrin.h, gcc/config/i386/xsaveoptintrin.h,
gcc/config/i386/xsavesintrin.h, gcc/config/i386/xtestintrin.h,
gcc/config/ia64/elf.h, gcc/config/ia64/linux.h, gcc/config/ia64/sysv4.h,
gcc/config/initfini-array.h, gcc/config/linux.h, gcc/config/lm32/rtems.h,
gcc/config/m32c/rtems.h, gcc/config/m68k/rtemself.h,
gcc/config/microblaze/rtems.h, gcc/config/mips/loongson.h,
gcc/config/mips/msa.h, gcc/config/mips/rtems.h, gcc/config/moxie/rtems.h,
gcc/config/moxie/uclinux.h, gcc/config/nds32/nds32_intrinsic.h,
gcc/config/netbsd-stdint.h, gcc/config/newlib-stdint.h,
gcc/config/nios2/ldstwm.md, gcc/config/nios2/nios2-ldstwm.sml,
gcc/config/nios2/rtems.h, gcc/config/nvptx/offload.h, gcc/config/pa/pa32-regs.h,
gcc/config/powerpcspe/476.h, gcc/config/powerpcspe/750cl.h,
gcc/config/powerpcspe/altivec.h, gcc/config/powerpcspe/biarch64.h,
gcc/config/powerpcspe/bmi2intrin.h, gcc/config/powerpcspe/bmiintrin.h,
gcc/config/powerpcspe/htmintrin.h, gcc/config/powerpcspe/htmxlintrin.h,
gcc/config/powerpcspe/linux64.h, gcc/config/powerpcspe/option-defaults.h,
gcc/config/powerpcspe/paired.h, gcc/config/powerpcspe/powerpcspe-builtin.def,
gcc/config/powerpcspe/powerpcspe-opts.h, gcc/config/powerpcspe/powerpcspe.h,
gcc/config/powerpcspe/ppc-asm.h, gcc/config/powerpcspe/ppc-auxv.h,
gcc/config/powerpcspe/ppu_intrinsics.h, gcc/config/powerpcspe/rtems.h,
gcc/config/powerpcspe/si2vmx.h, gcc/config/powerpcspe/spe.h,
gcc/config/powerpcspe/spu2vmx.h, gcc/config/powerpcspe/sysv4.h,
gcc/config/powerpcspe/vec_types.h, gcc/config/powerpcspe/x86intrin.h,
gcc/config/riscv/rtems.h, gcc/config/rs6000/476.h, gcc/config/rs6000/750cl.h,
gcc/config/rs6000/altivec.h, gcc/config/rs6000/amo.h,
gcc/config/rs6000/biarch64.h, gcc/config/rs6000/bmi2intrin.h,
gcc/config/rs6000/bmiintrin.h, gcc/config/rs6000/emmintrin.h,
gcc/config/rs6000/htmintrin.h, gcc/config/rs6000/htmxlintrin.h,
gcc/config/rs6000/linux64.h, gcc/config/rs6000/mm_malloc.h,
gcc/config/rs6000/mmintrin.h, gcc/config/rs6000/option-defaults.h,
gcc/config/rs6000/paired.h, gcc/config/rs6000/ppc-asm.h,
gcc/config/rs6000/ppc-auxv.h, gcc/config/rs6000/ppu_intrinsics.h,
gcc/config/rs6000/rs6000-builtin.def, gcc/config/rs6000/rs6000-opts.h,
gcc/config/rs6000/rs6000.h, gcc/config/rs6000/rtems.h,
gcc/config/rs6000/si2vmx.h, gcc/config/rs6000/spu2vmx.h,
gcc/config/rs6000/sysv4.h, gcc/config/rs6000/vec_types.h,
gcc/config/rs6000/x86intrin.h, gcc/config/rs6000/xmmintrin.h,
gcc/config/rtems.h, gcc/config/sh/divtab-sh4-300.c, gcc/config/sh/divtab-sh4.c,
gcc/config/sh/divtab.c, gcc/config/sh/rtems.h, gcc/config/sh/rtemself.h,
gcc/config/sparc/rtemself.h, gcc/config/sparc/visintrin.h,
gcc/config/spu/spu_cache.h, gcc/config/spu/spu_internals.h,
gcc/config/spu/spu_intrinsics.h, gcc/config/spu/spu_mfcio.h,
gcc/config/spu/vec_types.h, gcc/config/spu/vmx2spu.h, gcc/config/v850/rtems.h,
gcc/config/v850/v850-opts.h, gcc/config/v850/v850.h, gcc/config/vxworks-dummy.h,
gcc/config/vxworks-stdint.h, gcc/coretypes.h, gcc/defaults.h, gcc/gcov-io.c,
gcc/gcov-io.h, gcc/gcov-tool.c, gcc/ginclude/*.h, gcc/glimits.h, gcc/limitx.h,
gcc/tsystem.h, gcc/typeclass.h
--------------------------------------------------------------------------------

Copyright (C) 1988-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.

gcc/et-forest.c, gcc/prefix.c, gcc/prefix.h, gcc/stab.def
---------------------------------------------------------

Copyright (C) 1997-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.

GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU Lesser General Public License may be found at
<file:///usr/share/common-licenses/LGPL-3>.

gcc/config/m68k/math-68881.h
----------------------------

Copyright (C) 1989 by Matthew Self.
You may freely distribute verbatim copies of this software
provided that this copyright notice is retained in all copies.
You may distribute modifications to this software under the
conditions above if you also clearly note such modifications
with their author and date.

This file is NOT a part of GCC, just distributed with it.

If you find this in GCC,
please send bug reports to bug-gcc@prep.ai.mit.edu.

Changed by Richard Stallman:
May 1993, add conditional to prevent multiple inclusion.
% inserted before a #.
New function `hypot' added.
Nans written in hex to avoid 0rnan.
May 1992, use %! for fpcr register.  Break lines before function names.
December 1989, add parens around `&' in pow.
November 1990, added alternate definition of HUGE_VAL for Sun.

Changed by Jim Wilson:
September 1993, Use #undef before HUGE_VAL instead of #ifdef/#endif.

Changed by Ian Lance Taylor:
September 1994, use extern inline instead of static inline.


include
=======

include/ansidecl.h, include/dyn-string.h, include/fibheap.h,
include/filenames.h, include/floatformat.h, include/fnmatch.h, include/getopt.h,
include/hashtab.h, include/libiberty.h, include/md5.h, include/objalloc.h,
include/partition.h, include/simple-object.h, include/sort.h,
include/splay-tree.h, include/symcat.h, include/xtensa-config.h
--------------------------------------------------------------------------------

Copyright (C) 1989-2018 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 51 Franklin Street - Fifth Floor,
Boston, MA 02110-1301, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

include/gcc-c-fe.def, include/gcc-c-interface.h, include/gcc-cp-fe.def,
include/gcc-cp-interface.h, include/gcc-interface.h, include/gdb/gdb-index.h,
include/lto-symtab.h, include/plugin-api.h, include/sha1.h, include/unique-ptr.h
--------------------------------------------------------------------------------

Copyright (C) 2000-2018 Free Software Foundation, Inc.

This file is part of GCC.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

include/dwarf2.def, include/dwarf2.h, include/gomp-constants.h, include/hsa.h
-----------------------------------------------------------------------------

Copyright (C) 1992-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
License for more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.

include/environ.h, include/leb128.h,
include/safe-ctype.h, include/timeval-utils.h
---------------------------------------------

Copyright (C) 2000-2018 Free Software Foundation, Inc.

This file is part of the libiberty library.
Libiberty is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

Libiberty is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with libiberty; see the file COPYING.LIB.  If not,
write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
Boston, MA 02110-1301, USA.

On this system, a copy of the GNU Library General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2>.

include/demangle.h, include/vtv-change-permission.h
---------------------------------------------------

Copyright (C) 1992-2018 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License
as published by the Free Software Foundation; either version 2, or
(at your option) any later version.

In addition to the permissions in the GNU Library General Public
License, the Free Software Foundation gives you unlimited
permission to link the compiled version of this file into
combinations with other programs, and to distribute those
combinations without any restriction coming from the use of this
file.  (The Library Public License restrictions do apply in other
respects; for example, they cover modification of the file, and
distribution when not linked into a combined executable.)

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA.

On this system, a copy of the GNU Library General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2>.

include/obstack.h, include/xregex2.h
------------------------------------

Copyright (C) 1985-2018 Free Software Foundation, Inc.

This file is part of the GNU C Library.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU Lesser General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2.1>.

include/longlong.h
------------------

Copyright (C) 1991-2018 Free Software Foundation, Inc.

This file is part of the GNU C Library.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

In addition to the permissions in the GNU Lesser General Public
License, the Free Software Foundation gives you unlimited
permission to link the compiled version of this file into
combinations with other programs, and to distribute those
combinations without any restriction coming from the use of this
file.  (The Lesser General Public License restrictions do apply in
other respects; for example, they cover modification of the file,
and distribution when not linked into a combine executable.)

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU Lesser General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2.1>.


libatomic
=========

Copyright (C) 2012-2018 Free Software Foundation, Inc.

This file is part of the GNU Atomic Library (libatomic).

Libatomic is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.

Libatomic is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.


libbacktrace
============

Copyright (C) 2012-2018 Free Software Foundation, Inc.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

    (1) Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

    (2) Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution.

    (3) The name of the author may not be used to
    endorse or promote products derived from this software without
    specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.


libcc1
======

Copyright (C) 2014-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.


libcpp
======

Copyright (C) 1986-2018 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any
later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.


libdecnumber
============

Copyright (C) 2005-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.


libgcc
======

In General
----------

Copyright (C) 1989-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.

libgcc/config/c6x/eqd.c, libgcc/config/c6x/eqf.c, libgcc/config/c6x/ged.c,
libgcc/config/c6x/gef.c, libgcc/config/c6x/gtd.c, libgcc/config/c6x/gtf.c,
libgcc/config/c6x/led.c, libgcc/config/c6x/lef.c, libgcc/config/c6x/ltd.c,
libgcc/config/c6x/ltf.c, libgcc/config/c6x/sfp-machine.h,
libgcc/config/nds32/sfp-machine.h, libgcc/config/rs6000/extendkftf2-sw.c,
libgcc/config/rs6000/fixkfti.c, libgcc/config/rs6000/fixunskfti.c,
libgcc/config/rs6000/float128-hw.c, libgcc/config/rs6000/float128-ifunc.c,
libgcc/config/rs6000/floattikf.c, libgcc/config/rs6000/floatuntikf.c,
libgcc/config/rs6000/quad-float128.h, libgcc/config/rs6000/trunctfkf2-sw.c,
libgcc/soft-fp/adddf3.c, libgcc/soft-fp/addsf3.c, libgcc/soft-fp/addtf3.c,
libgcc/soft-fp/divdf3.c, libgcc/soft-fp/divsf3.c, libgcc/soft-fp/divtf3.c,
libgcc/soft-fp/double.h, libgcc/soft-fp/eqdf2.c, libgcc/soft-fp/eqsf2.c,
libgcc/soft-fp/eqtf2.c, libgcc/soft-fp/extenddftf2.c, libgcc/soft-fp/extended.h,
libgcc/soft-fp/extendhftf2.c, libgcc/soft-fp/extendsfdf2.c,
libgcc/soft-fp/extendsftf2.c, libgcc/soft-fp/extendxftf2.c,
libgcc/soft-fp/fixdfdi.c, libgcc/soft-fp/fixdfsi.c, libgcc/soft-fp/fixdfti.c,
libgcc/soft-fp/fixhfti.c, libgcc/soft-fp/fixsfdi.c, libgcc/soft-fp/fixsfsi.c,
libgcc/soft-fp/fixsfti.c, libgcc/soft-fp/fixtfdi.c, libgcc/soft-fp/fixtfsi.c,
libgcc/soft-fp/fixtfti.c, libgcc/soft-fp/fixunsdfdi.c,
libgcc/soft-fp/fixunsdfsi.c, libgcc/soft-fp/fixunsdfti.c,
libgcc/soft-fp/fixunshfti.c, libgcc/soft-fp/fixunssfdi.c,
libgcc/soft-fp/fixunssfsi.c, libgcc/soft-fp/fixunssfti.c,
libgcc/soft-fp/fixunstfdi.c, libgcc/soft-fp/fixunstfsi.c,
libgcc/soft-fp/fixunstfti.c, libgcc/soft-fp/floatdidf.c,
libgcc/soft-fp/floatdisf.c, libgcc/soft-fp/floatditf.c,
libgcc/soft-fp/floatsidf.c, libgcc/soft-fp/floatsisf.c,
libgcc/soft-fp/floatsitf.c, libgcc/soft-fp/floattidf.c,
libgcc/soft-fp/floattihf.c, libgcc/soft-fp/floattisf.c,
libgcc/soft-fp/floattitf.c, libgcc/soft-fp/floatundidf.c,
libgcc/soft-fp/floatundisf.c, libgcc/soft-fp/floatunditf.c,
libgcc/soft-fp/floatunsidf.c, libgcc/soft-fp/floatunsisf.c,
libgcc/soft-fp/floatunsitf.c, libgcc/soft-fp/floatuntidf.c,
libgcc/soft-fp/floatuntihf.c, libgcc/soft-fp/floatuntisf.c,
libgcc/soft-fp/floatuntitf.c, libgcc/soft-fp/gedf2.c, libgcc/soft-fp/gesf2.c,
libgcc/soft-fp/getf2.c, libgcc/soft-fp/half.h, libgcc/soft-fp/ledf2.c,
libgcc/soft-fp/lesf2.c, libgcc/soft-fp/letf2.c, libgcc/soft-fp/muldf3.c,
libgcc/soft-fp/mulsf3.c, libgcc/soft-fp/multf3.c, libgcc/soft-fp/negdf2.c,
libgcc/soft-fp/negsf2.c, libgcc/soft-fp/negtf2.c, libgcc/soft-fp/op-1.h,
libgcc/soft-fp/op-2.h, libgcc/soft-fp/op-4.h, libgcc/soft-fp/op-8.h,
libgcc/soft-fp/op-common.h, libgcc/soft-fp/quad.h, libgcc/soft-fp/single.h,
libgcc/soft-fp/soft-fp.h, libgcc/soft-fp/subdf3.c, libgcc/soft-fp/subsf3.c,
libgcc/soft-fp/subtf3.c, libgcc/soft-fp/truncdfsf2.c,
libgcc/soft-fp/trunctfdf2.c, libgcc/soft-fp/trunctfhf2.c,
libgcc/soft-fp/trunctfsf2.c, libgcc/soft-fp/trunctfxf2.c,
libgcc/soft-fp/unorddf2.c, libgcc/soft-fp/unordsf2.c, libgcc/soft-fp/unordtf2.c
--------------------------------------------------------------------------------

Copyright (C) 1997-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

In addition to the permissions in the GNU Lesser General Public
License, the Free Software Foundation gives you unlimited
permission to link the compiled version of this file into
combinations with other programs, and to distribute those
combinations without any restriction coming from the use of this
file.  (The Lesser General Public License restrictions do apply in
other respects; for example, they cover modification of the file,
and distribution when not linked into a combine executable.)

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU Lesser General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2.1>.

libgcc/config/avr/lib1funcs-fixed.S, libgcc/config/arc/divtab-arc700.c
----------------------------------------------------------------------

Copyright (C) 2004-2018 Free Software Foundation, Inc.

This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any
later version.

In addition to the permissions in the GNU General Public License, the
Free Software Foundation gives you unlimited permission to link the
compiled version of this file into combinations with other programs,
and to distribute those combinations without any restriction coming
from the use of this file.  (The General Public License restrictions
do apply in other respects; for example, they cover modification of
the file, and distribution when not linked into a combine
executable.)

This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

libgcc/config/pa/pa64-hpux-lib.h
--------------------------------

Copyright (C) 1999-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.

GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

libgcc/config/m68k/fpgnulib.c
-----------------------------

Copyright (C) 1991 by Pipeline Associates, Inc.  All rights reserved.
Permission is granted to do *anything* you want with this file,
commercial or otherwise, provided this message remains intact.  So there!
I would appreciate receiving any updates/patches/changes that anyone
makes, and am willing to be the repository for said changes (am I
making a big mistake?).

libgcc/config/sol2/gmon.c
-------------------------

Copyright (c) 1991 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. [rescinded 22 July 1999]
4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.


libgomp
=======

Copyright (C) 1998-2018 Free Software Foundation, Inc.

This file is part of the GNU Offloading and Multi Processing Library
(libgomp).

Libgomp is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.

Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.


libiberty
=========

In General
----------

Copyright (C) 1989-2018 Free Software Foundation, Inc.

This file is part of the libiberty library.
Libiberty is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

Libiberty is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with libiberty; see the file COPYING.LIB.  If not, write
to the Free Software Foundation, Inc., 51 Franklin Street - Fifth
Floor, Boston, MA 02110-1301, USA.

libiberty/_doprnt.c, libiberty/fibheap.c, libiberty/filename_cmp.c,
libiberty/floatformat.c, libiberty/fnmatch.c, libiberty/getopt1.c,
libiberty/getopt.c, libiberty/lrealpath.c, libiberty/make-relative-prefix.c,
libiberty/md5.c, libiberty/memmem.c, libiberty/objalloc.c,
libiberty/partition.c, libiberty/physmem.c, libiberty/sha1.c,
libiberty/simple-object.c, libiberty/simple-object-coff.c,
libiberty/simple-object-elf.c, libiberty/simple-object-mach-o.c,
libiberty/simple-object-xcoff.c, libiberty/sort.c, libiberty/splay-tree.c
----------------------------------------------------------------------------

Copyright (C) 1987-2018 Free Software Foundation, Inc.

This file is part of libiberty.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING.  If not, write to the Free
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libiberty/clock.c, libiberty/snprintf.c, libiberty/stack-limit.c,
libiberty/strtod.c, libiberty/unlink-if-ordinary.c,
libiberty/vsnprintf.c, libiberty/vsprintf.c
-----------------------------------------------------------------

Copyright (C) 1991-2018 Free Software Foundation, Inc.

This file is part of the libiberty library.  This library is free
software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option)
any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING.  If not, write to
the Free Software Foundation, 51 Franklin Street - Fifth Floor,
Boston, MA 02110-1301, USA.

As a special exception, if you link this library with files
compiled with a GNU compiler to produce an executable, this does not cause
the resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why
the executable file might be covered by the GNU General Public License.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libiberty/cp-demangle.c, libiberty/cp-demangle.h, libiberty/cp-demint.c,
libiberty/crc32.c, libiberty/dwarfnames.c, libiberty/dyn-string.c
------------------------------------------------------------------------

Copyright (C) 1998-2018 Free Software Foundation, Inc.

This file is part of the libiberty library, which is part of GCC.

This file is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

In addition to the permissions in the GNU General Public License, the
Free Software Foundation gives you unlimited permission to link the
compiled version of this file into combinations with other programs,
and to distribute those combinations without any restriction coming
from the use of this file.  (The General Public License restrictions
do apply in other respects; for example, they cover modification of
the file, and distribution when not linked into a combined
executable.)

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libiberty/cplus-dem.c, libiberty/d-demangle.c, libiberty/rust-demangle.c
------------------------------------------------------------------------

Copyright (C) 1989-2018 Free Software Foundation, Inc.

This file is part of the libiberty library.
Libiberty is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

In addition to the permissions in the GNU Library General Public
License, the Free Software Foundation gives you unlimited permission
to link the compiled version of this file into combinations with other
programs, and to distribute those combinations without any restriction
coming from the use of this file.  (The Library Public License
restrictions do apply in other respects; for example, they cover
modification of the file, and distribution when not linked into a
combined executable.)

Libiberty is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with libiberty; see the file COPYING.LIB.
If not, see <http://www.gnu.org/licenses/>.

On this system, a copy of the GNU Library General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2>.

libiberty/obstack.c, libiberty/regex.c, libiberty/strverscmp.c
--------------------------------------------------------------

Copyright (C) 1988-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU Lesser General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2.1>.

libiberty/bsearch.c, libiberty/random.c, libiberty/strtol.c,
libiberty/strtoll.c, libiberty/strtoul.c, libiberty/strtoull.c
--------------------------------------------------------------

Copyright (c) 1983, 1990, 2014 Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. [rescinded 22 July 1999]
4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

libiberty/strcasecmp.c, libiberty/strncasecmp.c
-----------------------------------------------

Copyright (c) 1987 Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms are permitted
provided that this notice is preserved and that due credit is given
to the University of California at Berkeley. The name of the University
may not be used to endorse or promote products derived from this
software without specific written prior permission. This software
is provided ``as is'' without express or implied warranty.

libiberty/vfprintf.c
--------------------

Copyright (C) 1998-2018 Free Software Foundation, Inc.

libiberty/xatexit.c
-------------------

Copyright (c) 1990 Regents of the University of California.
All rights reserved.

%sccs.include.redist.c%


libsanitizer
============

Copyright (c) 2009-2012 by the LLVM contributors

All rights reserved.

Developed by:

    LLVM Team

    University of Illinois at Urbana-Champaign

    http://llvm.org

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal with
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimers.

    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimers in the
      documentation and/or other materials provided with the distribution.

    * Neither the names of the LLVM Team, University of Illinois at
      Urbana-Champaign, nor the names of its contributors may be used to
      endorse or promote products derived from this Software without specific
      prior written permission.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
SOFTWARE.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


libstdc++-v3
============

Copyright (C) 1994-2018 Free Software Foundation, Inc.

This file is part of the GNU ISO C++ Library.  This library is free
software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option)
any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.

Copyright (c) 1994
Hewlett-Packard Company

Permission to use, copy, modify, distribute and sell this software
and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear
in supporting documentation.  Hewlett-Packard Company makes no
representations about the suitability of this software for any
purpose.  It is provided "as is" without express or implied warranty.

Copyright (c) 1996-1998
Silicon Graphics Computer Systems, Inc.

Permission to use, copy, modify, distribute and sell this software
and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear
in supporting documentation.  Silicon Graphics makes no
representations about the suitability of this software for any
purpose.  It is provided "as is" without express or implied warranty.

Copyright (c) 2001, 2002, 2003 Peter Dimov and Multi Media Ltd.
Copyright (C) 1998, 1999 Greg Colvin and Beman Dawes.

Distributed under the Boost Software License, Version 1.0. (See
accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)

Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.

Permission to use, copy, modify, sell, and distribute this software
is hereby granted without fee, provided that the above copyright
notice appears in all copies, and that both that copyright notice
and this permission notice appear in supporting documentation. None
of the above authors, nor IBM Haifa Research Laboratories, make any
representation about the suitability of this software for any
purpose. It is provided "as is" without express or implied
warranty.


libssp
======

Copyright (C) 1991-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

In addition to the permissions in the GNU General Public License, the
Free Software Foundation gives you unlimited permission to link the
compiled version of this file into combinations with other programs,
and to distribute those combinations without any restriction coming
from the use of this file.  (The General Public License restrictions
do apply in other respects; for example, they cover modification of
the file, and distribution when not linked into a combine
executable.)

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.


libvtv
======

Copyright (C) 2012-2018 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.

GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.

A copy of the GCC Runtime Library Exception may be found in the file
COPYING.RUNTIME.


lto-plugin
==========

Copyright (C) 2008-2018 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-3>.


Distribution Packaging
======================

Copyright (C) 2013, 2019 Patrick McDermott

These files may be reproduced, distributed, modified, and otherwise dealt in
under the terms of the Expat License.

On this system, a copy of the Expat License may be found at
<file:///usr/share/common-licenses/Expat>.