最新消息:20210816 当前crifan.com域名已被污染,为防止失联,请关注(页面右下角的)公众号

【记录】Cygwin下用arm-xscale-linux-gnueabi交叉编译Uboot

Uboot crifan 2954浏览 0评论

【背景】

之前已经在Cygwin下用crosstool-ng制作出对应的交叉编译器了:

【记录】重试使用最新版本1.18.0的crosstool-ng去配置和编译xscale的交叉编译器

且,之前也在Ubuntu中建立了另外一个arm-xscale-linux-gnueabi交叉编译器,并用其编译此u-boot-1.1.4-whgs,已经OK了。

现在打算在win7的Cygwin下,再去重新用之前Cygwin下建立的arm-xscale-linux-gnueabi重新编译一下此u-boot-1.1.4-whgs:

1
2
3
4
5
6
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs
$ ls
arm_config.mk*  config.mk*  CVS/      dtt/             include/      lib_m68k/        lib_nios2/       MAKEALL*               mips_config.mk*  nios2_config.mk*  rtc/
board/          COPYING*    disk/     examples/        lib_arm/      lib_microblaze/  lib_ppc/         Makefile*              mkconfig*        post/             tools/
CHANGELOG*      cpu/        doc/      fs/              lib_generic/  lib_mips/        m68k_config.mk*  Makefile.orig*         net/             ppc_config.mk*
common/         CREDITS*    drivers/  i386_config.mk*  lib_i386/     lib_nios/        MAINTAINERS*     microblaze_config.mk*  nios_config.mk*  README*

如图:

uboot 1.1.4 whgs

【折腾过程】

1.确认此处是有交叉编译器arm-xscale-linux-gnueabi的:

1
2
3
4
5
6
7
8
9
10
11
12
13
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs
$ arm-xscale-linux-gnueabi-gcc -v
Using built-in specs.
COLLECT_GCC=arm-xscale-linux-gnueabi-gcc
COLLECT_LTO_WRAPPER=/home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/libexec/gcc/arm-xscale-linux-gnueabi/4.6.0/lto-wrapper.exe
Target: arm-xscale-linux-gnueabi
Configured with: /home/CLi/develop/crosstool-ng/crosstool-ng-1.18.0_build/.build/src/gcc-4.6.0/configure --build=i686-build_pc-cygwin --host=i686-build_pc-cygwin --target=arm-xscale-linux-gnueabi --prefix=/home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi --with-sysroot=/home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/arm-xscale-linux-gnueabi/sysroot --enable-languages=c,c++ --with-arch=armv5te --with-cpu=xscale --with-tune=xscale --with-float=softfp --with-pkgversion='crosstool-NG 1.18.0' --disable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/home/CLi/develop/crosstool-ng/crosstool-ng-1.18.0_build/.build/arm-xscale-linux-gnueabi/buildtools --with-mpfr=/home/CLi/develop/crosstool-ng/crosstool-ng-1.18.0_build/.build/arm-xscale-linux-gnueabi/buildtools --with-mpc=/home/CLi/develop/crosstool-ng/crosstool-ng-1.18.0_build/.build/arm-xscale-linux-gnueabi/buildtools --with-ppl=no --with-cloog=no --with-libelf=no --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --enable-threads=posix --enable-target-optspace --disable-nls --disable-multilib --with-local-prefix=/home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/arm-xscale-linux-gnueabi/sysroot --enable-c99 --enable-long-long
Thread model: posix
gcc version 4.6.0 (crosstool-NG 1.18.0)
 
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs
$ which arm-xscale-linux-gnueabi-gcc
/home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/bin/arm-xscale-linux-gnueabi-gcc

2.修改uboot的Makefile中的CROSS_COMPILE:

1
2
#CROSS_COMPILE = arm-xscale-linux-gnu-
CROSS_COMPILE = arm-xscale-linux-gnueabi-

如图:

arm xscale linux gnueabi uboot makefile

3.然后就可以去试试配置:

1
2
3
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs
$ make whgs_config
Configuring for whgs board...

4.和编译了:

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
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs
$ make
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
ln -s ../common/environment.c environment.c
ln -s ../lib_generic/crc32.c crc32.c
gcc -M -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC environment.c img2srec.c mkimage.c crc32.c envcrc.c gen_eth_addr.c bmp_logo.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes cache_8xx.S cache.c codec.c cpu.c dsp.c ether.c i2c.c memory.c post.c rtc.c spr.c sysmon.c tests.c uart.c usb.c watchdog.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes asm.S cmp.c cmpi.c two.c twox.c three.c threex.c threei.c andi.c srawi.c rlwnm.c rlwinm.c rlwimi.c store.c load.c cr.c b.c multi.c string.c complex.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make -C tools all
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
gcc -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O -c -o img2srec.o img2srec.c
gcc -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O  -o img2srec.exe img2srec.o
strip img2srec.exe
gcc -g -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O -c mkimage.c
gcc -g -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O -c crc32.c
gcc -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O  -o mkimage.exe mkimage.o crc32.o
strip mkimage.exe
gcc -g -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O -c envcrc.c
gcc -g  -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -c environment.c
gcc -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O -o envcrc.exe envcrc.o crc32.o environment.o
gcc -g -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O -c gen_eth_addr.c
gcc -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O  -o gen_eth_addr.exe gen_eth_addr.o
strip gen_eth_addr.exe
gcc -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O -c -o bmp_logo.o bmp_logo.c
gcc -Wall -pedantic -idirafter ../include -DTEXT_BASE=0x5c010000 -DUSE_HOSTCC -O  -o bmp_logo.exe bmp_logo.o
strip bmp_logo.exe
./bmp_logo logos/denx.bmp >/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/bmp_logo.h
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make -C post all
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -c -o cache_8xx.o /home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cache_8xx.S
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cache.o cache.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cache.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o codec.o codec.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from codec.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cpu.o cpu.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cpu.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o dsp.o dsp.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from dsp.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ether.o ether.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ether.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o i2c.o i2c.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from i2c.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o memory.o memory.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from memory.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o post.o post.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from post.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rtc.o rtc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rtc.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o spr.o spr.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from spr.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o sysmon.o sysmon.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/post.h:27,
                 from sysmon.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o tests.o tests.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from tests.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o uart.o uart.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from uart.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usb.o usb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from usb.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o watchdog.o watchdog.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from watchdog.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libpost.a cache_8xx.o cache.o codec.o cpu.o dsp.o ether.o i2c.o memory.o post.o rtc.o spr.o sysmon.o tests.o uart.o usb.o watchdog.o
a - cache_8xx.o
a - cache.o
a - codec.o
a - cpu.o
a - dsp.o
a - ether.o
a - i2c.o
a - memory.o
a - post.o
a - rtc.o
a - spr.o
a - sysmon.o
a - tests.o
a - uart.o
a - usb.o
a - watchdog.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make -C post/cpu all
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -c -o asm.o /home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu/asm.S
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmp.o cmp.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmp.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmpi.o cmpi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmpi.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o two.o two.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from two.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o twox.o twox.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from twox.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o three.o three.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from three.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o threex.o threex.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from threex.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o threei.o threei.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from threei.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o andi.o andi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from andi.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o srawi.o srawi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from srawi.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rlwnm.o rlwnm.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rlwnm.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rlwinm.o rlwinm.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rlwinm.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rlwimi.o rlwimi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rlwimi.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o store.o store.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from store.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o load.o load.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from load.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cr.o cr.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cr.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o b.o b.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from b.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o multi.o multi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from multi.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o string.o string.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from string.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o complex.o complex.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from complex.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libcpu.a asm.o cmp.o cmpi.o two.o twox.o three.o threex.o threei.o andi.o srawi.o rlwnm.o rlwinm.o rlwimi.o store.o load.o cr.o b.o multi.o string.o complex.o
a - asm.o
a - cmp.o
a - cmpi.o
a - two.o
a - twox.o
a - three.o
a - threex.o
a - threei.o
a - andi.o
a - srawi.o
a - rlwnm.o
a - rlwinm.o
a - rlwimi.o
a - store.o
a - load.o
a - cr.o
a - b.o
a - multi.o
a - string.o
a - complex.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /usr/lib/gcc/i686-pc-cygwin/4.5.3/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -c -o cpu/pxa/start.o /home/CLi/develop/uboot/u-boot-1.1.4-whgs/cpu/pxa/start.S
make -C `dirname lib_generic/libgeneric.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_generic'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes bzlib.c bzlib_crctable.c bzlib_decompress.c bzlib_randtable.c bzlib_huffman.c crc32.c ctype.c display_options.c ldiv.c string.c vsprintf.c zlib.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_generic'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_generic'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bzlib.o bzlib.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from bzlib.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bzlib_crctable.o bzlib_crctable.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from bzlib_crctable.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bzlib_decompress.o bzlib_decompress.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from bzlib_decompress.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bzlib_randtable.o bzlib_randtable.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from bzlib_randtable.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bzlib_huffman.o bzlib_huffman.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from bzlib_huffman.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o crc32.o crc32.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from crc32.c:12:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ctype.o ctype.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o display_options.o display_options.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from display_options.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ldiv.o ldiv.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o string.o string.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o vsprintf.o vsprintf.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from vsprintf.c:17:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o zlib.o zlib.c
arm-xscale-linux-gnueabi-ar crv libgeneric.a bzlib.o bzlib_crctable.o bzlib_decompress.o  bzlib_randtable.o bzlib_huffman.o  crc32.o ctype.o display_options.o ldiv.o  string.o vsprintf.o zlib.o
a - bzlib.o
a - bzlib_crctable.o
a - bzlib_decompress.o
a - bzlib_randtable.o
a - bzlib_huffman.o
a - crc32.o
a - ctype.o
a - display_options.o
a - ldiv.o
a - string.o
a - vsprintf.o
a - zlib.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_generic'
make -C `dirname board/whgs/libwhgs.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale lowlevel_init.S whgs.c selftest.c ethernetselftest.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o whgs.o whgs.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from whgs.c:23:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
whgs.c: In function 'board_init':
whgs.c:37:2: warning: implicit declaration of function 'reset_ethernet' [-Wimplicit-function-declaration]
whgs.c: At top level:
whgs.c:98:5: warning: function declaration isn't a prototype [-Wstrict-prototypes]
whgs.c: In function 'reset_ethernet':
whgs.c:106:1: warning: control reaches end of non-void function [-Wreturn-type]
whgs.c: In function 'dram_init':
whgs.c:81:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
whgs.c: In function 'board_init':
whgs.c:27:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o selftest.o selftest.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/post.h:27,
                 from selftest.c:6:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
selftest.c: In function 'whgsSelftest':
selftest.c:46:2: warning: implicit declaration of function 'flashTest' [-Wimplicit-function-declaration]
selftest.c:53:2: warning: 'return' with no value, in function returning non-void [-Wreturn-type]
selftest.c: At top level:
selftest.c:56:1: warning: initialization from incompatible pointer type [enabled by default]
selftest.c:56:1: warning: (near initialization for '__u_boot_cmd_testWHGS.cmd') [enabled by default]
selftest.c:61:1: warning: initialization from incompatible pointer type [enabled by default]
selftest.c:61:1: warning: (near initialization for '__u_boot_cmd_testEth.cmd') [enabled by default]
selftest.c:191:1: warning: initialization from incompatible pointer type [enabled by default]
selftest.c:191:1: warning: (near initialization for '__u_boot_cmd_testserial.cmd') [enabled by default]
selftest.c: In function 'ledTest':
selftest.c:198:32: warning: variable 'dir' set but not used [-Wunused-but-set-variable]
selftest.c: At top level:
selftest.c:308:1: warning: initialization from incompatible pointer type [enabled by default]
selftest.c:308:1: warning: (near initialization for '__u_boot_cmd_testled.cmd') [enabled by default]
selftest.c:391:1: warning: initialization from incompatible pointer type [enabled by default]
selftest.c:391:1: warning: (near initialization for '__u_boot_cmd_testdram.cmd') [enabled by default]
selftest.c:442:1: warning: initialization from incompatible pointer type [enabled by default]
selftest.c:442:1: warning: (near initialization for '__u_boot_cmd_testi2c.cmd') [enabled by default]
selftest.c: In function 'flashTest':
selftest.c:454:7: warning: assignment from incompatible pointer type [enabled by default]
selftest.c:451:7: warning: unused variable 'rxBytes' [-Wunused-variable]
selftest.c: At top level:
selftest.c:485:1: warning: initialization from incompatible pointer type [enabled by default]
selftest.c:485:1: warning: (near initialization for '__u_boot_cmd_testflash.cmd') [enabled by default]
selftest.c: In function 'coldtest':
selftest.c:542:19: warning: unused variable 'j' [-Wunused-variable]
selftest.c:542:17: warning: unused variable 'i' [-Wunused-variable]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ethernetselftest.o ethernetselftest.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from ethernetselftest.h:45,
                 from ethernetselftest.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
ethernetselftest.c: In function 'smc_send_packet':
ethernetselftest.c:495:23: warning: variable 'ioaddr' set but not used [-Wunused-but-set-variable]
ethernetselftest.c: In function 'smc_phy_configure_loopback':
ethernetselftest.c:1286:6: warning: variable 'failed' set but not used [-Wunused-but-set-variable]
ethernetselftest.c:1282:7: warning: variable 'phyaddr' set but not used [-Wunused-but-set-variable]
ethernetselftest.c: In function 'smc_phy_configure_normal_operation':
ethernetselftest.c:1423:6: warning: variable 'failed' set but not used [-Wunused-but-set-variable]
ethernetselftest.c:1419:7: warning: variable 'phyaddr' set but not used [-Wunused-but-set-variable]
ethernetselftest.c: In function 'fnDoTest':
ethernetselftest.c:1725:25: warning: pointer targets in passing argument 1 of 'packet_fill' differ in signedness [-Wpointer-sign]
ethernetselftest.c:1699:13: note: expected 'unsigned char *' but argument is of type 'char *'
ethernetselftest.c:1734:25: warning: passing argument 1 of 'packet_check' from incompatible pointer type [enabled by default]
ethernetselftest.c:1686:12: note: expected 'unsigned char *' but argument is of type 'volatile uchar **'
ethernetselftest.c: At top level:
ethernetselftest.c:748:12: warning: 'smc_open' defined but not used [-Wunused-function]
ethernetselftest.c:929:12: warning: 'smc_close' defined but not used [-Wunused-function]
ethernetselftest.c:801:12: warning: 'smc_rcv' defined but not used [-Wunused-function]
ethernetselftest.c:492:12: warning: 'smc_send_packet' defined but not used [-Wunused-function]
ethernetselftest.c: In function 'fnDoTest':
ethernetselftest.c:1706:15: warning: array subscript is above array bounds [-Warray-bounds]
ethernetselftest.c:1707:15: warning: array subscript is above array bounds [-Warray-bounds]
ethernetselftest.c:1708:15: warning: array subscript is above array bounds [-Warray-bounds]
ethernetselftest.c:1709:15: warning: array subscript is above array bounds [-Warray-bounds]
ethernetselftest.c: In function 'fnEthTest':
ethernetselftest.c:1746:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -c -o lowlevel_init.o /home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs/lowlevel_init.S
arm-xscale-linux-gnueabi-ar crv libwhgs.a whgs.o selftest.o ethernetselftest.o lowlevel_init.o
a - whgs.o
a - selftest.o
a - ethernetselftest.o
a - lowlevel_init.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
make -C `dirname cpu/pxa/libpxa.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/cpu/pxa'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes start.S serial.c interrupts.c cpu.c i2c.c pxafb.c mmc.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/cpu/pxa'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/cpu/pxa'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial.o serial.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from serial.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o interrupts.o interrupts.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from interrupts.c:29:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cpu.o cpu.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cpu.c:33:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o i2c.o i2c.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from i2c.c:35:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
i2c.c: In function 'i2c_reg_read':
i2c.c:473:2: warning: pointer targets in passing argument 4 of 'i2c_read' differ in signedness [-Wpointer-sign]
i2c.c:319:5: note: expected 'uchar *' but argument is of type 'char *'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o pxafb.o pxafb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from pxafb.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o mmc.o mmc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from mmc.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libpxa.a serial.o interrupts.o cpu.o i2c.o pxafb.o mmc.o
a - serial.o
a - interrupts.o
a - cpu.o
a - i2c.o
a - pxafb.o
a - mmc.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/cpu/pxa'
make -C `dirname lib_arm/libarm.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes _udivsi3.S _umodsi3.S armlinux.c board.c cache.c div0.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm'
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -c -o _udivsi3.o /home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm/_udivsi3.S
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -c -o _umodsi3.o /home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm/_umodsi3.S
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o armlinux.o armlinux.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from armlinux.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
armlinux.c: In function 'do_bootm_linux':
armlinux.c:127:3: warning: pointer targets in passing argument 2 of 'crc32' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:540:7: note: expected 'const unsigned char *' but argument is of type 'char *'
armlinux.c:151:4: warning: pointer targets in passing argument 2 of 'crc32' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:540:7: note: expected 'const unsigned char *' but argument is of type 'char *'
armlinux.c:83:22: warning: variable 'initrd_end' set but not used [-Wunused-but-set-variable]
armlinux.c:77:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o board.o board.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from board.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
board.c: In function 'init_baudrate':
board.c:124:2: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:212:5: note: expected 'char *' but argument is of type 'uchar *'
board.c:126:4: warning: pointer targets in passing argument 1 of 'simple_strtoul' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:530:7: note: expected 'const char *' but argument is of type 'uchar *'
board.c: In function 'start_armboot':
board.c:319:3: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:212:5: note: expected 'char *' but argument is of type 'uchar *'
board.c:320:5: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
board.c:354:3: warning: pointer targets in passing argument 1 of 'smc_set_mac_addr' differ in signedness [-Wpointer-sign]
../drivers/smc91111.h:52:6: note: expected 'const char *' but argument is of type 'unsigned char *'
board.c: In function 'display_dram_config':
board.c:163:12: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
board.c: In function 'init_baudrate':
board.c:119:12: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
board.c: In function 'start_armboot':
board.c:230:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cache.o cache.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cache.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o div0.o div0.c
arm-xscale-linux-gnueabi-ar crv libarm.a _udivsi3.o _umodsi3.o armlinux.o board.o  cache.o div0.o
a - _udivsi3.o
a - _umodsi3.o
a - armlinux.o
a - board.o
a - cache.o
a - div0.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm'
make -C `dirname net/libnet.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/net'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes net.c tftp.c bootp.c rarp.c eth.c nfs.c sntp.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/net'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/net'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o net.o net.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from net.c:77:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
net.c: In function 'NetStartAgain':
net.c:577:19: warning: variable 'once' set but not used [-Wunused-but-set-variable]
net.c: In function 'NetLoop':
net.c:265:1: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o tftp.o tftp.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from tftp.c:7:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bootp.o bootp.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from bootp.c:22:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rarp.o rarp.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rarp.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o eth.o eth.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from eth.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o nfs.o nfs.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from nfs.c:25:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o sntp.o sntp.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from sntp.c:8:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libnet.a net.o tftp.o bootp.o rarp.o eth.o nfs.o sntp.o
a - net.o
a - tftp.o
a - bootp.o
a - rarp.o
a - eth.o
a - nfs.o
a - sntp.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/net'
make -C `dirname disk/libdisk.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/disk'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes part.c part_mac.c part_dos.c part_iso.c part_amiga.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/disk'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/disk'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o part.o part.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from part.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o part_mac.o part_mac.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from part_mac.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o part_dos.o part_dos.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from part_dos.c:33:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o part_iso.o part_iso.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from part_iso.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o part_amiga.o part_amiga.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from part_amiga.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libdisk.a part.o part_mac.o part_dos.o part_iso.o part_amiga.o
a - part.o
a - part_mac.o
a - part_dos.o
a - part_iso.o
a - part_amiga.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/disk'
make -C `dirname rtc/librtc.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/rtc'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes date.c ds12887.c ds1302.c ds1306.c ds1307.c ds1337.c ds1556.c ds164x.c ds174x.c m41t11.c max6900.c m48t35ax.c mc146818.c mk48t59.c mpc5xxx.c mpc8xx.c pcf8563.c s3c24x0_rtc.c rs5c372.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/rtc'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/rtc'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o date.o date.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from date.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds12887.o ds12887.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds12887.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds1302.o ds1302.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds1302.c:8:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds1306.o ds1306.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds1306.c:34:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds1307.o ds1307.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds1307.c:33:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds1337.o ds1337.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds1337.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds1556.o ds1556.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds1556.c:35:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds164x.o ds164x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds164x.c:35:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds174x.o ds174x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds174x.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o m41t11.o m41t11.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from m41t11.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o max6900.o max6900.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from max6900.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o m48t35ax.o m48t35ax.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from m48t35ax.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o mc146818.o mc146818.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from mc146818.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o mk48t59.o mk48t59.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from mk48t59.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o mpc5xxx.o mpc5xxx.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from mpc5xxx.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o mpc8xx.o mpc8xx.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from mpc8xx.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o pcf8563.o pcf8563.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from pcf8563.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o s3c24x0_rtc.o s3c24x0_rtc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from s3c24x0_rtc.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rs5c372.o rs5c372.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rs5c372.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv librtc.a date.o    ds12887.o ds1302.o ds1306.o ds1307.o ds1337.o  ds1556.o ds164x.o ds174x.o  m41t11.o max6900.o m48t35ax.o mc146818.o mk48t59.o  mpc5xxx.o mpc8xx.o pcf8563.o s3c24x0_rtc.o rs5c372.o
a - date.o
a - ds12887.o
a - ds1302.o
a - ds1306.o
a - ds1307.o
a - ds1337.o
a - ds1556.o
a - ds164x.o
a - ds174x.o
a - m41t11.o
a - max6900.o
a - m48t35ax.o
a - mc146818.o
a - mk48t59.o
a - mpc5xxx.o
a - mpc8xx.o
a - pcf8563.o
a - s3c24x0_rtc.o
a - rs5c372.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/rtc'
make -C `dirname dtt/libdtt.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/dtt'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes lm75.c ds1621.c adm1021.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/dtt'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/dtt'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o lm75.o lm75.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from lm75.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ds1621.o ds1621.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ds1621.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o adm1021.o adm1021.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from adm1021.c:34:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libdtt.a lm75.o ds1621.o adm1021.o
a - lm75.o
a - ds1621.o
a - adm1021.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/dtt'
make -C `dirname drivers/libdrivers.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes 3c589.c 5701rls.c ali512x.c bcm570x.c bcm570x_autoneg.c cfb_console.c cfi_flash.c cs8900.c ct69000.c dataflash.c dc2114x.c dm9000x.c e1000.c eepro100.c i8042.c i82365.c inca-ip_sw.c keyboard.c lan91c96.c natsemi.c ne2000.c netarm_eth.c netconsole.c ns16550.c ns8382x.c ns87308.c ns7520_eth.c omap1510_i2c.c omap24xx_i2c.c pci.c pci_auto.c pci_indirect.c pcnet.c plb2800_eth.c ps2ser.c ps2mult.c pc_keyb.c rtl8019.c rtl8139.c rtl8169.c s3c4510b_eth.c s3c4510b_uart.c sed13806.c sed156x.c serial.c serial_max3100.c serial_pl010.c serial_pl011.c serial_xuartlite.c sl811_usb.c sm501.c smc91111.c smiLynxEM.c status_led.c sym53c8xx.c ti_pci1410a.c tigon3.c tsec.c usbdcore.c usbdcore_ep0.c usbdcore_omap1510.c usbtty.c videomodes.c w83c553f.c ks8695eth.c onenand_base.c onenand_bbt.c onenand_uboot.c smc91111.c status_led.c serial_max3111.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o 3c589.o 3c589.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from 3c589.c:25:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o 5701rls.o 5701rls.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ali512x.o ali512x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from ali512x.c:33:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bcm570x.o bcm570x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from bcm570x.c:7:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bcm570x_autoneg.o bcm570x_autoneg.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cfb_console.o cfb_console.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cfb_console.c:93:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cfi_flash.o cfi_flash.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cfi_flash.c:47:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cs8900.o cs8900.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cs8900.c:39:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ct69000.o ct69000.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ct69000.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o dataflash.o dataflash.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from dataflash.c:20:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o dc2114x.o dc2114x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from dc2114x.c:21:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o dm9000x.o dm9000x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from dm9000x.c:45:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o e1000.o e1000.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from e1000.h:36,
                 from e1000.c:45:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o eepro100.o eepro100.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from eepro100.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o i8042.o i8042.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from i8042.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o i82365.o i82365.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from i82365.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o inca-ip_sw.o inca-ip_sw.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from inca-ip_sw.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o keyboard.o keyboard.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from keyboard.c:12:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o lan91c96.o lan91c96.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from lan91c96.c:61:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o natsemi.o natsemi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from natsemi.c:53:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ne2000.o ne2000.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ne2000.c:78:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o netarm_eth.o netarm_eth.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from netarm_eth.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o netconsole.o netconsole.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from netconsole.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ns16550.o ns16550.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from ns16550.c:7:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ns8382x.o ns8382x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ns8382x.c:53:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ns87308.o ns87308.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from ns87308.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ns7520_eth.o ns7520_eth.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ns7520_eth.c:16:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o omap1510_i2c.o omap1510_i2c.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from omap1510_i2c.c:21:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o omap24xx_i2c.o omap24xx_i2c.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from omap24xx_i2c.c:23:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o pci.o pci.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from pci.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o pci_auto.o pci_auto.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from pci_auto.c:16:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o pci_indirect.o pci_indirect.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from pci_indirect.c:12:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o pcnet.o pcnet.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from pcnet.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o plb2800_eth.o plb2800_eth.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from plb2800_eth.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ps2ser.o ps2ser.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ps2ser.c:16:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ps2mult.o ps2mult.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ps2mult.c:17:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o pc_keyb.o pc_keyb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from pc_keyb.c:14:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rtl8019.o rtl8019.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rtl8019.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rtl8139.o rtl8139.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rtl8139.c:74:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o rtl8169.o rtl8169.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from rtl8169.c:52:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o s3c4510b_eth.o s3c4510b_eth.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from s3c4510b_eth.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o s3c4510b_uart.o s3c4510b_uart.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from s3c4510b_uart.c:46:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o sed13806.o sed13806.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from sed13806.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o sed156x.o sed156x.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from sed156x.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial.o serial.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from serial.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial_max3100.o serial_max3100.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from serial_max3100.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial_pl010.o serial_pl010.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from serial_pl010.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial_pl011.o serial_pl011.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from serial_pl011.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial_xuartlite.o serial_xuartlite.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from serial_xuartlite.c:25:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o sl811_usb.o sl811_usb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from sl811_usb.c:38:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o sm501.o sm501.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from sm501.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o smc91111.o smc91111.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from smc91111.c:62:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
smc91111.c: In function 'dump_memory_info':
smc91111.c:337:7: warning: variable 'mem_info' set but not used [-Wunused-but-set-variable]
smc91111.c: In function 'smc_send_packet':
smc91111.c:554:16: warning: variable 'ioaddr' set but not used [-Wunused-but-set-variable]
smc91111.c: In function 'smc_phy_configure':
smc91111.c:1347:6: warning: variable 'failed' set but not used [-Wunused-but-set-variable]
smc91111.c:1343:7: warning: variable 'phyaddr' set but not used [-Wunused-but-set-variable]
smc91111.c: In function 'smc_get_ethaddr':
smc91111.c:1529:2: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:212:5: note: expected 'char *' but argument is of type 'uchar *'
smc91111.c:1537:5: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
smc91111.c:1546:2: warning: pointer targets in passing argument 1 of 'get_rom_mac' differ in signedness [-Wpointer-sign]
smc91111.c:213:5: note: expected 'char *' but argument is of type 'uchar *'
smc91111.c:1550:10: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
smc91111.c:1553:6: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:536:5: note: expected 'char *' but argument is of type 'uchar *'
smc91111.c:1554:4: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/asm/u-boot-arm.h:55:6: note: expected 'char *' but argument is of type 'uchar *'
smc91111.c:1560:9: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o smiLynxEM.o smiLynxEM.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from smiLynxEM.c:41:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o status_led.o status_led.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from status_led.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o sym53c8xx.o sym53c8xx.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from sym53c8xx.c:36:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ti_pci1410a.o ti_pci1410a.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ti_pci1410a.c:59:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o tigon3.o tigon3.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from tigon3.c:13:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o tsec.o tsec.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from tsec.c:15:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usbdcore.o usbdcore.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/usbdcore.h:34,
                 from usbdcore.c:33:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
usbdcore.c: In function 'usbd_device_event_irq':
usbdcore.c:597:21: warning: variable 'state' set but not used [-Wunused-but-set-variable]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usbdcore_ep0.o usbdcore_ep0.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from usbdcore_ep0.c:44:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usbdcore_omap1510.o usbdcore_omap1510.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from usbdcore_omap1510.c:29:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usbtty.o usbtty.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from usbtty.c:21:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o videomodes.o videomodes.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from videomodes.c:75:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
videomodes.c: In function 'video_get_params':
videomodes.c:159:13: warning: variable 't' set but not used [-Wunused-but-set-variable]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o w83c553f.o w83c553f.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from w83c553f.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ks8695eth.o ks8695eth.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o onenand_base.o onenand_base.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from onenand_base.c:17:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o onenand_bbt.o onenand_bbt.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from onenand_bbt.c:17:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o onenand_uboot.o onenand_uboot.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from onenand_uboot.c:16:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial_max3111.o serial_max3111.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from serial_max3111.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
serial_max3111.c: In function 'max3111_spi_rxd':
serial_max3111.c:88:25: warning: initialization makes pointer from integer without a cast [enabled by default]
serial_max3111.c: In function 'max3111_spi_txd':
serial_max3111.c:105:9: warning: assignment makes pointer from integer without a cast [enabled by default]
serial_max3111.c:109:9: warning: assignment makes pointer from integer without a cast [enabled by default]
serial_max3111.c: In function 'max3111_spi_clk':
serial_max3111.c:124:23: warning: assignment makes pointer from integer without a cast [enabled by default]
serial_max3111.c:128:23: warning: assignment makes pointer from integer without a cast [enabled by default]
serial_max3111.c: In function 'max3111_cs':
serial_max3111.c:143:23: warning: assignment makes pointer from integer without a cast [enabled by default]
serial_max3111.c:147:23: warning: assignment makes pointer from integer without a cast [enabled by default]
serial_max3111.c: In function 'max3111_transfer':
serial_max3111.c:231:6: warning: unused variable 'tmp' [-Wunused-variable]
serial_max3111.c: In function 'serial_init':
serial_max3111.c:347:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-ar crv libdrivers.a 3c589.o 5701rls.o ali512x.o  bcm570x.o bcm570x_autoneg.o cfb_console.o cfi_flash.o  cs8900.o ct69000.o dataflash.o dc2114x.o dm9000x.o  e1000.o eepro100.o  i8042.o i82365.o inca-ip_sw.o keyboard.o  lan91c96.o  natsemi.o ne2000.o netarm_eth.o netconsole.o  ns16550.o ns8382x.o ns87308.o ns7520_eth.o omap1510_i2c.o  omap24xx_i2c.o pci.o pci_auto.o pci_indirect.o  pcnet.o plb2800_eth.o  ps2ser.o ps2mult.o pc_keyb.o  rtl8019.o rtl8139.o rtl8169.o  s3c4510b_eth.o s3c4510b_uart.o  sed13806.o sed156x.o  serial.o serial_max3100.o  serial_pl010.o serial_pl011.o serial_xuartlite.o  sl811_usb.o sm501.o smc91111.o smiLynxEM.o  status_led.o sym53c8xx.o  ti_pci1410a.o tigon3.o tsec.o  usbdcore.o usbdcore_ep0.o usbdcore_omap1510.o usbtty.o  videomodes.o w83c553f.o  ks8695eth.o  onenand_base.o onenand_bbt.o onenand_uboot.o smc91111.o status_led.o serial_max3111.o
a - 3c589.o
a - 5701rls.o
a - ali512x.o
a - bcm570x.o
a - bcm570x_autoneg.o
a - cfb_console.o
a - cfi_flash.o
a - cs8900.o
a - ct69000.o
a - dataflash.o
a - dc2114x.o
a - dm9000x.o
a - e1000.o
a - eepro100.o
a - i8042.o
a - i82365.o
a - inca-ip_sw.o
a - keyboard.o
a - lan91c96.o
a - natsemi.o
a - ne2000.o
a - netarm_eth.o
a - netconsole.o
a - ns16550.o
a - ns8382x.o
a - ns87308.o
a - ns7520_eth.o
a - omap1510_i2c.o
a - omap24xx_i2c.o
a - pci.o
a - pci_auto.o
a - pci_indirect.o
a - pcnet.o
a - plb2800_eth.o
a - ps2ser.o
a - ps2mult.o
a - pc_keyb.o
a - rtl8019.o
a - rtl8139.o
a - rtl8169.o
a - s3c4510b_eth.o
a - s3c4510b_uart.o
a - sed13806.o
a - sed156x.o
a - serial.o
a - serial_max3100.o
a - serial_pl010.o
a - serial_pl011.o
a - serial_xuartlite.o
a - sl811_usb.o
a - sm501.o
a - smc91111.o
a - smiLynxEM.o
a - status_led.o
a - sym53c8xx.o
a - ti_pci1410a.o
a - tigon3.o
a - tsec.o
a - usbdcore.o
a - usbdcore_ep0.o
a - usbdcore_omap1510.o
a - usbtty.o
a - videomodes.o
a - w83c553f.o
a - ks8695eth.o
a - onenand_base.o
a - onenand_bbt.o
a - onenand_uboot.o
a - smc91111.o
a - status_led.o
a - serial_max3111.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers'
make -C `dirname drivers/sk98lin/libsk98lin.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers/sk98lin'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  skge.c skaddr.c skgehwt.c skgeinit.c skgepnmi.c skgesirq.c ski2c.c sklm80.c skqueue.c skrlmt.c sktimer.c skvpd.c skxmac2.c skcsum.c uboot_skb.c uboot_drv.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers/sk98lin'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers/sk98lin'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skge.o skge.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skge.c:349:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skaddr.o skaddr.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skaddr.c:227:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skgehwt.o skgehwt.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skgehwt.c:82:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skgeinit.o skgeinit.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skgeinit.c:402:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skgepnmi.o skgepnmi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skgepnmi.c:441:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skgesirq.o skgesirq.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skgesirq.c:346:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o ski2c.o ski2c.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from ski2c.c:237:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o sklm80.o sklm80.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from sklm80.c:107:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skqueue.o skqueue.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skqueue.c:96:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skrlmt.o skrlmt.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skrlmt.c:289:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o sktimer.o sktimer.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from sktimer.c:81:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skvpd.o skvpd.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skvpd.c:169:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skxmac2.o skxmac2.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skxmac2.c:419:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o skcsum.o skcsum.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from skcsum.c:79:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o uboot_skb.o uboot_skb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from uboot_skb.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -I. -DSK_USE_CSUM  -c -o uboot_drv.o uboot_drv.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from uboot_drv.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libsk98lin.a skge.o skaddr.o skgehwt.o skgeinit.o skgepnmi.o skgesirq.o  ski2c.o sklm80.o skqueue.o skrlmt.o sktimer.o skvpd.o  skxmac2.o skcsum.o  uboot_skb.o uboot_drv.o
a - skge.o
a - skaddr.o
a - skgehwt.o
a - skgeinit.o
a - skgepnmi.o
a - skgesirq.o
a - ski2c.o
a - sklm80.o
a - skqueue.o
a - skrlmt.o
a - sktimer.o
a - skvpd.o
a - skxmac2.o
a - skcsum.o
a - uboot_skb.o
a - uboot_drv.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers/sk98lin'
make -C `dirname post/libpost.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make -C `dirname post/cpu/libcpu.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make -C `dirname common/libcommon.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/common'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes  main.c ACEX1K.c altera.c bedbug.c circbuf.c cmd_ace.c cmd_autoscript.c cmd_bdinfo.c cmd_bedbug.c cmd_bmp.c cmd_boot.c cmd_bootm.c cmd_cache.c cmd_chggpio.c cmd_console.c cmd_date.c cmd_dcr.c cmd_diag.c cmd_display.c cmd_doc.c cmd_dtt.c cmd_eeprom.c cmd_elf.c cmd_ext2.c cmd_fat.c cmd_fdc.c cmd_fdos.c cmd_flash.c cmd_fpga.c cmd_i2c.c cmd_ide.c cmd_immap.c cmd_itest.c cmd_jffs2.c cmd_load.c cmd_log.c cmd_mem.c cmd_mii.c cmd_misc.c cmd_mmc.c cmd_nand.c cmd_net.c cmd_nvedit.c cmd_pxagpio.c cmd_pci.c cmd_pcmcia.c cmd_portio.c cmd_reginfo.c cmd_reiser.c cmd_scsi.c cmd_spi.c cmd_universe.c cmd_usb.c cmd_vfd.c command.c console.c devices.c dlmalloc.c docecc.c environment.c env_common.c env_nand.c env_dataflash.c env_flash.c env_eeprom.c env_nvram.c env_nowhere.c exports.c fpga.c ft_build.c hush.c kgdb.c lcd.c lists.c lynxkdi.c memsize.c miiphybb.c miiphyutil.c s_record.c serial.c soft_i2c.c soft_spi.c spartan2.c spartan3.c usb.c usb_kbd.c usb_storage.c virtex2.c xilinx.c cmd_onenand.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/common'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/common'
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o main.o main.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from main.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ACEX1K.o ACEX1K.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ACEX1K.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o altera.o altera.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from altera.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o bedbug.o bedbug.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from bedbug.c:3:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o circbuf.o circbuf.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from circbuf.c:21:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_ace.o cmd_ace.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_ace.c:42:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_autoscript.o cmd_autoscript.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_autoscript.c:38:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_bdinfo.o cmd_bdinfo.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_bdinfo.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cmd_bdinfo.c: In function 'do_bdinfo':
cmd_bdinfo.c:216:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_bedbug.o cmd_bedbug.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_bedbug.c:5:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_bmp.o cmd_bmp.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_bmp.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_boot.o cmd_boot.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_boot.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_bootm.o cmd_bootm.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_bootm.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cmd_bootm.c: In function 'do_bootm':
cmd_bootm.c:202:2: warning: pointer targets in passing argument 2 of 'crc32' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:540:7: note: expected 'const unsigned char *' but argument is of type 'char *'
cmd_bootm.c:224:3: warning: pointer targets in passing argument 2 of 'crc32' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:540:7: note: expected 'const unsigned char *' but argument is of type 'char *'
cmd_bootm.c:145:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
cmd_bootm.c:145:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_cache.o cmd_cache.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_cache.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_chggpio.o cmd_chggpio.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_chggpio.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_console.o cmd_console.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_console.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_date.o cmd_date.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_date.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cmd_date.c: In function 'do_date':
cmd_date.c:41:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_dcr.o cmd_dcr.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_dcr.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_diag.o cmd_diag.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_diag.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_display.o cmd_display.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_display.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_doc.o cmd_doc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_doc.c:9:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_dtt.o cmd_dtt.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_dtt.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_eeprom.o cmd_eeprom.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_eeprom.c:40:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_elf.o cmd_elf.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_elf.c:16:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_ext2.o cmd_ext2.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_ext2.c:35:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_fat.o cmd_fat.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_fat.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_fdc.o cmd_fdc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_fdc.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_fdos.o cmd_fdos.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_fdos.c:29:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_flash.o cmd_flash.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_flash.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_fpga.o cmd_fpga.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_fpga.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_i2c.o cmd_i2c.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_i2c.c:84:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_ide.o cmd_ide.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_ide.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_immap.o cmd_immap.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_immap.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_itest.o cmd_itest.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_itest.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_jffs2.o cmd_jffs2.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_jffs2.c:90:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_load.o cmd_load.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_load.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cmd_load.c: In function 'do_load_serial_bin':
cmd_load.c:434:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_log.o cmd_log.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_log.c:43:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_mem.o cmd_mem.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_mem.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cmd_mem.c: In function 'do_mem_md':
cmd_mem.c:182:6: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_mii.o cmd_mii.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_mii.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_misc.o cmd_misc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_misc.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_mmc.o cmd_mmc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_mmc.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_nand.o cmd_nand.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_nand.c:11:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_net.o cmd_net.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_net.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_nvedit.o cmd_nvedit.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_nvedit.c:42:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cmd_nvedit.c: In function 'do_printenv':
cmd_nvedit.c:127:4: warning: pointer targets in passing argument 1 of 'envmatch' differ in signedness [-Wpointer-sign]
cmd_nvedit.c:81:12: note: expected 'uchar *' but argument is of type 'char *'
cmd_nvedit.c: In function '_do_setenv':
cmd_nvedit.c:168:7: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
cmd_nvedit.c:304:2: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness [-Wpointer-sign]
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/linux/string.h:54:24: note: expected 'const char *' but argument is of type 'uchar *'
cmd_nvedit.c: In function 'getenv':
cmd_nvedit.c:498:3: warning: pointer targets in passing argument 1 of 'envmatch' differ in signedness [-Wpointer-sign]
cmd_nvedit.c:81:12: note: expected 'uchar *' but argument is of type 'char *'
cmd_nvedit.c:500:3: warning: pointer targets in return differ in signedness [-Wpointer-sign]
cmd_nvedit.c: In function 'getenv_r':
cmd_nvedit.c:519:3: warning: pointer targets in passing argument 1 of 'envmatch' differ in signedness [-Wpointer-sign]
cmd_nvedit.c:81:12: note: expected 'uchar *' but argument is of type 'char *'
cmd_nvedit.c: In function '_do_setenv':
cmd_nvedit.c:153:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_pxagpio.o cmd_pxagpio.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_pxagpio.c:26:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cmd_pxagpio.c: In function 'do_pxagpio':
cmd_pxagpio.c:61:4: warning: 'return' with no value, in function returning non-void [-Wreturn-type]
cmd_pxagpio.c:34:16: warning: variable 'dir' set but not used [-Wunused-but-set-variable]
cmd_pxagpio.c:34:12: warning: unused variable 'af' [-Wunused-variable]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_pci.o cmd_pci.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_pci.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_pcmcia.o cmd_pcmcia.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_pcmcia.c:56:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_portio.o cmd_portio.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_portio.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_reginfo.o cmd_reginfo.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_reginfo.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_reiser.o cmd_reiser.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_reiser.c:29:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_scsi.o cmd_scsi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_scsi.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_spi.o cmd_spi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_spi.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_universe.o cmd_universe.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_universe.c:23:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_usb.o cmd_usb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_usb.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_vfd.o cmd_vfd.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_vfd.c:35:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o command.o command.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from command.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o console.o console.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from console.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
console.c: In function 'serial_printf':
console.c:100:7: warning: variable 'i' set but not used [-Wunused-but-set-variable]
console.c: In function 'fprintf':
console.c:145:7: warning: variable 'i' set but not used [-Wunused-but-set-variable]
console.c: In function 'printf':
console.c:227:7: warning: variable 'i' set but not used [-Wunused-but-set-variable]
console.c: In function 'vprintf':
console.c:244:7: warning: variable 'i' set but not used [-Wunused-but-set-variable]
console.c: In function 'console_setfile':
console.c:49:12: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
console.c: In function 'getc':
console.c:162:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
console.c: In function 'tstc':
console.c:175:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
console.c: In function 'putc':
console.c:188:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
console.c: In function 'puts':
console.c:206:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
console.c: In function 'ctrlc':
console.c:259:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
console.c: In function 'console_init_f':
console.c:371:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
console.c: In function 'console_init_r':
console.c:500:5: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o devices.o devices.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from devices.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o dlmalloc.o dlmalloc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from dlmalloc.c:950:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
dlmalloc.c: In function 'malloc_bin_reloc':
dlmalloc.c:1494:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o docecc.o docecc.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from docecc.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wa,--no-warn \
        -DENV_CRC=0 \
        -c -o environment.o environment.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o env_common.o env_common.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from env_common.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
cc1: warning: unknown escape sequence: '\;' [enabled by default]
env_common.c: In function 'env_get_char_memory':
env_common.c:182:7: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
env_common.c: In function 'env_get_char_init':
env_common.c:151:14: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
env_common.c: In function 'env_get_addr':
env_common.c:194:8: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
env_common.c: In function 'env_relocate':
env_common.c:207:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o env_nand.o env_nand.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from env_nand.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o env_dataflash.o env_dataflash.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from env_dataflash.c:20:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o env_flash.o env_flash.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from env_flash.c:29:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
env_flash.c: In function 'saveenv':
env_flash.c:257:22: warning: pointer targets in initialization differ in signedness [-Wpointer-sign]
env_flash.c:255:8: warning: variable 'end_addr' set but not used [-Wunused-but-set-variable]
env_flash.c: In function 'env_get_char_spec':
env_flash.c:90:7: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
env_flash.c: In function 'env_init':
env_flash.c:235:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o env_eeprom.o env_eeprom.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from env_eeprom.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o env_nvram.o env_nvram.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from env_nvram.c:43:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o env_nowhere.o env_nowhere.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from env_nowhere.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o exports.o exports.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from exports.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
exports.c: In function 'jumptable_init':
exports.c:13:6: warning: optimization may eliminate reads and/or writes to register variables [-Wvolatile-register-var]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o fpga.o fpga.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from fpga.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o ft_build.o ft_build.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from ft_build.c:5:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o hush.o hush.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from hush.c:94:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o kgdb.o kgdb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from kgdb.c:90:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o lcd.o lcd.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from lcd.c:32:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o lists.o lists.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from lists.c:1:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o lynxkdi.o lynxkdi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from lynxkdi.c:16:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o memsize.o memsize.c
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o miiphybb.o miiphybb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from miiphybb.c:29:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o miiphyutil.o miiphyutil.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from miiphyutil.c:29:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o s_record.o s_record.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from s_record.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o serial.o serial.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from serial.c:24:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o soft_i2c.o soft_i2c.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from soft_i2c.c:28:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o soft_spi.o soft_spi.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from soft_spi.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o spartan2.o spartan2.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from spartan2.c:25:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o spartan3.o spartan3.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from spartan3.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usb.o usb.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from usb.c:47:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usb_kbd.o usb_kbd.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from usb_kbd.c:27:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o usb_storage.o usb_storage.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from usb_storage.c:53:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o virtex2.o virtex2.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from virtex2.c:31:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o xilinx.o xilinx.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from xilinx.c:30:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-gcc -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8              -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -Wall -Wstrict-prototypes -c -o cmd_onenand.o cmd_onenand.c
In file included from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/config.h:2:0,
                 from /home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/common.h:35,
                 from cmd_onenand.c:12:
/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include/configs/whgs.h:339:1: warning: multi-line comment [-Wcomment]
arm-xscale-linux-gnueabi-ar crv libcommon.a  main.o ACEX1K.o altera.o bedbug.o circbuf.o  cmd_ace.o cmd_autoscript.o  cmd_bdinfo.o cmd_bedbug.o cmd_bmp.o cmd_boot.o cmd_bootm.o  cmd_cache.o cmd_chggpio.o cmd_console.o  cmd_date.o cmd_dcr.o cmd_diag.o cmd_display.o cmd_doc.o cmd_dtt.o  cmd_eeprom.o cmd_elf.o cmd_ext2.o  cmd_fat.o cmd_fdc.o cmd_fdos.o cmd_flash.o cmd_fpga.o  cmd_i2c.o cmd_ide.o cmd_immap.o cmd_itest.o cmd_jffs2.o  cmd_load.o cmd_log.o  cmd_mem.o cmd_mii.o cmd_misc.o cmd_mmc.o  cmd_nand.o cmd_net.o cmd_nvedit.o  cmd_pxagpio.o cmd_pci.o cmd_pcmcia.o cmd_portio.o  cmd_reginfo.o cmd_reiser.o cmd_scsi.o cmd_spi.o cmd_universe.o  cmd_usb.o cmd_vfd.o  command.o console.o devices.o dlmalloc.o docecc.o  environment.o env_common.o  env_nand.o env_dataflash.o env_flash.o env_eeprom.o  env_nvram.o env_nowhere.o  exports.o  fpga.o ft_build.o  hush.o kgdb.o lcd.o lists.o lynxkdi.o  memsize.o miiphybb.o miiphyutil.o  s_record.o serial.o soft_i2c.o soft_spi.o spartan2.o spartan3.o  usb.o usb_kbd.o usb_storage.o  virtex2.o xilinx.o cmd_onenand.o
a - main.o
a - ACEX1K.o
a - altera.o
a - bedbug.o
a - circbuf.o
a - cmd_ace.o
a - cmd_autoscript.o
a - cmd_bdinfo.o
a - cmd_bedbug.o
a - cmd_bmp.o
a - cmd_boot.o
a - cmd_bootm.o
a - cmd_cache.o
a - cmd_chggpio.o
a - cmd_console.o
a - cmd_date.o
a - cmd_dcr.o
a - cmd_diag.o
a - cmd_display.o
a - cmd_doc.o
a - cmd_dtt.o
a - cmd_eeprom.o
a - cmd_elf.o
a - cmd_ext2.o
a - cmd_fat.o
a - cmd_fdc.o
a - cmd_fdos.o
a - cmd_flash.o
a - cmd_fpga.o
a - cmd_i2c.o
a - cmd_ide.o
a - cmd_immap.o
a - cmd_itest.o
a - cmd_jffs2.o
a - cmd_load.o
a - cmd_log.o
a - cmd_mem.o
a - cmd_mii.o
a - cmd_misc.o
a - cmd_mmc.o
a - cmd_nand.o
a - cmd_net.o
a - cmd_nvedit.o
a - cmd_pxagpio.o
a - cmd_pci.o
a - cmd_pcmcia.o
a - cmd_portio.o
a - cmd_reginfo.o
a - cmd_reiser.o
a - cmd_scsi.o
a - cmd_spi.o
a - cmd_universe.o
a - cmd_usb.o
a - cmd_vfd.o
a - command.o
a - console.o
a - devices.o
a - dlmalloc.o
a - docecc.o
a - environment.o
a - env_common.o
a - env_nand.o
a - env_dataflash.o
a - env_flash.o
a - env_eeprom.o
a - env_nvram.o
a - env_nowhere.o
a - exports.o
a - fpga.o
a - ft_build.o
a - hush.o
a - kgdb.o
a - lcd.o
a - lists.o
a - lynxkdi.o
a - memsize.o
a - miiphybb.o
a - miiphyutil.o
a - s_record.o
a - serial.o
a - soft_i2c.o
a - soft_spi.o
a - spartan2.o
a - spartan3.o
a - usb.o
a - usb_kbd.o
a - usb_storage.o
a - virtex2.o
a - xilinx.o
a - cmd_onenand.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/common'
UNDEF_SYM=`arm-xscale-linux-gnueabi-objdump -x lib_generic/libgeneric.a board/whgs/libwhgs.a cpu/pxa/libpxa.a lib_arm/libarm.a  net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a |sed  -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
        arm-xscale-linux-gnueabi-ld -Bstatic -T /home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs/u-boot.lds -Ttext 0x5c010000  $UNDEF_SYM cpu/pxa/start.o \
                --start-group lib_generic/libgeneric.a board/whgs/libwhgs.a cpu/pxa/libpxa.a lib_arm/libarm.a  net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a --end-group -L /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0 -lgcc \
                -Map u-boot.map -o u-boot
/home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/libgcc.a(_dvmd_lnx.o): In function `__aeabi_ldiv0':
/home/CLi/develop/crosstool-ng/crosstool-ng-1.18.0_build/.build/src/gcc-4.6.0/libgcc/../gcc/config/arm/lib1funcs.asm:1266: undefined reference to `raise'
Makefile:168: recipe for target `u-boot' failed
make: *** [u-boot] Error 1
 
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs

5.最后的错误:

make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/common’ UNDEF_SYM=`arm-xscale-linux-gnueabi-objdump -x lib_generic/libgeneric.a board/whgs/libwhgs.a cpu/pxa/libpxa.a lib_arm/libarm.a net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a |sed -n -e ‘s/.*\(__u_boot_cmd_.*\)/-u\1/p’|sort|uniq`;\ arm-xscale-linux-gnueabi-ld -Bstatic -T /home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs/u-boot.lds -Ttext 0x5c010000 $UNDEF_SYM cpu/pxa/start.o \ –start-group lib_generic/libgeneric.a board/whgs/libwhgs.a cpu/pxa/libpxa.a lib_arm/libarm.a net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a –end-group -L /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0 -lgcc \ -Map u-boot.map -o u-boot /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/libgcc.a(_dvmd_lnx.o): In function `__aeabi_ldiv0′: /home/CLi/develop/crosstool-ng/crosstool-ng-1.18.0_build/.build/src/gcc-4.6.0/libgcc/../gcc/config/arm/lib1funcs.asm:1266: undefined reference to `raise’ Makefile:168: recipe for target `u-boot’ failed make: *** [u-boot] Error 1

和之前:

【已解决】uboot交叉编译出错:gcc/config/arm/lib1funcs.asm:1266: undefined reference to `raise’

一样,所以去修改:

board/whgs/lowlevel_init.S

最后加上:

1
2
3
4
5
6
@add empty raise() to fix (when use new EABI xscale cross compiler to) compile
@error gcc/config/arm/lib1funcs.asm:1266: undefined reference to `raise'
.globl raise
raise:
    nop
    mov pc, lr

如图:

add raise for lowlevel_init S file

再重新编译就可以了:

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
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs
$ make
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make -C tools all
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/tools'
make -C post all
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make -C post/cpu all
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make -C `dirname lib_generic/libgeneric.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_generic'
make[1]: `libgeneric.a' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_generic'
make -C `dirname board/whgs/libwhgs.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
arm-xscale-linux-gnueabi-gcc -M -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale lowlevel_init.S whgs.c selftest.c ethernetselftest.c > .depend
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
arm-xscale-linux-gnueabi-gcc -Wa,-gstabs -D__ASSEMBLY__ -g  -Os   -fno-strict-aliasing  -fno-common -ffixed-r8           -D__KERNEL__ -DTEXT_BASE=0x5c010000             -I/home/CLi/develop/uboot/u-boot-1.1.4-whgs/include                                 -fno-builtin -ffreestanding -nostdinc -isystem  /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0/include -pipe  -DCONFIG_ARM -D__ARM__ -march=armv5 -mtune=xscale -c -o lowlevel_init.o /home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs/lowlevel_init.S
arm-xscale-linux-gnueabi-ar crv libwhgs.a whgs.o selftest.o ethernetselftest.o lowlevel_init.o
r - whgs.o
r - selftest.o
r - ethernetselftest.o
r - lowlevel_init.o
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs'
make -C `dirname cpu/pxa/libpxa.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/cpu/pxa'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/cpu/pxa'
make -C `dirname lib_arm/libarm.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm'
make[1]: `libarm.a' is up to date.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/lib_arm'
make -C `dirname net/libnet.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/net'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/net'
make -C `dirname disk/libdisk.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/disk'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/disk'
make -C `dirname rtc/librtc.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/rtc'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/rtc'
make -C `dirname dtt/libdtt.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/dtt'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/dtt'
make -C `dirname drivers/libdrivers.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers'
make -C `dirname drivers/sk98lin/libsk98lin.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers/sk98lin'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/drivers/sk98lin'
make -C `dirname post/libpost.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post'
make -C `dirname post/cpu/libcpu.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/post/cpu'
make -C `dirname common/libcommon.a`
make[1]: Entering directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/common'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/CLi/develop/uboot/u-boot-1.1.4-whgs/common'
UNDEF_SYM=`arm-xscale-linux-gnueabi-objdump -x lib_generic/libgeneric.a board/whgs/libwhgs.a cpu/pxa/libpxa.a lib_arm/libarm.a  net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a |sed  -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
        arm-xscale-linux-gnueabi-ld -Bstatic -T /home/CLi/develop/uboot/u-boot-1.1.4-whgs/board/whgs/u-boot.lds -Ttext 0x5c010000  $UNDEF_SYM cpu/pxa/start.o \
                --start-group lib_generic/libgeneric.a board/whgs/libwhgs.a cpu/pxa/libpxa.a lib_arm/libarm.a  net/libnet.a disk/libdisk.a rtc/librtc.a dtt/libdtt.a drivers/libdrivers.a drivers/sk98lin/libsk98lin.a post/libpost.a post/cpu/libcpu.a common/libcommon.a --end-group -L /home/CLi/develop/crosstool-ng/x-tools/arm-xscale-linux-gnueabi/lib/gcc/arm-xscale-linux-gnueabi/4.6.0 -lgcc \
                -Map u-boot.map -o u-boot
arm-xscale-linux-gnueabi-objcopy --gap-fill=0xff -O srec u-boot u-boot.srec
arm-xscale-linux-gnueabi-objcopy --gap-fill=0xff -O binary u-boot u-boot.bin
 
CLi@PC-CLI-1 ~/develop/uboot/u-boot-1.1.4-whgs
$

 

【总结】

在Cygwin下用arm-xscale-linux-gnueabi交叉编译uboot,也还是和之前:

【记录】Ubuntu下用arm-xscale-linux-gnueabi交叉编译uboot

是一样的。直接配置再编译即可。

转载请注明:在路上 » 【记录】Cygwin下用arm-xscale-linux-gnueabi交叉编译Uboot

与本文相关的文章

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
82 queries in 0.211 seconds, using 22.82MB memory