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
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
|
<html lang="en">
<head>
<title>Host/Target specific installation notes for GCC</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Host/Target specific installation notes for GCC">
<meta name="generator" content="makeinfo 4.5">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home">
<!--
Copyright © 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
<br><p>
<p>Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no
Invariant Sections, the Front-Cover texts being (a) (see below), and
with the Back-Cover Texts being (b) (see below). A copy of the
license is included in the section entitled "<a href="./gfdl.html">GNU Free Documentation License</a>".
<p>(a) The FSF's Front-Cover Text is:
<p>A GNU Manual
<p>(b) The FSF's Back-Cover Text is:
<p>You have freedom to copy and modify this GNU Manual, like GNU
software. Copies published by the Free Software Foundation raise
funds for GNU development.-->
</head>
<body>
<h1 class="settitle">Host/Target specific installation notes for GCC</h1>
Please read this document carefully <em>before</em> installing the
GNU Compiler Collection on your machine.
<ul>
<li><a href="#alpha*-*-*">alpha*-*-*</a>
<li><a href="#alpha*-dec-osf*">alpha*-dec-osf*</a>
<li><a href="#alphaev5-cray-unicosmk*">alphaev5-cray-unicosmk*</a>
<li><a href="#arc-*-elf">arc-*-elf</a>
<li><a href="#arm-*-aout">arm-*-aout</a>
<li><a href="#arm-*-elf">arm-*-elf</a>
<li><a href="#arm*-*-linux-gnu">arm*-*-linux-gnu</a>
<li><a href="#avr">avr</a>
<li><a href="#c4x">c4x</a>
<li><a href="#dos">DOS</a>
<li><a href="#dsp16xx">dsp16xx</a>
<li><a href="#*-*-freebsd*">*-*-freebsd*</a>
<li><a href="#h8300-hms">h8300-hms</a>
<li><a href="#hppa*-hp-hpux*">hppa*-hp-hpux*</a>
<li><a href="#hppa*-hp-hpux9">hppa*-hp-hpux9</a>
<li><a href="#hppa*-hp-hpux10">hppa*-hp-hpux10</a>
<li><a href="#hppa*-hp-hpux11">hppa*-hp-hpux11</a>
<li><a href="#i370-*-*">i370-*-*</a>
<li><a href="#*-*-linux-gnu">*-*-linux-gnu</a>
<li><a href="#ix86-*-linux*aout">i?86-*-linux*aout</a>
<li><a href="#ix86-*-linux*">i?86-*-linux*</a>
<li><a href="#ix86-*-sco">i?86-*-sco</a>
<li><a href="#ix86-*-sco3.2v4">i?86-*-sco3.2v4</a>
<li><a href="#ix86-*-sco3.2v5*">i?86-*-sco3.2v5*</a>
<li><a href="#ix86-*-udk">i?86-*-udk</a>
<li><a href="#ix86-*-esix">i?86-*-esix</a>
<li><a href="#ia64-*-linux">ia64-*-linux</a>
<li><a href="#ia64-*-hpux*">ia64-*-hpux*</a>
<li><a href="#*-lynx-lynxos">*-lynx-lynxos</a>
<li><a href="#*-ibm-aix*">*-ibm-aix*</a>
<li><a href="#ip2k-*-elf">ip2k-*-elf</a>
<li><a href="#m32r-*-elf">m32r-*-elf</a>
<li><a href="#m68000-hp-bsd">m68000-hp-bsd</a>
<li><a href="#m6811-elf">m6811-elf</a>
<li><a href="#m6812-elf">m6812-elf</a>
<li><a href="#m68k-att-sysv">m68k-att-sysv</a>
<li><a href="#m68k-crds-unos">m68k-crds-unos</a>
<li><a href="#m68k-hp-hpux">m68k-hp-hpux</a>
<li><a href="#m68k-ncr-*">m68k-ncr-*</a>
<li><a href="#m68k-sun">m68k-sun</a>
<li><a href="#m68k-sun-sunos4.1.1">m68k-sun-sunos4.1.1</a>
<li><a href="#mips-*-*">mips-*-*</a>
<li><a href="#mips-sgi-irix5">mips-sgi-irix5</a>
<li><a href="#mips-sgi-irix6">mips-sgi-irix6</a>
<li><a href="#powerpc*-*-*">powerpc*-*-*</a> powerpc-*-sysv4
<li><a href="#powerpc-*-darwin*">powerpc-*-darwin*</a>
<li><a href="#powerpc-*-elf">powerpc-*-elf</a> powerpc-*-sysv4
<li><a href="#powerpc-*-linux-gnu*">powerpc-*-linux-gnu*</a>
<li><a href="#powerpc-*-netbsd*">powerpc-*-netbsd*</a>
<li><a href="#powerpc-*-eabiaix">powerpc-*-eabiaix</a>
<li><a href="#powerpc-*-eabisim">powerpc-*-eabisim</a>
<li><a href="#powerpc-*-eabi">powerpc-*-eabi</a>
<li><a href="#powerpcle-*-elf">powerpcle-*-elf</a> powerpcle-*-sysv4
<li><a href="#powerpcle-*-eabisim">powerpcle-*-eabisim</a>
<li><a href="#powerpcle-*-eabi">powerpcle-*-eabi</a>
<li><a href="#s390-*-linux*">s390-*-linux*</a>
<li><a href="#s390x-*-linux*">s390x-*-linux*</a>
<li><a href="#*-*-solaris2*">*-*-solaris2*</a>
<li><a href="#sparc-sun-solaris2*">sparc-sun-solaris2*</a>
<li><a href="#sparc-sun-solaris2.7">sparc-sun-solaris2.7</a>
<li><a href="#sparc-sun-sunos4*">sparc-sun-sunos4*</a>
<li><a href="#sparc-unknown-linux-gnulibc1">sparc-unknown-linux-gnulibc1</a>
<li><a href="#sparc-*-linux*">sparc-*-linux*</a>
<li><a href="#sparc64-*-solaris2*">sparc64-*-solaris2*</a>
<li><a href="#sparcv9-*-solaris2*">sparcv9-*-solaris2*</a>
<li><a href="#*-*-sysv*">*-*-sysv*</a>
<li><a href="#vax-dec-ultrix">vax-dec-ultrix</a>
<li><a href="#x86_64-*-*">x86_64-*-*</a> amd64-*-*
<li><a href="#xtensa-*-elf">xtensa-*-elf</a>
<li><a href="#xtensa-*-linux*">xtensa-*-linux*</a>
<li><a href="#windows">Microsoft Windows</a>
<li><a href="#os2">OS/2</a>
<li><a href="#older">Older systems</a>
</ul>
<ul>
<li><a href="#elf_targets">all ELF targets</a> (SVR4, Solaris 2, etc.)
</ul>
<!- ------- host/target specific issues start here --------------- ->
<hr />
<h3 class="heading"><a name="TOC0"></a><a name="alpha*-*-*"></a>alpha*-*-*</h3>
<p>This section contains general configuration information for all
alpha-based platforms using ELF (in particular, ignore this section for
DEC OSF/1, Digital UNIX and Tru64 UNIX). In addition to reading this
section, please read all other sections that match your target.
<p>We require binutils 2.11.2 or newer.
Previous binutils releases had a number of problems with DWARF 2
debugging information, not the least of which is incorrect linking of
shared libraries.
<hr />
<h3 class="heading"><a name="TOC1"></a><a name="alpha*-dec-osf*"></a>alpha*-dec-osf*</h3>
<p>Systems using processors that implement the DEC Alpha architecture and
are running the DEC/Compaq Unix (DEC OSF/1, Digital UNIX, or Compaq
Tru64 UNIX) operating system, for example the DEC Alpha AXP systems.
<p>As of GCC 3.2, versions before <code>alpha*-dec-osf4</code> are no longer
supported. (These are the versions which identify themselves as DEC
OSF/1.)
<p>In Digital Unix V4.0, virtual memory exhausted bootstrap failures
may be fixed by configuring with <code>--with-gc=simple</code>,
reconfiguring Kernel Virtual Memory and Swap parameters
per the <code>/usr/sbin/sys_check</code> Tuning Suggestions,
or applying the patch in
<a href="http://gcc.gnu.org/ml/gcc/2002-08/msg00822.html">http://gcc.gnu.org/ml/gcc/2002-08/msg00822.html</a>.
<p>In Tru64 UNIX V5.1, Compaq introduced a new assembler that does not
currently (2001-06-13) work with <code>mips-tfile</code>. As a workaround,
we need to use the old assembler, invoked via the barely documented
<code>-oldas</code> option. To bootstrap GCC, you either need to use the
Compaq C Compiler:
<pre class="example"> % CC=cc <var>srcdir</var>/configure [<var>options</var>] [<var>target</var>]
</pre>
<p>or you can use a copy of GCC 2.95.3 or higher built on Tru64 UNIX V4.0:
<pre class="example"> % CC=gcc -Wa,-oldas <var>srcdir</var>/configure [<var>options</var>] [<var>target</var>]
</pre>
<p>As of GNU binutils 2.11.2, neither GNU <code>as</code> nor GNU <code>ld</code>
are supported on Tru64 UNIX, so you must not configure GCC with
<code>--with-gnu-as</code> or <code>--with-gnu-ld</code>.
<p>The <code>--enable-threads</code> options isn't supported yet. A patch is
in preparation for a future release.
<p>GCC writes a <code>.verstamp</code> directive to the assembler output file
unless it is built as a cross-compiler. It gets the version to use from
the system header file <code>/usr/include/stamp.h</code>. If you install a
new version of DEC Unix, you should rebuild GCC to pick up the new version
stamp.
<p>Note that since the Alpha is a 64-bit architecture, cross-compilers from
32-bit machines will not generate code as efficient as that generated
when the compiler is running on a 64-bit machine because many
optimizations that depend on being able to represent a word on the
target in an integral value on the host cannot be performed. Building
cross-compilers on the Alpha for 32-bit machines has only been tested in
a few cases and may not work properly.
<p><code>make compare</code> may fail on old versions of DEC Unix unless you add
<code>-save-temps</code> to <code>CFLAGS</code>. On these systems, the name of the
assembler input file is stored in the object file, and that makes
comparison fail if it differs between the <code>stage1</code> and
<code>stage2</code> compilations. The option <code>-save-temps</code> forces a
fixed name to be used for the assembler input file, instead of a
randomly chosen name in <code>/tmp</code>. Do not add <code>-save-temps</code>
unless the comparisons fail without that option. If you add
<code>-save-temps</code>, you will have to manually delete the <code>.i</code> and
<code>.s</code> files after each series of compilations.
<p>GCC now supports both the native (ECOFF) debugging format used by DBX
and GDB and an encapsulated STABS format for use only with GDB. See the
discussion of the <code>--with-stabs</code> option of <code>configure</code> above
for more information on these formats and how to select them.
<p>There is a bug in DEC's assembler that produces incorrect line numbers
for ECOFF format when the <code>.align</code> directive is used. To work
around this problem, GCC will not emit such alignment directives
while writing ECOFF format debugging information even if optimization is
being performed. Unfortunately, this has the very undesirable
side-effect that code addresses when <code>-O</code> is specified are
different depending on whether or not <code>-g</code> is also specified.
<p>To avoid this behavior, specify <code>-gstabs+</code> and use GDB instead of
DBX. DEC is now aware of this problem with the assembler and hopes to
provide a fix shortly.
<hr />
<h3 class="heading"><a name="TOC2"></a><a name="alphaev5-cray-unicosmk*"></a>alphaev5-cray-unicosmk*</h3>
<p>Cray T3E systems running Unicos/Mk.
<p>This port is incomplete and has many known bugs. We hope to improve the
support for this target soon. Currently, only the C front end is supported,
and it is not possible to build parallel applications. Cray modules are not
supported; in particular, Craylibs are assumed to be in
<code>/opt/ctl/craylibs/craylibs</code>.
<p>You absolutely <strong>must</strong> use GNU make on this platform. Also, you
need to tell GCC where to find the assembler and the linker. The
simplest way to do so is by providing <code>--with-as</code> and
<code>--with-ld</code> to <code>configure</code>, e.g.
<pre class="example"> configure --with-as=/opt/ctl/bin/cam --with-ld=/opt/ctl/bin/cld \
--enable-languages=c
</pre>
<p>The comparison test during <code>make bootstrap</code> fails on Unicos/Mk
because the assembler inserts timestamps into object files. You should
be able to work around this by doing <code>make all</code> after getting this
failure.
<hr />
<h3 class="heading"><a name="TOC3"></a><a name="arc-*-elf"></a>arc-*-elf</h3>
<p>Argonaut ARC processor.
This configuration is intended for embedded systems.
<hr />
<h3 class="heading"><a name="TOC4"></a><a name="arm-*-aout"></a>arm-*-aout</h3>
<p>This configuration is obsoleted in GCC 3.3.
<p>Advanced RISC Machines ARM-family processors. These are often used in
embedded applications. There are no standard Unix configurations.
This configuration corresponds to the basic instruction sequences and will
produce <code>a.out</code> format object modules.
<p>You may need to make a variant of the file <code>arm.h</code> for your particular
configuration.
<hr />
<h3 class="heading"><a name="TOC5"></a><a name="arm-*-elf"></a>arm-*-elf</h3>
<p>This configuration is intended for embedded systems.
<hr />
<h3 class="heading"><a name="TOC6"></a><a name="arm*-*-linux-gnu"></a>arm*-*-linux-gnu</h3>
<p>We require GNU binutils 2.10 or newer.
<hr />
<h3 class="heading"><a name="TOC7"></a><a name="avr"></a>avr</h3>
<p>ATMEL AVR-family micro controllers. These are used in embedded
applications. There are no standard Unix configurations.
See "AVR Options" in the main manual
for the list of supported MCU types.
<p>Use <code>configure --target=avr --enable-languages="c"</code> to configure GCC.
<p>Further installation notes and other useful information about AVR tools
can also be obtained from:
<ul>
<li><a href="http://www.openavr.org">http://www.openavr.org</a>
<li><a href="http://home.overta.ru/users/denisc/">http://home.overta.ru/users/denisc/</a>
<li><a href="http://www.amelek.gda.pl/avr/">http://www.amelek.gda.pl/avr/</a>
</ul>
<p>We <em>strongly</em> recommend using binutils 2.13 or newer.
<p>The following error:
<pre class="example"> Error: register required
</pre>
<p>indicates that you should upgrade to a newer version of the binutils.
<hr />
<h3 class="heading"><a name="TOC8"></a><a name="c4x"></a>c4x</h3>
<p>Texas Instruments TMS320C3x and TMS320C4x Floating Point Digital Signal
Processors. These are used in embedded applications. There are no
standard Unix configurations.
See "TMS320C3x/C4x Options" in the main manual
for the list of supported MCU types.
<p>GCC can be configured as a cross compiler for both the C3x and C4x
architectures on the same system. Use <code>configure --target=c4x
--enable-languages="c,c++"</code> to configure.
<p>Further installation notes and other useful information about C4x tools
can also be obtained from:
<ul>
<li><a href="http://www.elec.canterbury.ac.nz/c4x/">http://www.elec.canterbury.ac.nz/c4x/</a>
</ul>
<hr />
<h3 class="heading"><a name="TOC9"></a><a name="cris"></a>CRIS</h3>
<p>CRIS is the CPU architecture in Axis Communications ETRAX system-on-a-chip
series. These are used in embedded applications.
<p>See "CRIS Options" in the main manual
for a list of CRIS-specific options.
<p>There are a few different CRIS targets:
<dl>
<dt><code>cris-axis-aout</code>
<dd>Old target. Includes a multilib for the <code>elinux</code> a.out-based
target. No multilibs for newer architecture variants.
<br><dt><code>cris-axis-elf</code>
<dd>Mainly for monolithic embedded systems. Includes a multilib for the
<code>v10</code> core used in <code>ETRAX 100 LX</code>.
<br><dt><code>cris-axis-linux-gnu</code>
<dd>A GNU/Linux port for the CRIS architecture, currently targeting
<code>ETRAX 100 LX</code> by default.
</dl>
<p>For <code>cris-axis-aout</code> and <code>cris-axis-elf</code> you need binutils 2.11
or newer. For <code>cris-axis-linux-gnu</code> you need binutils 2.12 or newer.
<p>Pre-packaged tools can be obtained from
<a href="ftp://ftp.axis.com/pub/axis/tools/cris/compiler-kit/">ftp://ftp.axis.com/pub/axis/tools/cris/compiler-kit/</a>. More
information about this platform is available at
<a href="http://developer.axis.com/">http://developer.axis.com/</a>.
<hr />
<h3 class="heading"><a name="TOC10"></a><a name="dos"></a>DOS</h3>
<p>Please have a look at our <a href="binaries.html">binaries page</a>.
<p>You cannot install GCC by itself on MSDOS; it will not compile under
any MSDOS compiler except itself. You need to get the complete
compilation package DJGPP, which includes binaries as well as sources,
and includes all the necessary compilation tools and libraries.
<hr />
<h3 class="heading"><a name="TOC11"></a><a name="dsp16xx"></a>dsp16xx</h3>
<p>A port to the AT&T DSP1610 family of processors.
<hr />
<h3 class="heading"><a name="TOC12"></a><a name="*-*-freebsd*"></a>*-*-freebsd*</h3>
<p>The version of binutils installed in <code>/usr/bin</code> is known to work unless
otherwise specified in any per-architecture notes. However, binutils
2.12.1 or greater is known to improve overall testsuite results.
<p>Support for FreeBSD 1 was discontinued in GCC 3.2.
<p>For FreeBSD 2 or any mutant a.out versions of FreeBSD 3: All
configuration support and files as shipped with GCC 2.95 are still in
place. FreeBSD 2.2.7 has been known to bootstrap completely; however,
it is unknown which version of binutils was used (it is assumed that it
was the system copy in <code>/usr/bin</code>) and C++ EH failures were noted.
<p>For FreeBSD using the ELF file format: DWARF 2 debugging is now the
default for all CPU architectures. It had been the default on
FreeBSD/alpha since its inception. You may use <code>-gstabs</code> instead
of <code>-g</code>, if you really want the old debugging format. There are
no known issues with mixing object files and libraries with different
debugging formats. Otherwise, this release of GCC should now match more
of the configuration used in the stock FreeBSD configuration of GCC. In
particular, <code>--enable-threads</code> is now configured by default.
However, as a general user, do not attempt to replace the system
compiler with this release. Known to bootstrap and check with good
results on FreeBSD 4.8-STABLE and 5-CURRENT. In the past, known to
bootstrap and check with good results on FreeBSD 3.0, 3.4, 4.0, 4.2,
4.3, 4.4, 4.5-STABLE.
<p>In principle, <code>--enable-threads</code> is now compatible with
<code>--enable-libgcj</code> on FreeBSD. However, it has only been built
and tested on <code>i386-*-freebsd[45]</code> and <code>alpha-*-freebsd[45]</code>.
The static
library may be incorrectly built (symbols are missing at link time).
There is a rare timing-based startup hang (probably involves an
assumption about the thread library). Multi-threaded boehm-gc (required for
libjava) exposes severe threaded signal-handling bugs on FreeBSD before
4.5-RELEASE. Other CPU architectures
supported by FreeBSD will require additional configuration tuning in, at
the very least, both boehm-gc and libffi.
<p>Shared <code>libgcc_s.so</code> is now built and installed by default.
<hr />
<h3 class="heading"><a name="TOC13"></a><a name="h8300-hms"></a>h8300-hms</h3>
<p>Renesas H8/300 series of processors.
<p>Please have a look at our <a href="binaries.html">binaries page</a>.
<p>The calling convention and structure layout has changed in release 2.6.
All code must be recompiled. The calling convention now passes the
first three arguments in function calls in registers. Structures are no
longer a multiple of 2 bytes.
<hr />
<h3 class="heading"><a name="TOC14"></a><a name="hppa*-hp-hpux*"></a>hppa*-hp-hpux*</h3>
<p>Support for HP-UX versions 7, 8, and 9 is obsoleted in GCC 3.3.
<p>We <em>highly</em> recommend using gas/binutils 2.8 or newer on all hppa
platforms; you may encounter a variety of problems when using the HP
assembler.
<p>Specifically, <code>-g</code> does not work on HP-UX (since that system
uses a peculiar debugging format which GCC does not know about), unless you
use GAS and GDB and configure GCC with the
<a href="./configure.html#with-gnu-as"><code>--with-gnu-as</code></a> and
<code>--with-as=...</code> options.
<p>If you wish to use the pa-risc 2.0 architecture support with a 32-bit
runtime, you must use either the HP assembler, gas/binutils 2.11 or newer,
or a recent
<a href="ftp://sources.redhat.com/pub/binutils/snapshots">snapshot of gas</a>.
<p>There are two default scheduling models for instructions. These are
PROCESSOR_7100LC and PROCESSOR_8000. They are selected from the pa-risc
architecture specified for the target machine when configuring.
PROCESSOR_8000 is the default. PROCESSOR_7100LC is selected when
the target is a <code>hppa1*</code> machine.
<p>The PROCESSOR_8000 model is not well suited to older processors. Thus,
it is important to completely specify the machine architecture when
configuring if you want a model other than PROCESSOR_8000. The macro
TARGET_SCHED_DEFAULT can be defined in BOOT_CFLAGS if a different
default scheduling model is desired.
<p>More specific information to <code>hppa*-hp-hpux*</code> targets follows.
<hr />
<h3 class="heading"><a name="TOC15"></a><a name="hppa*-hp-hpux9"></a>hppa*-hp-hpux9</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>The HP assembler has major problems on this platform. We've tried to work
around the worst of the problems. However, those workarounds may be causing
linker crashes in some circumstances; the workarounds also probably prevent
shared libraries from working. Use the GNU assembler to avoid these problems.
<p>The configuration scripts for GCC will also trigger a bug in the hpux9
shell. To avoid this problem set <code>CONFIG_SHELL</code> to <code>/bin/ksh</code>
and <code>SHELL</code> to <code>/bin/ksh</code> in your environment.
<hr />
<h3 class="heading"><a name="TOC16"></a><a name="hppa*-hp-hpux10"></a>hppa*-hp-hpux10</h3>
<p>For hpux10.20, we <em>highly</em> recommend you pick up the latest sed patch
<code>PHCO_19798</code> from HP. HP has two sites which provide patches free of
charge:
<ul>
<li><a href="http://us.itrc.hp.com/service/home/home.do">US, Canada, Asia-Pacific, and
Latin-America</a>
<li><a href="http://europe.itrc.hp.com/service/home/home.do">http://europe.itrc.hp.com/service/home/home.do</a> Europe.
</ul>
<p>The HP assembler on these systems is much better than the hpux9 assembler,
but still has some problems. Most notably the assembler inserts timestamps
into each object file it creates, causing the 3-stage comparison test to fail
during a <code>make bootstrap</code>. You should be able to continue by
saying <code>make all</code> after getting the failure from <code>make
bootstrap</code>.
<hr />
<h3 class="heading"><a name="TOC17"></a><a name="hppa*-hp-hpux11"></a>hppa*-hp-hpux11</h3>
<p>GCC 3.0 and up support HP-UX 11. On 64-bit capable systems, there
are two distinct ports. The <code>hppa2.0w-hp-hpux11*</code> port generates
code for the 32-bit pa-risc runtime architecture. It uses the HP
linker. The <code>hppa64-hp-hpux11*</code> port generates 64-bit code for the
pa-risc 2.0 architecture. The script config.guess now selects the port
type based on the type compiler detected during configuration. You must
set your <code>PATH</code> or define <code>CC</code> so that configure finds an appropriate
compiler for the initial bootstrap. Different prefixes must be used if
both ports are to be installed on the same system.
<p>It is best to explicitly configure the <code>hppa64-hp-hpux11*</code> target
with the <code>--with-ld=...</code> option. We support both the HP
and GNU linkers for this target. The two linkers require different
link commands. Thus, it's not possible to switch linkers during a
GCC build. This has been been reported to occur in a unified build
of binutils and GCC.
<p>GCC 2.95.x is not supported under HP-UX 11 and cannot be used to
compile GCC 3.0 and up. Refer to <a href="binaries.html">binaries</a> for
information about obtaining precompiled GCC binaries for HP-UX.
<p>You must use GNU binutils 2.11 or above with the 32-bit port. Thread
support is not currently implemented, so <code>--enable-threads</code> does
not work. See:
<ul>
<li><a href="http://gcc.gnu.org/ml/gcc-prs/2002-01/msg00551.html">http://gcc.gnu.org/ml/gcc-prs/2002-01/msg00551.html</a>
<li><a href="http://gcc.gnu.org/ml/gcc-bugs/2002-01/msg00663.html">http://gcc.gnu.org/ml/gcc-bugs/2002-01/msg00663.html</a>
</ul>
<p>GCC 3.3 and later support weak symbols on the 32-bit port using SOM
secondary definition symbols. This feature is not enabled for earlier
versions of HP-UX since there have been bugs in the linker support for
secondary symbols. The HP linker patches <code>PHSS_26559</code> and
<code>PHSS_24304</code> for HP-UX 11.00 and 11.11, respectively, correct the
problem of linker core dumps creating C++ libraries. Earlier patches
may work but they have not been tested.
<p>GCC 3.3 nows uses the ELF DT_INIT_ARRAY and DT_FINI_ARRAY capability
to run initializers and finalizers on the 64-bit port. The feature
requires CVS binutils as of January 2, 2003, or a subsequent release
to correct a problem arising from HP's non-standard use of the .init
and .fini sections. The 32-bit port uses the linker <code>+init</code>
and <code>+fini</code> options. As with the support for secondary symbols,
there have been bugs in the order in which these options are executed
by the HP linker. So, again a recent linker patch is recommended.
<p>The HP assembler has many limitations and is not recommended for either
the 32 or 64-bit ports. For example, it does not support weak symbols
or alias definitions. As a result, explicit template instantiations
are required when using C++. This will make it difficult if not
impossible to build many C++ applications. You also can't generate
debugging information when using the HP assembler with GCC.
<p>There are a number of issues to consider in selecting which linker to
use with the 64-bit port. The GNU 64-bit linker can only create dynamic
binaries. The <code>-static</code> option causes linking with archive
libraries but doesn't produce a truly static binary. Dynamic binaries
still require final binding by the dynamic loader to resolve a set of
dynamic-loader-defined symbols. The default behavior of the HP linker
is the same as the GNU linker. However, it can generate true 64-bit
static binaries using the <code>+compat</code> option.
<p>The HP 64-bit linker doesn't support linkonce semantics. As a
result, C++ programs have many more sections than they should.
<p>The GNU 64-bit linker has some issues with shared library support
and exceptions. As a result, we only support libgcc in archive
format. For similar reasons, dwarf2 unwind and exception support
are disabled. The GNU linker also has problems creating binaries
with <code>-static</code>. It doesn't provide stubs for internal
calls to global functions in shared libraries, so these calls
can't be overloaded.
<p>There are several possible approaches to building the distribution.
Binutils can be built first using the HP tools. Then, the GCC
distribution can be built. The second approach is to build GCC
first using the HP tools, then build binutils, then rebuild GCC.
There have been problems with various binary distributions, so
it is best not to start from a binary distribution.
<p>When starting with a HP compiler, it is preferable to use the ANSI
compiler as the bundled compiler only supports traditional C.
Bootstrapping with the bundled compiler is tested infrequently and
problems often arise because of the subtle differences in semantics
between traditional and ISO C.
<p>This port still is undergoing significant development.
<hr />
<h3 class="heading"><a name="TOC18"></a><a name="i370-*-*"></a>i370-*-*</h3>
<p>This port is very preliminary and has many known bugs. We hope to
have a higher-quality port for this machine soon.
<hr />
<h3 class="heading"><a name="TOC19"></a><a name="*-*-linux-gnu"></a>*-*-linux-gnu</h3>
<p>Versions of libstdc++-v3 starting with 3.2.1 require bugfixes present
in glibc 2.2.5 and later. More information is available in the
libstdc++-v3 documentation.
<p>If you use glibc 2.2 (or 2.1.9x), GCC 2.95.2 won't install
out-of-the-box. You'll get compile errors while building <code>libstdc++</code>.
The patch <a href="glibc-2.2.patch">glibc-2.2.patch</a>, that is to be
applied in the GCC source tree, fixes the compatibility problems.
<p>Currently Glibc 2.2.3 (and older releases) and GCC 3.0 are out of sync
since the latest exception handling changes for GCC. Compiling glibc
with GCC 3.0 will give a binary incompatible glibc and therefore cause
lots of problems and might make your system completely unusable. This
will definitely need fixes in glibc but might also need fixes in GCC. We
strongly advise to wait for glibc 2.2.4 and to read the release notes of
glibc 2.2.4 whether patches for GCC 3.0 are needed. You can use glibc
2.2.3 with GCC 3.0, just do not try to recompile it.
<hr />
<h3 class="heading"><a name="TOC20"></a><a name="ix86-*-linux*aout"></a>i?86-*-linux*aout</h3>
<p>Use this configuration to generate <code>a.out</code> binaries on Linux-based
GNU systems. This configuration is being superseded. You must use
gas/binutils version 2.5.2 or later.
<hr />
<h3 class="heading"><a name="TOC21"></a><a name="ix86-*-linux*"></a>i?86-*-linux*</h3>
<p>As of GCC 3.3, binutils 2.13.1 or later is required for this platform.
See <a href="http://gcc.gnu.org/PR10877">bug 10877</a> for more information.
<p>If you receive Signal 11 errors when building on GNU/Linux, then it is
possible you have a hardware problem. Further information on this can be
found on <a href="http://www.bitwizard.nl/sig11/">www.bitwizard.nl</a>.
<hr />
<h3 class="heading"><a name="TOC22"></a><a name="ix86-*-sco"></a>i?86-*-sco</h3>
<p>Compilation with RCC is recommended. Also, it may be a good idea to
link with GNU malloc instead of the malloc that comes with the system.
<hr />
<h3 class="heading"><a name="TOC23"></a><a name="ix86-*-sco3.2v5*"></a>i?86-*-sco3.2v5*</h3>
<p>Use this for the SCO OpenServer Release 5 family of operating systems.
<p>Unlike earlier versions of GCC, the ability to generate COFF with this
target is no longer provided.
<p>Earlier versions of GCC emitted DWARF 1 when generating ELF to allow
the system debugger to be used. That support was too burdensome to
maintain. GCC now emits only DWARF 2 for this target. This means you
may use either the UDK debugger or GDB to debug programs built by this
version of GCC.
<p>GCC is now only supported on releases 5.0.4 and later, and requires that
you install Support Level Supplement OSS646B or later, and the latest
version of the Supplement Graphics, Web and X11 Libraries (GWXLIBS)
package. If you are using release 5.0.7 of OpenServer, you must have at
least the first maintenance pack installed (this includes the relevant
portions of OSS646 and GWXLIBS). OSS646, also known as the "Execution
Environment Update", provides updated link editors and assemblers, as well
as updated standard C and math libraries. The C startup modules are also
updated to support the System V gABI draft, and GCC relies on that
behavior. GWXLIBS provides a collection of commonly used open source
libraries, some of which GCC depends on (such as GNU gettext and zlib).
SCO OpenServer Release 5.0.7 has all of this built in by default, but
GWXLIBS is significantly updated in Maintenance Pack 1. Please visit
<a href="ftp://ftp.sco.com/pub/openserver5">ftp://ftp.sco.com/pub/openserver5</a>
and
<a href="ftp://ftp.sco.com/pub/openserver5/opensrc">ftp://ftp.sco.com/pub/openserver5/opensrc</a>
for the latest versions of these (and other potentially useful) supplements.
<p>Although there is support for using the native assembler, it is recommended
that you configure GCC to use the GNU assembler. You do this by using the
flags <a href="./configure.html#with-gnu-as"><code>--with-gnu-as</code></a>. You
should use a modern version of GNU binutils. Version 2.14 was used for all
testing. In general, only the <code>--with-gnu-as</code> option is tested. A
modern bintuils (as well as a plethora of other development related GNU
utilities) can be found in the GNU Development Tools package. See the
SCO web and ftp sites for details. That package also contains the
currently "officially supported" version of GCC, version 2.95.3. It is
useful for bootstrapping this version.
<hr />
<h3 class="heading"><a name="TOC24"></a><a name="ix86-*-udk"></a>i?86-*-udk</h3>
<p>This target emulates the SCO Universal Development Kit and requires that
package be installed. (If it is installed, you will have a
<code>/udk/usr/ccs/bin/cc</code> file present.) It's very much like the
<code>i?86-*-unixware7*</code> target
but is meant to be used when hosting on a system where UDK isn't the
default compiler such as OpenServer 5 or Unixware 2. This target will
generate binaries that will run on OpenServer, Unixware 2, or Unixware 7,
with the same warnings and caveats as the SCO UDK.
<p>This target is a little tricky to build because we have to distinguish
it from the native tools (so it gets headers, startups, and libraries
from the right place) while making the tools not think we're actually
building a cross compiler. The easiest way to do this is with a configure
command like this:
<pre class="example"> CC=/udk/usr/ccs/bin/cc <var>/your/path/to</var>/gcc/configure \
--host=i686-pc-udk --target=i686-pc-udk --program-prefix=udk-
</pre>
<p><em>You should substitute </em><code>i686</code><em> in the above command with the appropriate
processor for your host.</em>
<p>After the usual <code>make bootstrap</code> and
<code>make install</code>, you can then access the UDK-targeted GCC
tools by adding <code>udk-</code> before the commonly known name. For
example, to invoke the C compiler, you would use <code>udk-gcc</code>.
They will coexist peacefully with any native-target GCC tools you may
have installed.
<hr />
<h3 class="heading"><a name="TOC25"></a><a name="ia64-*-linux"></a>ia64-*-linux</h3>
<p>IA-64 processor (also known as IPF, or Itanium Processor Family)
running GNU/Linux.
<p>The toolchain is not completely finished, so requirements will continue
to change.
GCC 3.0.1 and later require glibc 2.2.4.
GCC 3.0.2 requires binutils from 2001-09-05 or later.
GCC 3.0.1 requires binutils 2.11.1 or later.
<p>None of the following versions of GCC has an ABI that is compatible
with any of the other versions in this list, with the exception that
Red Hat 2.96 and Trillian 000171 are compatible with each other:
3.0.2, 3.0.1, 3.0, Red Hat 2.96, and Trillian 000717.
This primarily affects C++ programs and programs that create shared libraries.
Because of these ABI incompatibilities, GCC 3.0.2 is not recommended for
user programs on GNU/Linux systems built using earlier compiler releases.
GCC 3.0.2 is recommended for compiling linux, the kernel.
GCC 3.0.2 is believed to be fully ABI compliant, and hence no more major
ABI changes are expected.
<hr />
<h3 class="heading"><a name="TOC26"></a><a name="ia64-*-hpux*"></a>ia64-*-hpux*</h3>
<p>Building GCC on this target requires the GNU Assembler. The bundled HP
assembler will not work. To prevent GCC from using the wrong assembler,
the option <code>--with-gnu-as</code> may be necessary.
<p>The GCC libunwind library has not been ported to HPUX. This means that for
GCC versions 3.2.3 and earlier, <code>--enable-libunwind-exceptions</code>
is required to build GCC. For GCC 3.3 and later, this is the default.
<hr />
<h3 class="heading"><a name="TOC27"></a><a name="*-lynx-lynxos"></a>*-lynx-lynxos</h3>
<p>Support for SPARC LynxOS is obsoleted in GCC 3.3.
<p>LynxOS 2.2 and earlier comes with GCC 1.x already installed as
<code>/bin/gcc</code>. You should compile with this instead of <code>/bin/cc</code>.
You can tell GCC to use the GNU assembler and linker, by specifying
<code>--with-gnu-as --with-gnu-ld</code> when configuring. These will produce
COFF format object files and executables; otherwise GCC will use the
installed tools, which produce <code>a.out</code> format executables.
<hr />
<!- rs6000-ibm-aix*, powerpc-ibm-aix* ->
<h3 class="heading"><a name="TOC28"></a><a name="*-ibm-aix*"></a>*-ibm-aix*</h3>
<p>Support for AIX versions 1, 2, and 3 is obsoleted in GCC 3.3.
<p>AIX Make frequently has problems with GCC makefiles. GNU Make 3.76 or
newer is recommended to build on this platform.
<p>Errors involving <code>alloca</code> when building GCC generally are due
to an incorrect definition of <code>CC</code> in the Makefile or mixing files
compiled with the native C compiler and GCC. During the stage1 phase of
the build, the native AIX compiler <strong>must</strong> be invoked as <code>cc</code>
(not <code>xlc</code>). Once <code>configure</code> has been informed of
<code>xlc</code>, one needs to use <code>make distclean</code> to remove the
configure cache files and ensure that <code>CC</code> environment variable
does not provide a definition that will confuse <code>configure</code>.
If this error occurs during stage2 or later, then the problem most likely
is the version of Make (see above).
<p>The native <code>as</code> and <code>ld</code> are recommended for bootstrapping
on AIX 4 and required for bootstrapping on AIX 5L. The GNU Assembler
reports that it supports WEAK symbols on AIX 4, which causes GCC to try to
utilize weak symbol functionality although it is not supported. The GNU
Assembler and Linker do not support AIX 5L sufficiently to bootstrap GCC.
The native AIX tools do interoperate with GCC.
<p>Building <code>libstdc++.a</code> requires a fix for an AIX Assembler bug
APAR IY26685 (AIX 4.3) or APAR IY25528 (AIX 5.1).
<p><code>libstdc++</code> in GCC 3.2 increments the major version number of the
shared object and GCC installation places the <code>libstdc++.a</code>
shared library in a common location which will overwrite the GCC 3.1
version of the shared library. Applications either need to be
re-linked against the new shared library or the GCC 3.1 version of the
<code>libstdc++</code> shared object needs to be available to the AIX
runtime loader. The GCC 3.1 <code>libstdc++.so.4</code> shared object can
be installed for runtime dynamic loading using the following steps to
set the <code>F_LOADONLY</code> flag in the shared object for <em>each</em>
multilib <code>libstdc++.a</code> installed:
<p>Extract the shared object from each the GCC 3.1 <code>libstdc++.a</code>
archive:
<pre class="example"> % ar -x libstdc++.a libstdc++.so.4
</pre>
<p>Enable the <code>F_LOADONLY</code> flag so that the shared object will be
available for runtime dynamic loading, but not linking:
<pre class="example"> % strip -e libstdc++.so.4
</pre>
<p>Archive the runtime-only shared object in the GCC 3.2
<code>libstdc++.a</code> archive:
<pre class="example"> % ar -q libstdc++.a libstdc++.so.4
</pre>
<p>Linking executables and shared libraries may produce warnings of
duplicate symbols. The assembly files generated by GCC for AIX always
have included multiple symbol definitions for certain global variable
and function declarations in the original program. The warnings should
not prevent the linker from producing a correct library or runnable
executable.
<p>AIX 4.3 utilizes a "large format" archive to support both 32-bit and
64-bit object modules. The routines provided in AIX 4.3.0 and AIX 4.3.1
to parse archive libraries did not handle the new format correctly.
These routines are used by GCC and result in error messages during
linking such as "not a COFF file". The version of the routines shipped
with AIX 4.3.1 should work for a 32-bit environment. The <code>-g</code>
option of the archive command may be used to create archives of 32-bit
objects using the original "small format". A correct version of the
routines is shipped with AIX 4.3.2 and above.
<p>Some versions of the AIX binder (linker) can fail with a relocation
overflow severe error when the <code>-bbigtoc</code> option is used to link
GCC-produced object files into an executable that overflows the TOC. A fix
for APAR IX75823 (OVERFLOW DURING LINK WHEN USING GCC AND -BBIGTOC) is
available from IBM Customer Support and from its
<a href="http://techsupport.services.ibm.com/">techsupport.services.ibm.com</a>
website as PTF U455193.
<p>The AIX 4.3.2.1 linker (bos.rte.bind_cmds Level 4.3.2.1) will dump core
with a segmentation fault when invoked by any version of GCC. A fix for
APAR IX87327 is available from IBM Customer Support and from its
<a href="http://techsupport.services.ibm.com/">techsupport.services.ibm.com</a>
website as PTF U461879. This fix is incorporated in AIX 4.3.3 and above.
<p>The initial assembler shipped with AIX 4.3.0 generates incorrect object
files. A fix for APAR IX74254 (64BIT DISASSEMBLED OUTPUT FROM COMPILER FAILS
TO ASSEMBLE/BIND) is available from IBM Customer Support and from its
<a href="http://techsupport.services.ibm.com/">techsupport.services.ibm.com</a>
website as PTF U453956. This fix is incorporated in AIX 4.3.1 and above.
<p>AIX provides National Language Support (NLS). Compilers and assemblers
use NLS to support locale-specific representations of various data
formats including floating-point numbers (e.g., <code>.</code> vs <code>,</code> for
separating decimal fractions). There have been problems reported where
GCC does not produce the same floating-point formats that the assembler
expects. If one encounters this problem, set the <code>LANG</code>
environment variable to <code>C</code> or <code>En_US</code>.
<p>By default, GCC for AIX 4.1 and above produces code that can be used on
both Power or PowerPC processors.
<p>A default can be specified with the <code>-mcpu=</code><var>cpu_type</var><code></code>
switch and using the configure option <code>--with-cpu-</code><var>cpu_type</var><code></code>.
<hr />
<h3 class="heading"><a name="TOC29"></a><a name="ip2k-*-elf"></a>ip2k-*-elf</h3>
<p>Ubicom IP2022 micro controller.
This configuration is intended for embedded systems.
There are no standard Unix configurations.
<p>Use <code>configure --target=ip2k-elf --enable-languages=c</code> to configure GCC.
<hr />
<h3 class="heading"><a name="TOC30"></a><a name="m32r-*-elf"></a>m32r-*-elf</h3>
<p>Renesas M32R processor.
This configuration is intended for embedded systems.
<hr />
<h3 class="heading"><a name="TOC31"></a><a name="m68000-hp-bsd"></a>m68000-hp-bsd</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>HP 9000 series 200 running BSD. Note that the C compiler that comes
with this system cannot compile GCC; contact <a href="mailto:law@cygnus.com">law@cygnus.com</a>
to get binaries of GCC for bootstrapping.
<hr />
<h3 class="heading"><a name="TOC32"></a><a name="m6811-elf"></a>m6811-elf</h3>
<p>Motorola 68HC11 family micro controllers. These are used in embedded
applications. There are no standard Unix configurations.
<hr />
<h3 class="heading"><a name="TOC33"></a><a name="m6812-elf"></a>m6812-elf</h3>
<p>Motorola 68HC12 family micro controllers. These are used in embedded
applications. There are no standard Unix configurations.
<hr />
<h3 class="heading"><a name="TOC34"></a><a name="m68k-att-sysv"></a>m68k-att-sysv</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>AT&T 3b1, a.k.a. 7300 PC. This version of GCC cannot
be compiled with the system C compiler, which is too buggy.
You will need to get a previous version of GCC and use it to
bootstrap. Binaries are available from the OSU-CIS archive, at
<a href="ftp://ftp.uu.net/systems/att7300/">ftp://ftp.uu.net/systems/att7300/</a>.
<hr />
<h3 class="heading"><a name="TOC35"></a><a name="m68k-crds-unos"></a>m68k-crds-unos</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>Use <code>configure unos</code> for building on Unos.
<p>The Unos assembler is named <code>casm</code> instead of <code>as</code>. For some
strange reason linking <code>/bin/as</code> to <code>/bin/casm</code> changes the
behavior, and does not work. So, when installing GCC, you should
install the following script as <code>as</code> in the subdirectory where
the passes of GCC are installed:
<pre class="example"> #!/bin/sh
casm $*
</pre>
<p>The default Unos library is named <code>libunos.a</code> instead of
<code>libc.a</code>. To allow GCC to function, either change all
references to <code>-lc</code> in <code>gcc.c</code> to <code>-lunos</code> or link
<code>/lib/libc.a</code> to <code>/lib/libunos.a</code>.
<p>When compiling GCC with the standard compiler, to overcome bugs in
the support of <code>alloca</code>, do not use <code>-O</code> when making stage 2.
Then use the stage 2 compiler with <code>-O</code> to make the stage 3
compiler. This compiler will have the same characteristics as the usual
stage 2 compiler on other systems. Use it to make a stage 4 compiler
and compare that with stage 3 to verify proper compilation.
<p>(Perhaps simply defining <code>ALLOCA</code> in <code>x-crds</code> as described in
the comments there will make the above paragraph superfluous. Please
inform us of whether this works.)
<p>Unos uses memory segmentation instead of demand paging, so you will need
a lot of memory. 5 Mb is barely enough if no other tasks are running.
If linking <code>cc1</code> fails, try putting the object files into a library
and linking from that library.
<hr />
<h3 class="heading"><a name="TOC36"></a><a name="m68k-hp-hpux"></a>m68k-hp-hpux</h3>
<p>HP 9000 series 300 or 400 running HP-UX. HP-UX version 8.0 has a bug in
the assembler that prevents compilation of GCC. This
bug manifests itself during the first stage of compilation, while
building <code>libgcc2.a</code>:
<pre class="smallexample"> _floatdisf
cc1: warning: `-g' option not supported on this version of GCC
cc1: warning: `-g1' option not supported on this version of GCC
./xgcc: Internal compiler error: program as got fatal signal 11
</pre>
<p>A patched version of the assembler is available as the file
<a href="ftp://altdorf.ai.mit.edu/archive/cph/hpux-8.0-assembler">ftp://altdorf.ai.mit.edu/archive/cph/hpux-8.0-assembler</a>. If you
have HP software support, the patch can also be obtained directly from
HP, as described in the following note:
<blockquote>
This is the patched assembler, to patch SR#1653-010439, where the
assembler aborts on floating point constants.
<p>The bug is not really in the assembler, but in the shared library
version of the function "cvtnum(3c)". The bug on "cvtnum(3c)" is
SR#4701-078451. Anyway, the attached assembler uses the archive
library version of "cvtnum(3c)" and thus does not exhibit the bug.
</blockquote>
<p>This patch is also known as PHCO_4484.
<p>In addition, if you wish to use gas, you must use
gas version 2.1 or later, and you must use the GNU linker version 2.1 or
later. Earlier versions of gas relied upon a program which converted the
gas output into the native HP-UX format, but that program has not been
kept up to date. gdb does not understand that native HP-UX format, so
you must use gas if you wish to use gdb.
<p>On HP-UX version 8.05, but not on 8.07 or more recent versions, the
<code>fixproto</code> shell script triggers a bug in the system shell. If you
encounter this problem, upgrade your operating system or use BASH (the
GNU shell) to run <code>fixproto</code>. This bug will cause the fixproto
program to report an error of the form:
<pre class="example"> ./fixproto: sh internal 1K buffer overflow
</pre>
<p>To fix this, you can also change the first line of the fixproto script
to look like:
<pre class="example"> #!/bin/ksh
</pre>
<hr />
<h3 class="heading"><a name="TOC37"></a><a name="m68k-ncr-*"></a>m68k-ncr-*</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>On the Tower models 4<var>n</var>0 and 6<var>n</var>0, by default a process is not
allowed to have more than one megabyte of memory. GCC cannot compile
itself (or many other programs) with <code>-O</code> in that much memory.
<p>To solve this problem, reconfigure the kernel adding the following line
to the configuration file:
<pre class="smallexample"> MAXUMEM = 4096
</pre>
<hr />
<h3 class="heading"><a name="TOC38"></a><a name="m68k-sun"></a>m68k-sun</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>Sun 3. We do not provide a configuration file to use the Sun FPA by
default, because programs that establish signal handlers for floating
point traps inherently cannot work with the FPA.
<hr />
<h3 class="heading"><a name="TOC39"></a><a name="m68k-sun-sunos4.1.1"></a>m68k-sun-sunos4.1.1</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>It is reported that you may need the GNU assembler on this platform.
<hr />
<h3 class="heading"><a name="TOC40"></a><a name="mips-*-*"></a>mips-*-*</h3>
<p>If on a MIPS system you get an error message saying "does not have gp
sections for all it's [sic] sectons [sic]", don't worry about it. This
happens whenever you use GAS with the MIPS linker, but there is not
really anything wrong, and it is okay to use the output file. You can
stop such warnings by installing the GNU linker.
<p>It would be nice to extend GAS to produce the gp tables, but they are
optional, and there should not be a warning about their absence.
<p>The libstdc++ atomic locking routines for MIPS targets requires MIPS II
and later. A patch went in just after the GCC 3.3 release to
make <code>mips*-*-*</code> use the generic implementation instead. You can also
configure for <code>mipsel-elf</code> as a workaround. The
<code>mips*-*-linux*</code> target continues to use the MIPS II routines. More
work on this is expected in future releases.
<hr />
<h3 class="heading"><a name="TOC41"></a><a name="mips-sgi-irix5"></a>mips-sgi-irix5</h3>
<p>This configuration has considerable problems, which will be fixed in a
future release.
<p>In order to compile GCC on an SGI running IRIX 5, the "compiler_dev.hdr"
subsystem must be installed from the IDO CD-ROM supplied by Silicon
Graphics. It is also available for download from
<a href="http://www.sgi.com/developers/devtools/apis/ido.html">http://www.sgi.com/developers/devtools/apis/ido.html</a>.
<p><code>make compare</code> may fail on version 5 of IRIX unless you add
<code>-save-temps</code> to <code>CFLAGS</code>. On these systems, the name of the
assembler input file is stored in the object file, and that makes
comparison fail if it differs between the <code>stage1</code> and
<code>stage2</code> compilations. The option <code>-save-temps</code> forces a
fixed name to be used for the assembler input file, instead of a
randomly chosen name in <code>/tmp</code>. Do not add <code>-save-temps</code>
unless the comparisons fail without that option. If you do you
<code>-save-temps</code>, you will have to manually delete the <code>.i</code> and
<code>.s</code> files after each series of compilations.
<p>If you use the MIPS C compiler to bootstrap, it may be necessary
to increase its table size for switch statements with the
<code>-Wf,-XNg1500</code> option. If you use the <code>-O2</code>
optimization option, you also need to use <code>-Olimit 3000</code>.
<p>To enable debugging under IRIX 5, you must use GNU <code>as</code> 2.11.2
or later,
and use the <code>--with-gnu-as</code> configure option when configuring GCC.
GNU <code>as</code> is distributed as part of the binutils package.
When using release 2.11.2, you need to apply a patch
<a href="http://sources.redhat.com/ml/binutils/2001-07/msg00352.html">http://sources.redhat.com/ml/binutils/2001-07/msg00352.html</a>
which will be included in the next release of binutils.
<p>When building GCC, the build process loops rebuilding <code>cc1</code> over
and over again. This happens on <code>mips-sgi-irix5.2</code>, and possibly
other platforms. It has been reported that this is a known bug in the
<code>make</code> shipped with IRIX 5.2. We recommend you use GNU
<code>make</code> instead of the vendor supplied <code>make</code> program;
however, you may have success with <code>smake</code> on IRIX 5.2 if you do
not have GNU <code>make</code> available.
<hr />
<h3 class="heading"><a name="TOC42"></a><a name="mips-sgi-irix6"></a>mips-sgi-irix6</h3>
<p>If you are using IRIX <code>cc</code> as your bootstrap compiler, you must
ensure that the N32 ABI is in use. To test this, compile a simple C
file with <code>cc</code> and then run <code>file</code> on the
resulting object file. The output should look like:
<pre class="example"> test.o: ELF N32 MSB ...
</pre>
<p>If you see:
<pre class="example"> test.o: ELF 32-bit MSB ...
</pre>
<p>or
<pre class="example"> test.o: ELF 64-bit MSB ...
</pre>
<p>then your version of <code>cc</code> uses the O32 or N64 ABI by default. You
should set the environment variable <code>CC</code> to <code>cc -n32</code>
before configuring GCC.
<p>If you want the resulting <code>gcc</code> to run on old 32-bit systems
with the MIPS R4400 CPU, you need to ensure that only code for the mips3
instruction set architecture (ISA) is generated. While GCC 3.x does
this correctly, both GCC 2.95 and SGI's MIPSpro <code>cc</code> may change
the ISA depending on the machine where GCC is built. Using one of them
as the bootstrap compiler may result in mips4 code, which won't run at
all on mips3-only systems. For the test program above, you should see:
<pre class="example"> test.o: ELF N32 MSB mips-3 ...
</pre>
<p>If you get:
<pre class="example"> test.o: ELF N32 MSB mips-4 ...
</pre>
<p>instead, you should set the environment variable <code>CC</code> to <code>cc
-n32 -mips3</code> or <code>gcc -mips3</code> respectively before configuring GCC.
<p>GCC on IRIX 6 is usually built to support both the N32 and N64 ABIs. If
you build GCC on a system that doesn't have the N64 libraries installed,
you need to configure with <code>--disable-multilib</code> so GCC doesn't
try to use them. Look for <code>/usr/lib64/libc.so.1</code> to see if you
have the 64-bit libraries installed.
<p>You must <em>not</em> use GNU <code>as</code> (which isn't built anyway as of
binutils 2.11.2) on IRIX 6 platforms; doing so will only cause problems.
<p>GCC does not currently support generating O32 ABI binaries in the
<code>mips-sgi-irix6</code> configurations. It is possible to create a GCC
with O32 ABI only support by configuring it for the <code>mips-sgi-irix5</code>
target and using a patched GNU <code>as</code> 2.11.2 as documented in the
<a href="#mips-sgi-irix5"><code>mips-sgi-irix5</code></a> section above. Using the
native assembler requires patches to GCC which will be included in a
future release. It is
expected that O32 ABI support will be available again in a future release.
<p>The <code>--enable-threads</code> option doesn't currently work, a patch is
in preparation for a future release. The <code>--enable-libgcj</code>
option is disabled by default: IRIX 6 uses a very low default limit
(20480) for the command line length. Although libtool contains a
workaround for this problem, at least the N64 <code>libgcj</code> is known not
to build despite this, running into an internal error of the native
<code>ld</code>. A sure fix is to increase this limit (<code>ncargs</code>) to
its maximum of 262144 bytes. If you have root access, you can use the
<code>systune</code> command to do this.
<p>GCC does not correctly pass/return structures which are
smaller than 16 bytes and which are not 8 bytes. The problem is very
involved and difficult to fix. It affects a number of other targets also,
but IRIX 6 is affected the most, because it is a 64-bit target, and 4 byte
structures are common. The exact problem is that structures are being padded
at the wrong end, e.g. a 4 byte structure is loaded into the lower 4 bytes
of the register when it should be loaded into the upper 4 bytes of the
register.
<p>GCC is consistent with itself, but not consistent with the SGI C compiler
(and the SGI supplied runtime libraries), so the only failures that can
happen are when there are library functions that take/return such
structures. There are very few such library functions. Currently this
is known to affect <code>inet_ntoa</code>, <code>inet_lnaof</code>,
<code>inet_netof</code>, <code>inet_makeaddr</code>, and <code>semctl</code>. Until the
bug is fixed, GCC contains workarounds for the known affected functions.
<p>See <a href="http://freeware.sgi.com/">http://freeware.sgi.com/</a> for more
information about using GCC on IRIX platforms.
<hr />
<h3 class="heading"><a name="TOC43"></a><a name="powerpc*-*-*"></a>powerpc-*-*</h3>
<p>You can specify a default version for the <code>-mcpu=</code><var>cpu_type</var><code></code>
switch by using the configure option <code>--with-cpu-</code><var>cpu_type</var><code></code>.
<hr />
<h3 class="heading"><a name="TOC44"></a><a name="powerpc-*-darwin*"></a>powerpc-*-darwin*</h3>
<p>PowerPC running Darwin (Mac OS X kernel).
<p>Pre-installed versions of Mac OS X may not include any developer tools,
meaning that you will not be able to build GCC from source. Tool
binaries are available at
<a href="http://developer.apple.com/tools/compilers.html">http://developer.apple.com/tools/compilers.html</a> (free
registration required).
<p>The default stack limit of 512K is too small, which may cause compiles
to fail with 'Bus error'. Set the stack larger, for instance
by doing <code>limit stack 800</code>. It's a good idea to use the GNU
preprocessor instead of Apple's <code>cpp-precomp</code> during the first stage of
bootstrapping; this is automatic when doing <code>make bootstrap</code>, but
to do it from the toplevel objdir you will need to say <code>make
CC='cc -no-cpp-precomp' bootstrap</code>.
<p>The version of GCC shipped by Apple typically includes a number of
extensions not available in a standard GCC release. These extensions
are generally specific to Mac programming.
<hr />
<h3 class="heading"><a name="TOC45"></a><a name="powerpc-*-elf"></a>powerpc-*-elf, powerpc-*-sysv4</h3>
<p>PowerPC system in big endian mode, running System V.4.
<hr />
<h3 class="heading"><a name="TOC46"></a><a name="powerpc-*-linux-gnu*"></a>powerpc-*-linux-gnu*</h3>
<p>You will need
<a href="ftp://ftp.kernel.org/pub/linux/devel/binutils">binutils 2.13.90.0.10</a>
or newer for a working GCC.
<hr />
<h3 class="heading"><a name="TOC47"></a><a name="powerpc-*-netbsd*"></a>powerpc-*-netbsd*</h3>
<p>PowerPC system in big endian mode running NetBSD. To build the
documentation you will need Texinfo version 4.2 (NetBSD 1.5.1 included
Texinfo version 3.12).
<hr />
<h3 class="heading"><a name="TOC48"></a><a name="powerpc-*-eabiaix"></a>powerpc-*-eabiaix</h3>
<p>Embedded PowerPC system in big endian mode with <code>-mcall-aix</code> selected as
the default.
<hr />
<h3 class="heading"><a name="TOC49"></a><a name="powerpc-*-eabisim"></a>powerpc-*-eabisim</h3>
<p>Embedded PowerPC system in big endian mode for use in running under the
PSIM simulator.
<hr />
<h3 class="heading"><a name="TOC50"></a><a name="powerpc-*-eabi"></a>powerpc-*-eabi</h3>
<p>Embedded PowerPC system in big endian mode.
<hr />
<h3 class="heading"><a name="TOC51"></a><a name="powerpcle-*-elf"></a>powerpcle-*-elf, powerpcle-*-sysv4</h3>
<p>PowerPC system in little endian mode, running System V.4.
<hr />
<h3 class="heading"><a name="TOC52"></a><a name="powerpcle-*-eabisim"></a>powerpcle-*-eabisim</h3>
<p>Embedded PowerPC system in little endian mode for use in running under
the PSIM simulator.
<hr />
<h3 class="heading"><a name="TOC53"></a><a name="powerpcle-*-eabi"></a>powerpcle-*-eabi</h3>
<p>Embedded PowerPC system in little endian mode.
<hr />
<h3 class="heading"><a name="TOC54"></a><a name="s390-*-linux*"></a>s390-*-linux*</h3>
<p>S/390 system running Linux for S/390.
<hr />
<h3 class="heading"><a name="TOC55"></a><a name="s390x-*-linux*"></a>s390x-*-linux*</h3>
<p>zSeries system (64-bit) running Linux for zSeries.
<hr />
<h3 class="heading"><a name="TOC56"></a><a name="*-*-solaris2*"></a>*-*-solaris2*</h3>
<p>Sun does not ship a C compiler with Solaris 2. To bootstrap and install
GCC you first have to install a pre-built compiler, see our
<a href="binaries.html">binaries page</a> for details.
<p>The Solaris 2 <code>/bin/sh</code> will often fail to configure
<code>libstdc++-v3</code>, <code>boehm-gc</code> or <code>libjava</code>. We therefore
recommend to use the following sequence of commands to bootstrap and
install GCC:
<pre class="smallexample"> % CONFIG_SHELL=/bin/ksh
% export CONFIG_SHELL
% <var>srcdir</var>/configure [<var>options</var>] [<var>target</var>]
% gmake bootstrap
% gmake install
</pre>
<p>As explained in the <a href="build.html">build</a> instructions, we recommend
to use GNU make, which we call <code>gmake</code> here to distinguish it
from Sun make.
<p>Solaris 2 comes with a number of optional OS packages. Some of these
are needed to use GCC fully, namely <code>SUNWarc</code>,
<code>SUNWbtool</code>, <code>SUNWesu</code>, <code>SUNWhea</code>, <code>SUNWlibm</code>,
<code>SUNWsprot</code>, and <code>SUNWtoo</code>. If you did not install all
optional packages when installing Solaris 2, you will need to verify that
the packages that GCC needs are installed.
<p>To check whether an optional package is installed, use
the <code>pkginfo</code> command. To add an optional package, use the
<code>pkgadd</code> command. For further details, see the Solaris 2
documentation.
<p>Trying to use the linker and other tools in
<code>/usr/ucb</code> to install GCC has been observed to cause trouble.
For example, the linker may hang indefinitely. The fix is to remove
<code>/usr/ucb</code> from your <code>PATH</code>.
<p>The build process works more smoothly with the legacy Sun tools so, if you
have <code>/usr/xpg4/bin</code> in your <code>PATH</code>, we recommend that you place
<code>/usr/bin</code> before <code>/usr/xpg4/bin</code> for the duration of the build.
<p>All releases of GNU binutils prior to 2.11.2 have known bugs on this
platform. We recommend the use of GNU binutils 2.11.2 or the vendor
tools (Sun <code>as</code>, Sun <code>ld</code>).
<p>Sun bug 4296832 turns up when compiling X11 headers with GCC 2.95 or
newer: <code>g++</code> will complain that types are missing. These headers assume
that omitting the type means <code>int</code>; this assumption worked for C89 but
is wrong for C++, and is now wrong for C99 also.
<p><code>g++</code> accepts such (invalid) constructs with the option
<code>-fpermissive</code>; it
will assume that any missing type is <code>int</code> (as defined by C89).
<p>There are patches for Solaris 2.6 (105633-56 or newer for SPARC,
106248-42 or newer for Intel), Solaris 7 (108376-21 or newer for SPARC,
108377-20 for Intel), and Solaris 8 (108652-24 or newer for SPARC,
108653-22 for Intel) that fix this bug.
<hr />
<h3 class="heading"><a name="TOC57"></a><a name="sparc-sun-solaris2*"></a>sparc-sun-solaris2*</h3>
<p>When GCC is configured to use binutils 2.11.2 or later the binaries
produced are smaller than the ones produced using Sun's native tools;
this difference is quite significant for binaries containing debugging
information.
<p>Sun <code>as</code> 4.x is broken in that it cannot cope with long symbol names.
A typical error message might look similar to the following:
<pre class="smallexample"> /usr/ccs/bin/as: "/var/tmp/ccMsw135.s", line 11041: error:
can't compute value of an expression involving an external symbol.
</pre>
<p>This is Sun bug 4237974. This is fixed with patch 108908-02 for Solaris
2.6 and has been fixed in later (5.x) versions of the assembler,
starting with Solaris 7.
<p>Starting with Solaris 7, the operating system is capable of executing
64-bit SPARC V9 binaries. GCC 3.1 and later properly supports
this; the <code>-m64</code> option enables 64-bit code generation.
However, if all you want is code tuned for the UltraSPARC CPU, you
should try the <code>-mtune=ultrasparc</code> option instead, which produces
code that, unlike full 64-bit code, can still run on non-UltraSPARC
machines.
<p>When configuring on a Solaris 7 or later system that is running a kernel
that supports only 32-bit binaries, one must configure with
<code>--disable-multilib</code>, since we will not be able to build the
64-bit target libraries.
<p>GCC 3.3 triggers code generation bugs in earlier versions of the GNU
compiler (especially GCC 3.0.x versions), which lead to the miscompilation
of the stage1 compiler and the subsequent failure of the bootstrap process.
A workaround is to use GCC 3.2.3 as an intermediary stage, i.e. to bootstrap
that compiler with the base compiler and then use it to bootstrap the final
compiler.
<hr />
<h3 class="heading"><a name="TOC58"></a><a name="sparc-sun-solaris2.7"></a>sparc-sun-solaris2.7</h3>
<p>Sun patch 107058-01 (1999-01-13) for Solaris 7/SPARC triggers a bug in
the dynamic linker. This problem (Sun bug 4210064) affects GCC 2.8
and later, including all EGCS releases. Sun formerly recommended
107058-01 for all Solaris 7 users, but around 1999-09-01 it started to
recommend it only for people who use Sun's compilers.
<p>Here are some workarounds to this problem:
<ul>
<li>Do not install Sun patch 107058-01 until after Sun releases a
complete patch for bug 4210064. This is the simplest course to take,
unless you must also use Sun's C compiler. Unfortunately 107058-01
is preinstalled on some new Solaris 7-based hosts, so you may have to
back it out.
<li>Copy the original, unpatched Solaris 7
<code>/usr/ccs/bin/as</code> into
<code>/usr/local/lib/gcc-lib/sparc-sun-solaris2.7/3.1/as</code>,
adjusting the latter name to fit your local conventions and software
version numbers.
<li>Install Sun patch 106950-03 (1999-05-25) or later. Nobody with
both 107058-01 and 106950-03 installed has reported the bug with GCC
and Sun's dynamic linker. This last course of action is riskiest,
for two reasons. First, you must install 106950 on all hosts that
run code generated by GCC; it doesn't suffice to install it only on
the hosts that run GCC itself. Second, Sun says that 106950-03 is
only a partial fix for bug 4210064, but Sun doesn't know whether the
partial fix is adequate for GCC. Revision -08 or later should fix
the bug. The current (as of 2001-09-24) revision is -14, and is included in
the Solaris 7 Recommended Patch Cluster.
</ul>
<p>GCC 3.3 triggers a bug in version 5.0 Alpha 03/27/98 of the Sun assembler,
which causes a bootstrap failure when linking the 64-bit shared version of
libgcc. A typical error message is:
<pre class="smallexample"> ld: fatal: relocation error: R_SPARC_32: file libgcc/sparcv9/_muldi3.o:
symbol <unknown>: offset 0xffffffff7ec133e7 is non-aligned.
</pre>
<p>This bug has been fixed in the final 5.0 version of the assembler.
<p>
<hr />
<h3 class="heading"><a name="TOC59"></a><a name="sparc-sun-sunos4*"></a>sparc-sun-sunos4*</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>A bug in the SunOS 4 linker will cause it to crash when linking
<code>-fPIC</code> compiled objects (and will therefore not allow you to build
shared libraries).
<p>To fix this problem you can either use the most recent version of
binutils or get the latest SunOS 4 linker patch (patch ID 100170-10)
from Sun's patch site.
<p>Sometimes on a Sun 4 you may observe a crash in the program
<code>genflags</code> or <code>genoutput</code> while building GCC. This is said to
be due to a bug in <code>sh</code>. You can probably get around it by running
<code>genflags</code> or <code>genoutput</code> manually and then retrying the
<code>make</code>.
<hr />
<h3 class="heading"><a name="TOC60"></a><a name="sparc-unknown-linux-gnulibc1"></a>sparc-unknown-linux-gnulibc1</h3>
<p>Support for this system is obsoleted in GCC 3.3.
<p>It has been reported that you might need
<a href="ftp://ftp.yggdrasil.com/private/hjl">binutils 2.8.1.0.23</a>
for this platform, too.
<hr />
<h3 class="heading"><a name="TOC61"></a><a name="sparc-*-linux*"></a>sparc-*-linux*</h3>
<p>GCC versions 3.0 and higher require binutils 2.11.2 and glibc 2.2.4
or newer on this platform. All earlier binutils and glibc
releases mishandled unaligned relocations on <code>sparc-*-*</code> targets.
<hr />
<h3 class="heading"><a name="TOC62"></a><a name="sparc64-*-solaris2*"></a>sparc64-*-solaris2*</h3>
<p>The following compiler flags must be specified in the configure
step in order to bootstrap this target with the Sun compiler:
<pre class="example"> % CC="cc -xildoff -xarch=v9" <var>srcdir</var>/configure [<var>options</var>] [<var>target</var>]
</pre>
<p><code>-xildoff</code> turns off the incremental linker, and <code>-xarch=v9</code>
specifies the SPARC-V9 architecture to the Sun linker and assembler.
<hr />
<h3 class="heading"><a name="TOC63"></a><a name="sparcv9-*-solaris2*"></a>sparcv9-*-solaris2*</h3>
<p>This is a synonym for sparc64-*-solaris2*.
<hr />
<h3 class="heading"><a name="TOC64"></a><a name="%23*-*-sysv*"></a>*-*-sysv*</h3>
<p>On System V release 3, you may get this error message
while linking:
<pre class="smallexample"> ld fatal: failed to write symbol name <var>something</var>
in strings table for file <var>whatever</var>
</pre>
<p>This probably indicates that the disk is full or your ulimit won't allow
the file to be as large as it needs to be.
<p>This problem can also result because the kernel parameter <code>MAXUMEM</code>
is too small. If so, you must regenerate the kernel and make the value
much larger. The default value is reported to be 1024; a value of 32768
is said to work. Smaller values may also work.
<p>On System V, if you get an error like this,
<pre class="example"> /usr/local/lib/bison.simple: In function `yyparse':
/usr/local/lib/bison.simple:625: virtual memory exhausted
</pre>
<p>that too indicates a problem with disk space, ulimit, or <code>MAXUMEM</code>.
<p>On a System V release 4 system, make sure <code>/usr/bin</code> precedes
<code>/usr/ucb</code> in <code>PATH</code>. The <code>cc</code> command in
<code>/usr/ucb</code> uses libraries which have bugs.
<hr />
<h3 class="heading"><a name="TOC65"></a><a name="vax-dec-ultrix"></a>vax-dec-ultrix</h3>
<p>Don't try compiling with VAX C (<code>vcc</code>). It produces incorrect code
in some cases (for example, when <code>alloca</code> is used).
<hr />
<h3 class="heading"><a name="TOC66"></a><a name="x86_64-*-*"></a>x86_64-*-*, amd64-*-*</h3>
<p>GCC supports the x86-64 architecture implemented by the AMD64 processor
(amd64-*-* is an alias for x86_64-*-*) on GNU/Linux, FreeBSD and NetBSD.
On GNU/Linux the default is a bi-arch compiler which is able to generate
both 64-bit x86-64 and 32-bit x86 code (via the <code>-m32</code> switch).
<hr />
<h3 class="heading"><a name="TOC67"></a><a name="xtensa-*-elf"></a>xtensa-*-elf</h3>
<p>This target is intended for embedded Xtensa systems using the
<code>newlib</code> C library. It uses ELF but does not support shared
objects. Designed-defined instructions specified via the
Tensilica Instruction Extension (TIE) language are only supported
through inline assembly.
<p>The Xtensa configuration information must be specified prior to
building GCC. The <code>gcc/config/xtensa/xtensa-config.h</code> header
file contains the configuration information. If you created your
own Xtensa configuration with the Xtensa Processor Generator, the
downloaded files include a customized copy of this header file,
which you can use to replace the default header file.
<hr />
<h3 class="heading"><a name="TOC68"></a><a name="xtensa-*-linux*"></a>xtensa-*-linux*</h3>
<p>This target is for Xtensa systems running GNU/Linux. It supports ELF
shared objects and the GNU C library (glibc). It also generates
position-independent code (PIC) regardless of whether the
<code>-fpic</code> or <code>-fPIC</code> options are used. In other
respects, this target is the same as the
<a href="#xtensa-*-elf"><code>xtensa-*-elf</code></a> target.
<hr />
<h3 class="heading"><a name="TOC69"></a><a name="windows"></a>Microsoft Windows (32-bit)</h3>
<p>A port of GCC 2.95.2 and 3.x is included with the
<a href="http://www.cygwin.com/">Cygwin environment</a>.
<p>Current (as of early 2001) snapshots of GCC will build under Cygwin
without modification.
<p>GCC does not currently build with Microsoft's C++ compiler and there
are no plans to make it do so.
<hr />
<h3 class="heading"><a name="TOC70"></a><a name="os2"></a>OS/2</h3>
<p>GCC does not currently support OS/2. However, Andrew Zabolotny has been
working on a generic OS/2 port with pgcc. The current code can be found
at <a href="http://www.goof.com/pcg/os2/">http://www.goof.com/pcg/os2/</a>.
<p>An older copy of GCC 2.8.1 is included with the EMX tools available at
<a href="ftp://ftp.leo.org/pub/comp/os/os2/leo/devtools/emx+gcc/">ftp://ftp.leo.org/pub/comp/os/os2/leo/devtools/emx+gcc/</a>.
<hr />
<h3 class="heading"><a name="TOC71"></a><a name="older"></a>Older systems</h3>
<p>GCC contains support files for many older (1980s and early
1990s) Unix variants. For the most part, support for these systems
has not been deliberately removed, but it has not been maintained for
several years and may suffer from bitrot.
<p>Starting with GCC 3.1, each release has a list of "obsoleted" systems.
Support for these systems is still present in that release, but
<code>configure</code> will fail unless the <code>--enable-obsolete</code>
option is given. Unless a maintainer steps forward, support for these
systems will be removed from the next release of GCC.
<p>Support for old systems as hosts for GCC can cause problems if the
workarounds for compiler, library and operating system bugs affect the
cleanliness or maintainability of the rest of GCC. In some cases, to
bring GCC up on such a system, if still possible with current GCC, may
require first installing an old version of GCC which did work on that
system, and using it to compile a more recent GCC, to avoid bugs in the
vendor compiler. Old releases of GCC 1 and GCC 2 are available in the
<code>old-releases</code> directory on the <a href="../mirrors.html">GCC mirror sites</a>. Header bugs may generally be avoided using
<code>fixincludes</code>, but bugs or deficiencies in libraries and the
operating system may still cause problems.
<p>Support for older systems as targets for cross-compilation is less
problematic than support for them as hosts for GCC; if an enthusiast
wishes to make such a target work again (including resurrecting any of
the targets that never worked with GCC 2, starting from the last CVS
version before they were removed), patches
<a href="../contribute.html">following the usual requirements</a> would be
likely to be accepted, since they should not affect the support for more
modern targets.
<p>For some systems, old versions of GNU binutils may also be useful,
and are available from <code>pub/binutils/old-releases</code> on
<a href="http://sources.redhat.com/mirrors.html">sources.redhat.com mirror sites</a>.
<p>Some of the information on specific systems above relates to
such older systems, but much of the information
about GCC on such systems (which may no longer be applicable to
current GCC) is to be found in the GCC texinfo manual.
<hr />
<h3 class="heading"><a name="TOC72"></a><a name="elf_targets"></a>all ELF targets (SVR4, Solaris 2, etc.)</h3>
<p>C++ support is significantly better on ELF targets if you use the
<a href="./configure.html#with-gnu-ld">GNU linker</a>; duplicate copies of
inlines, vtables and template instantiations will be discarded
automatically.
<hr />
<p>
<a href="./index.html">Return to the GCC Installation page</a>
</body></html>
|