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
|
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure --disable-mcs51-port --disable-z80-port --disable-z180-port --disable-r2k-port --disable-r3ka-port --disable-gbz80-port --disable-tlcs90-port --disable-ez80_z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-s08-port --disable-pdk13-port --disable-pdk14-port --disable-pdk15-port --enable-pdk16-port --disable-ucsim --disable-device-lib --disable-packihx --disable-pdk16-port
## --------- ##
## Platform. ##
## --------- ##
hostname = xavier-asus
uname -m = x86_64
uname -r = 4.15.0-65-generic
uname -s = Linux
uname -v = #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /home/xavier/.cargo/bin
PATH: /home/xavier/.local/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /usr/local/games
PATH: /snap/bin
PATH: /usr/local/xtensa-esp32-elf/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2672: checking build system type
configure:2686: result: x86_64-pc-linux-gnu
configure:2706: checking host system type
configure:2719: result: x86_64-pc-linux-gnu
configure:2747: checking for gawk
configure:2763: found /usr/bin/gawk
configure:2774: result: gawk
configure:2786: checking version of the package
configure:2798: result: unknown using 0.0.0
configure:2897: checking for gcc
configure:2913: found /usr/bin/gcc
configure:2924: result: gcc
configure:3153: checking for C compiler version
configure:3162: gcc --version >&5
gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3173: $? = 0
configure:3162: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
configure:3173: $? = 0
configure:3162: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3173: $? = 1
configure:3162: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:3173: $? = 1
configure:3193: checking whether the C compiler works
configure:3215: gcc conftest.c >&5
configure:3219: $? = 0
configure:3267: result: yes
configure:3270: checking for C compiler default output file name
configure:3272: result: a.out
configure:3278: checking for suffix of executables
configure:3285: gcc -o conftest conftest.c >&5
configure:3289: $? = 0
configure:3311: result:
configure:3333: checking whether we are cross compiling
configure:3341: gcc -o conftest conftest.c >&5
configure:3345: $? = 0
configure:3352: ./conftest
configure:3356: $? = 0
configure:3371: result: no
configure:3376: checking for suffix of object files
configure:3398: gcc -c conftest.c >&5
configure:3402: $? = 0
configure:3423: result: o
configure:3427: checking whether we are using the GNU C compiler
configure:3446: gcc -c conftest.c >&5
configure:3446: $? = 0
configure:3455: result: yes
configure:3464: checking whether gcc accepts -g
configure:3484: gcc -c -g conftest.c >&5
configure:3484: $? = 0
configure:3525: result: yes
configure:3542: checking for gcc option to accept ISO C89
configure:3605: gcc -c -g -Og conftest.c >&5
configure:3605: $? = 0
configure:3618: result: none needed
configure:3643: checking how to run the C preprocessor
configure:3674: gcc -E conftest.c
configure:3674: $? = 0
configure:3688: gcc -E conftest.c
conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:3688: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3713: result: gcc -E
configure:3733: gcc -E conftest.c
configure:3733: $? = 0
configure:3747: gcc -E conftest.c
conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:3747: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3833: checking for g++
configure:3849: found /usr/bin/g++
configure:3860: result: g++
configure:3887: checking for C++ compiler version
configure:3896: g++ --version >&5
g++ (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3907: $? = 0
configure:3896: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
configure:3907: $? = 0
configure:3896: g++ -V >&5
g++: error: unrecognized command line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:3907: $? = 1
configure:3896: g++ -qversion >&5
g++: error: unrecognized command line option '-qversion'; did you mean '--version'?
g++: fatal error: no input files
compilation terminated.
configure:3907: $? = 1
configure:3911: checking whether we are using the GNU C++ compiler
configure:3930: g++ -c conftest.cpp >&5
configure:3930: $? = 0
configure:3939: result: yes
configure:3948: checking whether g++ accepts -g
configure:3968: g++ -c -g conftest.cpp >&5
configure:3968: $? = 0
configure:4009: result: yes
configure:4046: checking for a BSD-compatible install
configure:4114: result: /usr/bin/install -c
configure:4168: checking for ranlib
configure:4184: found /usr/bin/ranlib
configure:4195: result: ranlib
configure:4219: checking for autoconf
configure:4235: found /usr/bin/autoconf
configure:4247: result: autoconf
configure:4257: checking for strip
configure:4273: found /usr/bin/strip
configure:4285: result: strip
configure:4295: checking for as
configure:4311: found /usr/bin/as
configure:4323: result: as
configure:4333: checking for cp
configure:4349: found /bin/cp
configure:4361: result: cp
configure:4371: checking for ar
configure:4387: found /usr/bin/ar
configure:4399: result: ar
configure:4409: checking for gm4
configure:4437: result: m4
configure:4450: checking for flex
configure:4466: found /usr/bin/flex
configure:4477: result: flex
configure:4494: checking for bison
configure:4510: found /usr/bin/bison
configure:4521: result: bison -y
configure:4538: checking for python3.6
configure:4554: found /usr/bin/python3.6
configure:4565: result: python3.6
configure:4598: checking for grep that handles long lines and -e
configure:4656: result: /bin/grep
configure:4661: checking for egrep
configure:4723: result: /bin/grep -E
configure:4728: checking for ANSI C header files
configure:4748: gcc -c -g -Og conftest.c >&5
configure:4748: $? = 0
configure:4821: gcc -o conftest -g -Og conftest.c >&5
configure:4821: $? = 0
configure:4821: ./conftest
configure:4821: $? = 0
configure:4832: result: yes
configure:4845: checking for sys/types.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for sys/stat.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for stdlib.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for string.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for memory.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for strings.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for inttypes.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for stdint.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4845: checking for unistd.h
configure:4845: gcc -c -g -Og conftest.c >&5
configure:4845: $? = 0
configure:4845: result: yes
configure:4860: checking endian.h usability
configure:4860: gcc -c -g -Og conftest.c >&5
configure:4860: $? = 0
configure:4860: result: yes
configure:4860: checking endian.h presence
configure:4860: gcc -E conftest.c
configure:4860: $? = 0
configure:4860: result: yes
configure:4860: checking for endian.h
configure:4860: result: yes
configure:4860: checking sys/endian.h usability
configure:4860: gcc -c -g -Og conftest.c >&5
conftest.c:57:10: fatal error: sys/endian.h: No such file or directory
#include <sys/endian.h>
^~~~~~~~~~~~~~
compilation terminated.
configure:4860: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/endian.h>
configure:4860: result: no
configure:4860: checking sys/endian.h presence
configure:4860: gcc -E conftest.c
conftest.c:24:10: fatal error: sys/endian.h: No such file or directory
#include <sys/endian.h>
^~~~~~~~~~~~~~
compilation terminated.
configure:4860: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <sys/endian.h>
configure:4860: result: no
configure:4860: checking for sys/endian.h
configure:4860: result: no
configure:4860: checking machine/endian.h usability
configure:4860: gcc -c -g -Og conftest.c >&5
conftest.c:57:10: fatal error: machine/endian.h: No such file or directory
#include <machine/endian.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4860: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <machine/endian.h>
configure:4860: result: no
configure:4860: checking machine/endian.h presence
configure:4860: gcc -E conftest.c
conftest.c:24:10: fatal error: machine/endian.h: No such file or directory
#include <machine/endian.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4860: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <machine/endian.h>
configure:4860: result: no
configure:4860: checking for machine/endian.h
configure:4860: result: no
configure:4860: checking sys/isa_defs.h usability
configure:4860: gcc -c -g -Og conftest.c >&5
conftest.c:57:10: fatal error: sys/isa_defs.h: No such file or directory
#include <sys/isa_defs.h>
^~~~~~~~~~~~~~~~
compilation terminated.
configure:4860: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/isa_defs.h>
configure:4860: result: no
configure:4860: checking sys/isa_defs.h presence
configure:4860: gcc -E conftest.c
conftest.c:24:10: fatal error: sys/isa_defs.h: No such file or directory
#include <sys/isa_defs.h>
^~~~~~~~~~~~~~~~
compilation terminated.
configure:4860: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <sys/isa_defs.h>
configure:4860: result: no
configure:4860: checking for sys/isa_defs.h
configure:4860: result: no
configure:4882: checking how to run the C++ preprocessor
configure:4909: g++ -E conftest.cpp
configure:4909: $? = 0
configure:4923: g++ -E conftest.cpp
conftest.cpp:24:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4923: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4948: result: g++ -E
configure:4968: g++ -E conftest.cpp
configure:4968: $? = 0
configure:4982: g++ -E conftest.cpp
conftest.cpp:24:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4982: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5013: checking treedec/combinations.hpp usability
configure:5013: g++ -c -g -Og conftest.cpp >&5
conftest.cpp:57:10: fatal error: treedec/combinations.hpp: No such file or directory
#include <treedec/combinations.hpp>
^~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:5013: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <treedec/combinations.hpp>
configure:5013: result: no
configure:5013: checking treedec/combinations.hpp presence
configure:5013: g++ -E conftest.cpp
conftest.cpp:24:10: fatal error: treedec/combinations.hpp: No such file or directory
#include <treedec/combinations.hpp>
^~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:5013: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <treedec/combinations.hpp>
configure:5013: result: no
configure:5013: checking for treedec/combinations.hpp
configure:5013: result: no
configure:5020: treedec library missing, falling back to Thorup.
configure:5028: checking gala/graph.h usability
configure:5028: g++ -c -g -Og conftest.cpp >&5
conftest.cpp:57:10: fatal error: gala/graph.h: No such file or directory
#include <gala/graph.h>
^~~~~~~~~~~~~~
compilation terminated.
configure:5028: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gala/graph.h>
configure:5028: result: no
configure:5028: checking gala/graph.h presence
configure:5028: g++ -E conftest.cpp
conftest.cpp:24:10: fatal error: gala/graph.h: No such file or directory
#include <gala/graph.h>
^~~~~~~~~~~~~~
compilation terminated.
configure:5028: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h. */
| #include <gala/graph.h>
configure:5028: result: no
configure:5028: checking for gala/graph.h
configure:5028: result: no
configure:5040: checking boost/graph/adjacency_list.hpp usability
configure:5040: g++ -c -g -Og conftest.cpp >&5
configure:5040: $? = 0
configure:5040: result: yes
configure:5040: checking boost/graph/adjacency_list.hpp presence
configure:5040: g++ -E conftest.cpp
configure:5040: $? = 0
configure:5040: result: yes
configure:5040: checking for boost/graph/adjacency_list.hpp
configure:5040: result: yes
configure:5068: checking for ccache
configure:5084: found /usr/bin/ccache
configure:5095: result: ccache
configure:5114: checking for strerror
configure:5114: gcc -o conftest -g -Og conftest.c >&5
configure:5114: $? = 0
configure:5114: result: yes
configure:5114: checking for mkstemp
configure:5114: gcc -o conftest -g -Og conftest.c >&5
configure:5114: $? = 0
configure:5114: result: yes
configure:5114: checking for strndup
configure:5114: gcc -o conftest -g -Og conftest.c >&5
conftest.c:50:6: warning: conflicting types for built-in function 'strndup' [-Wbuiltin-declaration-mismatch]
char strndup ();
^~~~~~~
configure:5114: $? = 0
configure:5114: result: yes
configure:5114: checking for setrlimit
configure:5114: gcc -o conftest -g -Og conftest.c >&5
configure:5114: $? = 0
configure:5114: result: yes
configure:5114: checking for backtrace_symbols_fd
configure:5114: gcc -o conftest -g -Og conftest.c >&5
configure:5114: $? = 0
configure:5114: result: yes
configure:5217: checking whether g++ supports C++11 features by default
configure:5511: g++ -c -g -Og conftest.cpp >&5
configure:5511: $? = 0
configure:5518: result: yes
configure:6199: checking whether preprocessor accepts -MM or -M
Using built-in specs.
COLLECT_GCC=gcc
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/cc1 -E -quiet -v -imultiarch x86_64-linux-gnu -MM _test_.c -mtune=generic -march=x86-64 -fstack-protector-strong -Wformat -Wformat-security
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-linux-gnu/7/include
/usr/local/include
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
_test_.o: _test_.c
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-mtune=generic' '-march=x86-64'
configure:6214: result: -MM
configure:6221: checking whether C accepts -ggdb
configure:6241: gcc -c -ggdb conftest.c >&5
configure:6241: $? = 0
configure:6250: result: yes
configure:6262: checking whether C accepts -pipe
configure:6282: gcc -c -pipe conftest.c >&5
configure:6282: $? = 0
configure:6291: result: yes
configure:6354: checking for gcc option to accept ISO C99
configure:6503: gcc -c -pipe -ggdb -g -Og conftest.c >&5
configure:6503: $? = 0
configure:6516: result: none needed
configure:6537: checking return type of signal handlers
configure:6555: gcc -c -pipe -ggdb -g -Og conftest.c >&5
conftest.c: In function 'main':
conftest.c:37:10: error: void value not ignored as it ought to be
return *(signal (0, 0)) (0) == 1;
~^~~~~~~~~~~~~~~~~~
configure:6555: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1
| #define HAVE_STRERROR 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRNDUP 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_BACKTRACE_SYMBOLS_FD 1
| #define HAVE_CXX11 1
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <signal.h>
|
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
| ;
| return 0;
| }
configure:6562: result: void
configure:6575: checking size of char
configure:6580: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5
configure:6580: $? = 0
configure:6580: ./conftest
configure:6580: $? = 0
configure:6594: result: 1
configure:6608: checking size of short
configure:6613: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5
configure:6613: $? = 0
configure:6613: ./conftest
configure:6613: $? = 0
configure:6627: result: 2
configure:6641: checking size of int
configure:6646: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5
configure:6646: $? = 0
configure:6646: ./conftest
configure:6646: $? = 0
configure:6660: result: 4
configure:6674: checking size of long
configure:6679: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5
configure:6679: $? = 0
configure:6679: ./conftest
configure:6679: $? = 0
configure:6693: result: 8
configure:6707: checking size of long long
configure:6712: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5
configure:6712: $? = 0
configure:6712: ./conftest
configure:6712: $? = 0
configure:6726: result: 8
configure:6736: checking whether char is unsigned
configure:6755: gcc -c -pipe -ggdb -g -Og conftest.c >&5
configure:6755: $? = 0
configure:6762: result: no
configure:6795: checking type name for byte
configure:6803: result: char
configure:6805: checking type name for word
configure:6808: result: short
configure:6810: checking type name for dword
configure:6813: result: int
configure:6815: checking type name for qword
configure:6818: result: long
configure:6870: checking whether byte ordering is bigendian
configure:6885: gcc -c -pipe -ggdb -g -Og conftest.c >&5
conftest.c:46:9: error: unknown type name 'not'
not a universal capable compiler
^~~
conftest.c:46:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
not a universal capable compiler
^~~~~~~~~
conftest.c:46:15: error: unknown type name 'universal'
configure:6885: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1
| #define HAVE_STRERROR 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRNDUP 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_BACKTRACE_SYMBOLS_FD 1
| #define HAVE_CXX11 1
| #define RETSIGTYPE void
| #define SIZEOF_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 8
| #define SIZEOF_LONG_LONG 8
| #define TYPE_BYTE char
| #define TYPE_WORD short
| #define TYPE_DWORD int
| #define TYPE_QWORD long
| #define TYPE_UBYTE unsigned char
| #define TYPE_UWORD unsigned short
| #define TYPE_UDWORD unsigned int
| #define TYPE_UQWORD unsigned long
| /* end confdefs.h. */
| #ifndef __APPLE_CC__
| not a universal capable compiler
| #endif
| typedef int dummy;
|
configure:6930: gcc -c -pipe -ggdb -g -Og conftest.c >&5
configure:6930: $? = 0
configure:6948: gcc -c -pipe -ggdb -g -Og conftest.c >&5
conftest.c: In function 'main':
conftest.c:52:4: error: unknown type name 'not'; did you mean 'ino_t'?
not big endian
^~~
ino_t
conftest.c:52:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
not big endian
^~~~~~
configure:6948: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define SDCC_VERSION_LO 0
| #define SDCC_VERSION_HI 0
| #define SDCC_VERSION_P 0
| #define SDCC_VERSION_STR "0.0.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1
| #define HAVE_STRERROR 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRNDUP 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_BACKTRACE_SYMBOLS_FD 1
| #define HAVE_CXX11 1
| #define RETSIGTYPE void
| #define SIZEOF_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 8
| #define SIZEOF_LONG_LONG 8
| #define TYPE_BYTE char
| #define TYPE_WORD short
| #define TYPE_DWORD int
| #define TYPE_QWORD long
| #define TYPE_UBYTE unsigned char
| #define TYPE_UWORD unsigned short
| #define TYPE_UDWORD unsigned int
| #define TYPE_UQWORD unsigned long
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:7076: result: no
configure:8486: checking for lyx
configure:8502: found /usr/bin/lyx
configure:8514: result: lyx
configure:8524: checking for latex2html
configure:8552: result: :
configure:8562: checking for latex
configure:8578: found /usr/bin/latex
configure:8590: result: latex
configure:8600: checking for dvipdfm
configure:8616: found /usr/bin/dvipdfm
configure:8628: result: dvipdfm
configure:8638: checking for pdflatex
configure:8654: found /usr/bin/pdflatex
configure:8666: result: pdflatex
configure:8676: checking for makeindex
configure:8692: found /usr/bin/makeindex
configure:8704: result: makeindex
configure:9072: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by config.status, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on xavier-asus
config.status:1014: creating doc/Makefile
config.status:1014: creating src/ds390/Makefile
config.status:1014: creating sdas/as8xcxxx/Makefile
config.status:1014: creating src/stm8/Makefile
config.status:1014: creating sdas/asstm8/Makefile
config.status:1014: creating main.mk
config.status:1014: creating src/Makefile
config.status:1014: creating device/include/Makefile
config.status:1014: creating sdas/linksrc/Makefile
config.status:1014: creating support/makebin/Makefile
config.status:1014: creating support/regression/Makefile
config.status:1014: creating support/valdiag/Makefile
config.status:1014: creating support/scripts/Makefile
config.status:1014: creating support/regression/ports/host/spec.mk
config.status:1014: creating Makefile
config.status:1014: creating Makefile.common
config.status:1014: creating device/non-free/include/Makefile
config.status:1014: creating sdccconf.h
config.status:1014: creating sdas/linksrc/asxxxx_config.h
config.status:1189: sdas/linksrc/asxxxx_config.h is unchanged
configure:10359: === configuring in support/cpp (/home/xavier/sdcc_gas/support/cpp)
configure:10422: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' 'docdir=${datarootdir}/doc/${PACKAGE}' --cache-file=/dev/null --srcdir=.
configure:10359: === configuring in debugger/mcs51 (/home/xavier/sdcc_gas/debugger/mcs51)
configure:10422: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' 'docdir=${datarootdir}/doc/${PACKAGE}' --cache-file=/dev/null --srcdir=.
configure:10359: === configuring in support/sdbinutils (/home/xavier/sdcc_gas/support/sdbinutils)
configure:10422: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' 'docdir=${datarootdir}/doc/${PACKAGE}' --cache-file=/dev/null --srcdir=.
configure:10734: result:
sdcc 0.0.0 is now configured for
Build: x86_64-pc-linux-gnu
Host: x86_64-pc-linux-gnu
Source directory: .
Yacc: bison -y
C compiler: gcc
CFLAGS: -pipe -ggdb -g -Og
C++ compiler: g++
CXXFLAGS: -pipe -ggdb -g -Og
CPPFLAGS:
LDFLAGS:
MAKEDEP: g++ -MM
ENABLED Ports:
ds390 no
ds400 no
hc08 no
s08 no
mcs51 no
pic14 no
pic16 no
z80 no
z180 no
r2k no
r3ka no
gbz80 no
tlcs90 no
ez80_z80 no
stm8 yes
pdk13 no
pdk14 no
pdk15 no
pdk16 no
Disable non-free lib: 0
Disable packihx: 1
Disable ucsim: 1
Disable device lib: 1
Disable sdcpp: 0
Disable sdcdb: 0
Disable sdbinutil: 0
Enable documentation: 0
Enable libgc: 0
Install paths:
binary files: ${prefix}
include/library files: ${datarootdir}/sdcc
include files: ${datarootdir}/sdcc/include
library files: ${datarootdir}/sdcc/lib
non-free files: ${datarootdir}/sdcc/non-free
non-free include files: ${datarootdir}/sdcc/non-free/include
non-free library files: ${datarootdir}/sdcc/non-free/lib
documentation: ${datarootdir}/doc/${PACKAGE}
prefix: /usr/local
datadir: ${datarootdir}
datarootdir: ${prefix}/share
Search paths (incomplete, see manual for all search paths):
binary files: $SDCC_HOME/bin
include files: /share/sdcc/include
path(argv[0])/../share/sdcc/include
/usr/local/share/sdcc/include
/share/sdcc/non-free/include
path(argv[0])/../share/sdcc/non-free/include
/usr/local/share/sdcc/non-free/include
library files: $SDCC_HOME/share/sdcc/lib/<model>
path(argv[0])/../share/sdcc/lib/<model>
/usr/local/share/sdcc/lib/<model>
$SDCC_HOME/share/sdcc/non-free/lib/<model>
path(argv[0])/../share/sdcc/non-free/lib/<model>
/usr/local/share/sdcc/non-free/lib/<model>
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_char_unsigned=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LIB_TYPE_set=
ac_cv_env_LIB_TYPE_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_docdir_set=set
ac_cv_env_docdir_value='${datarootdir}/doc/${PACKAGE}'
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_inclib_dir_suffix_set=
ac_cv_env_inclib_dir_suffix_value=
ac_cv_env_include_dir_suffix_set=
ac_cv_env_include_dir_suffix_value=
ac_cv_env_lib_dir_suffix_set=
ac_cv_env_lib_dir_suffix_value=
ac_cv_env_non_free_inclib_dir_suffix_set=
ac_cv_env_non_free_inclib_dir_suffix_value=
ac_cv_env_non_free_include_dir_suffix_set=
ac_cv_env_non_free_include_dir_suffix_value=
ac_cv_env_non_free_lib_dir_suffix_set=
ac_cv_env_non_free_lib_dir_suffix_value=
ac_cv_env_sdccconf_h_dir_separator_set=
ac_cv_env_sdccconf_h_dir_separator_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_backtrace_symbols_fd=yes
ac_cv_func_mkstemp=yes
ac_cv_func_setrlimit=yes
ac_cv_func_strerror=yes
ac_cv_func_strndup=yes
ac_cv_header_boost_graph_adjacency_list_hpp=yes
ac_cv_header_endian_h=yes
ac_cv_header_gala_graph_h=no
ac_cv_header_inttypes_h=yes
ac_cv_header_machine_endian_h=no
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_endian_h=no
ac_cv_header_sys_isa_defs_h=no
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_treedec_combinations_hpp=no
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AR=ar
ac_cv_prog_AS=as
ac_cv_prog_AUTOCONF=autoconf
ac_cv_prog_AWK=gawk
ac_cv_prog_CCACHE=ccache
ac_cv_prog_CP=cp
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_DVIPDFM=dvipdfm
ac_cv_prog_LATEX2HTML=:
ac_cv_prog_LATEX=latex
ac_cv_prog_LEX=flex
ac_cv_prog_LYX=lyx
ac_cv_prog_M4=m4
ac_cv_prog_MAKEINDEX=makeindex
ac_cv_prog_PDFLATEX=pdflatex
ac_cv_prog_PYTHON=python3.6
ac_cv_prog_STRIP=strip
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_c99=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_sizeof_char=1
ac_cv_sizeof_int=4
ac_cv_sizeof_long=8
ac_cv_sizeof_long_long=8
ac_cv_sizeof_short=2
ac_cv_type_signal=void
ax_cv_cxx_compile_cxx11=yes
sdcc_cv_MM=-MM
sdcc_cv_c_ggdb=yes
sdcc_cv_c_pipe=yes
sdcc_cv_version=0.0.0
sdcc_cv_versionhi=0
sdcc_cv_versionlo=0
sdcc_cv_versionp=0
## ----------------- ##
## Output variables. ##
## ----------------- ##
AR='ar'
AS='as'
AUTOCONF='autoconf'
AWK='gawk'
C99_FLAG='--std=c99'
CC='gcc'
CCACHE='ccache'
CFLAGS=' -pipe -ggdb -g -Og'
CP='cp'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXFLAGS='-pipe -ggdb -g -Og'
DEFS='-DHAVE_CONFIG_H'
DVIPDFM='dvipdfm'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
GREP='/bin/grep'
HAVE_CXX11='1'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LATEX2HTML=':'
LATEX='latex'
LDFLAGS=''
LEX='flex'
LIBOBJS=''
LIBS=''
LIB_TYPE='RANLIB'
LTLIBOBJS=''
LYX='lyx'
M4='m4'
MAKEDEP='g++ -MM'
MAKEINDEX='makeindex'
OBJEXT='o'
OPT_DISABLE_AVR='1'
OPT_DISABLE_DEVICE_LIB='1'
OPT_DISABLE_DS390='1'
OPT_DISABLE_DS400='1'
OPT_DISABLE_EZ80_Z80='1'
OPT_DISABLE_GBZ80='1'
OPT_DISABLE_HC08='1'
OPT_DISABLE_MCS51='1'
OPT_DISABLE_NON_FREE='0'
OPT_DISABLE_PACKIHX='1'
OPT_DISABLE_PDK13='1'
OPT_DISABLE_PDK14='1'
OPT_DISABLE_PDK15='1'
OPT_DISABLE_PDK16='1'
OPT_DISABLE_PIC14='1'
OPT_DISABLE_PIC16='1'
OPT_DISABLE_R2K='1'
OPT_DISABLE_R3KA='1'
OPT_DISABLE_S08='1'
OPT_DISABLE_SDBINUTILS='0'
OPT_DISABLE_SDCDB='0'
OPT_DISABLE_SDCPP='0'
OPT_DISABLE_STM8='0'
OPT_DISABLE_TLCS90='1'
OPT_DISABLE_UCSIM='1'
OPT_DISABLE_Z180='1'
OPT_DISABLE_Z80='1'
OPT_ENABLE_DOC='0'
OPT_ENABLE_LIBGC='0'
PACKAGE='sdcc'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_URL=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PDFLATEX='pdflatex'
PYTHON='python3.6'
RANLIB='ranlib'
SHELL='/bin/bash'
STRIP='strip'
VERSION='0.0.0'
VERSIONHI='0'
VERSIONLO='0'
VERSIONP='0'
WALL_FLAG='-Wall -Wno-parentheses'
YACC='bison -y'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-pc-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
inclib_dir_suffix='sdcc'
include_dir_suffix='sdcc/include'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
lib_dir_suffix='sdcc/lib'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
non_free_inclib_dir_suffix='sdcc/non-free'
non_free_include_dir_suffix='sdcc/non-free/include'
non_free_lib_dir_suffix='sdcc/non-free/lib'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
runstatedir='${localstatedir}/run'
sbindir='${exec_prefix}/sbin'
sdccconf_h_dir_separator='/'
sharedstatedir='${prefix}/com'
subdirs=' support/cpp debugger/mcs51 support/sdbinutils'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define SDCC_VERSION_LO 0
#define SDCC_VERSION_HI 0
#define SDCC_VERSION_P 0
#define SDCC_VERSION_STR "0.0.0"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_ENDIAN_H 1
#define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1
#define HAVE_STRERROR 1
#define HAVE_MKSTEMP 1
#define HAVE_STRNDUP 1
#define HAVE_SETRLIMIT 1
#define HAVE_BACKTRACE_SYMBOLS_FD 1
#define HAVE_CXX11 1
#define RETSIGTYPE void
#define SIZEOF_CHAR 1
#define SIZEOF_SHORT 2
#define SIZEOF_INT 4
#define SIZEOF_LONG 8
#define SIZEOF_LONG_LONG 8
#define TYPE_BYTE char
#define TYPE_WORD short
#define TYPE_DWORD int
#define TYPE_QWORD long
#define TYPE_UBYTE unsigned char
#define TYPE_UWORD unsigned short
#define TYPE_UDWORD unsigned int
#define TYPE_UQWORD unsigned long
#define DIR_SEPARATOR_STRING "/"
#define DIR_SEPARATOR_CHAR '/'
#define PREFIX "/usr/local"
#define EXEC_PREFIX "/usr/local"
#define BINDIR "/usr/local/bin"
#define DATADIR "/usr/local/share"
#define INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/include"
#define NON_FREE_INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/non-free/include"
#define LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/lib"
#define NON_FREE_LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/non-free/lib"
#define BIN2DATA_DIR DIR_SEPARATOR_STRING "../share"
#define PREFIX2BIN_DIR DIR_SEPARATOR_STRING "bin"
#define PREFIX2DATA_DIR DIR_SEPARATOR_STRING "share"
#define STD_LIB "libsdcc"
#define STD_INT_LIB "libint"
#define STD_LONG_LIB "liblong"
#define STD_FP_LIB "libfloat"
#define STD_DS390_LIB "libds390"
#define STD_DS400_LIB "libds400"
#define SDCC_DIR_NAME "SDCC_HOME"
#define SDCC_INCLUDE_NAME "SDCC_INCLUDE"
#define SDCC_LIB_NAME "SDCC_LIB"
#define OPT_DISABLE_MCS51 1
#define OPT_DISABLE_Z80 1
#define OPT_DISABLE_Z180 1
#define OPT_DISABLE_R2K 1
#define OPT_DISABLE_R3KA 1
#define OPT_DISABLE_GBZ80 1
#define OPT_DISABLE_TLCS90 1
#define OPT_DISABLE_EZ80_Z80 1
#define OPT_DISABLE_DS390 1
#define OPT_DISABLE_TININative 1
#define OPT_DISABLE_DS400 1
#define OPT_DISABLE_PIC14 1
#define OPT_DISABLE_PIC16 1
#define OPT_DISABLE_HC08 1
#define OPT_DISABLE_S08 1
#define OPT_DISABLE_STM8 0
#define OPT_DISABLE_PDK13 1
#define OPT_DISABLE_PDK14 1
#define OPT_DISABLE_PDK15 1
#define OPT_DISABLE_PDK16 1
#define OPT_DISABLE_AVR 1
#define OPT_DISABLE_UCSIM 1
#define OPT_DISABLE_DEVICE_LIB 1
#define OPT_DISABLE_PACKIHX 1
#define OPT_DISABLE_SDCPP 0
#define OPT_DISABLE_SDCDB 0
#define OPT_DISABLE_SDBINUTILS 0
#define OPT_DISABLE_NON_FREE 0
#define OPT_ENABLE_DOC 0
#define OPT_ENABLE_LIBGC 0
configure: exit 0
|