forked from ddxter/gecode-dexter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.log
More file actions
1230 lines (1201 loc) · 46.4 KB
/
config.log
File metadata and controls
1230 lines (1201 loc) · 46.4 KB
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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by GECODE configure 6.3.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure
## --------- ##
## Platform. ##
## --------- ##
hostname = Dexter
uname -m = x86_64
uname -r = 5.15.146.1-microsoft-standard-WSL2
uname -s = Linux
uname -v = #1 SMP Thu Jan 11 04:09:03 UTC 2024
/usr/bin/uname -p = x86_64
/bin/uname -X = unknown
/bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /snap/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2776: checking for the host operating system
configure:2786: result: Linux
configure:2867: checking for g++
configure:2883: found /usr/bin/g++
configure:2894: result: g++
configure:2921: checking for C++ compiler version
configure:2930: g++ --version >&5
g++ (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Copyright (C) 2021 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:2941: $? = 0
configure:2930: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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 --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
... rest of stderr output deleted ...
configure:2941: $? = 0
configure:2930: g++ -V >&5
g++: error: unrecognized command-line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:2941: $? = 1
configure:2930: g++ -qversion >&5
g++: error: unrecognized command-line option '-qversion'; did you mean '--version'?
g++: fatal error: no input files
compilation terminated.
configure:2941: $? = 1
configure:2961: checking whether the C++ compiler works
configure:2983: g++ conftest.cpp >&5
configure:2987: $? = 0
configure:3035: result: yes
configure:3038: checking for C++ compiler default output file name
configure:3040: result: a.out
configure:3046: checking for suffix of executables
configure:3053: g++ -o conftest conftest.cpp >&5
configure:3057: $? = 0
configure:3079: result:
configure:3101: checking whether we are cross compiling
configure:3109: g++ -o conftest conftest.cpp >&5
configure:3113: $? = 0
configure:3120: ./conftest
configure:3124: $? = 0
configure:3139: result: no
configure:3144: checking for suffix of object files
configure:3166: g++ -c conftest.cpp >&5
configure:3170: $? = 0
configure:3191: result: o
configure:3195: checking whether we are using the GNU C++ compiler
configure:3214: g++ -c conftest.cpp >&5
configure:3214: $? = 0
configure:3223: result: yes
configure:3232: checking whether g++ accepts -g
configure:3252: g++ -c -g conftest.cpp >&5
configure:3252: $? = 0
configure:3293: result: yes
configure:3364: checking for gcc
configure:3380: found /usr/bin/gcc
configure:3391: result: gcc
configure:3620: checking for C compiler version
configure:3629: gcc --version >&5
gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Copyright (C) 2021 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:3640: $? = 0
configure:3629: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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 --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
... rest of stderr output deleted ...
configure:3640: $? = 0
configure:3629: gcc -V >&5
gcc: error: unrecognized command-line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3640: $? = 1
configure:3629: gcc -qversion >&5
gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:3640: $? = 1
configure:3644: checking whether we are using the GNU C compiler
configure:3663: gcc -c conftest.c >&5
configure:3663: $? = 0
configure:3672: result: yes
configure:3681: checking whether gcc accepts -g
configure:3701: gcc -c -g conftest.c >&5
configure:3701: $? = 0
configure:3742: result: yes
configure:3759: checking for gcc option to accept ISO C89
configure:3822: gcc -c conftest.c >&5
configure:3822: $? = 0
configure:3835: result: none needed
configure:3905: checking for ranlib
configure:3921: found /usr/bin/ranlib
configure:3932: result: ranlib
configure:3957: checking for diff
configure:3973: found /usr/bin/diff
configure:3984: result: ok
configure:3997: checking for tar
configure:4013: found /usr/bin/tar
configure:4024: result: ok
configure:4037: checking for make
configure:4053: found /usr/bin/make
configure:4064: result: ok
configure:4077: checking for sed
configure:4093: found /usr/bin/sed
configure:4104: result: ok
configure:4117: checking for perl
configure:4133: found /usr/bin/perl
configure:4144: result: ok
configure:4176: checking how to run the C++ preprocessor
configure:4203: g++ -E conftest.cpp
configure:4203: $? = 0
configure:4217: g++ -E conftest.cpp
conftest.cpp:9:10: fatal error: ac_nonexistent.h: No such file or directory
9 | #include <ac_nonexistent.h>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4217: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4242: result: g++ -E
configure:4262: g++ -E conftest.cpp
configure:4262: $? = 0
configure:4276: g++ -E conftest.cpp
conftest.cpp:9:10: fatal error: ac_nonexistent.h: No such file or directory
9 | #include <ac_nonexistent.h>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4276: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4337: g++ -c conftest.cpp >&5
configure:4337: $? = 0
configure:4552: gcc -c conftest.c >&5
configure:4552: $? = 0
configure:4586: g++ -c conftest.cpp >&5
configure:4586: $? = 0
configure:4653: checking for rc.exe
configure:4683: result: no
configure:4688: checking whether to build with Visual Studio resource files
configure:4708: result: no
configure:4980: checking Whether to build for different architectures
configure:5110: result: no
configure:5122: checking for user-defined library name prefix
configure:5130: result: no
configure:5144: checking for user-defined library name suffix
configure:5156: result: no
configure:5200: checking whether to build static libraries
configure:5215: result: no
configure:5223: checking whether to build shared libraries
configure:5228: result: yes
configure:5246: checking whether to build with debug symbols and assertions
configure:5258: result: no
configure:5265: checking for grep that handles long lines and -e
configure:5323: result: /usr/bin/grep
configure:5328: checking for egrep
configure:5390: result: /usr/bin/grep -E
configure:5395: checking for ANSI C header files
configure:5415: g++ -c -DNDEBUG conftest.cpp >&5
configure:5415: $? = 0
configure:5488: g++ -o conftest -DNDEBUG conftest.cpp >&5
configure:5488: $? = 0
configure:5488: ./conftest
configure:5488: $? = 0
configure:5499: result: yes
configure:5512: checking for sys/types.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for sys/stat.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for stdlib.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for string.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for memory.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for strings.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for inttypes.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for stdint.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5512: checking for unistd.h
configure:5512: g++ -c -DNDEBUG conftest.cpp >&5
configure:5512: $? = 0
configure:5512: result: yes
configure:5638: checking whether to build with peak heap size tracking
configure:5640: result: no
configure:5649: checking whether to optimize for code size
configure:5667: result: no
configure:5678: checking whether to build with support for finding memory leaks
configure:5694: result: no
configure:5703: checking whether to build with default memory allocator
configure:5709: result: yes
configure:5721: checking whether to build with auditing code
configure:5730: result: no
configure:5739: checking whether to build with profiling information
configure:6150: result: no
configure:6159: checking whether to build with gcov support
configure:6395: result: no
configure:6409: checking size of int
configure:6414: gcc -o conftest -DNDEBUG conftest.c >&5
configure:6414: $? = 0
configure:6414: ./conftest
configure:6414: $? = 0
configure:6428: result: 4
configure:6438: checking if int has at least 32 bit
configure:6456: gcc -c -DNDEBUG conftest.c >&5
configure:6456: $? = 0
configure:6457: result: yes
configure:6464: checking if doubles have a big enough mantissa
configure:6482: gcc -c -DNDEBUG conftest.c >&5
configure:6482: $? = 0
configure:6483: result: yes
configure:6503: checking whether to build with multi-threading support
configure:6506: result: yes
configure:6520: checking whether to use unfair mutexes on macOS
configure:6530: result: no
configure:6707: checking whether g++ accepts -fPIC
configure:6728: g++ -c -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:6728: $? = 0
configure:6736: result: yes
configure:6756: checking whether gcc accepts -fPIC
configure:6777: gcc -c -fPIC -DNDEBUG -Werror conftest.c >&5
configure:6777: $? = 0
configure:6785: result: yes
configure:6821: checking whether g++ accepts -Wextra
configure:6842: g++ -c -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:6842: $? = 0
configure:6850: result: yes
configure:6870: checking whether gcc accepts -Wextra
configure:6891: gcc -c -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:6891: $? = 0
configure:6899: result: yes
configure:6935: checking whether g++ accepts -Wall
configure:6956: g++ -c -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:6956: $? = 0
configure:6964: result: yes
configure:6984: checking whether gcc accepts -Wall
configure:7005: gcc -c -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:7005: $? = 0
configure:7013: result: yes
configure:7049: checking whether g++ accepts -Wno-unknown-pragmas
configure:7070: g++ -c -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:7070: $? = 0
configure:7078: result: yes
configure:7098: checking whether gcc accepts -Wno-unknown-pragmas
configure:7119: gcc -c -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:7119: $? = 0
configure:7127: result: yes
configure:7163: checking whether g++ accepts -pipe
configure:7184: g++ -c -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:7184: $? = 0
configure:7192: result: yes
configure:7212: checking whether gcc accepts -pipe
configure:7233: gcc -c -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:7233: $? = 0
configure:7241: result: yes
configure:7277: checking whether g++ accepts -std=c++17
configure:7298: g++ -c -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:7298: $? = 0
configure:7306: result: yes
configure:7326: checking whether gcc accepts -std=c++17
configure:7347: gcc -c -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
cc1: error: command-line option '-std=c++17' is valid for C++/ObjC++ but not for C [-Werror]
cc1: all warnings being treated as errors
configure:7347: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:7363: result: no
configure:7504: checking whether g++ accepts -ggdb
configure:7525: g++ -c -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:7525: $? = 0
configure:7646: result: yes
configure:7781: checking for __builtin_ffsll
configure:7781: g++ -o conftest -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp >&5
conftest.cpp:47:6: error: new declaration 'char __builtin_ffsll()' ambiguates built-in declaration 'int __builtin_ffsll(long long int)' [-fpermissive]
47 | char __builtin_ffsll ();
| ^~~~~~~~~~~~~~~
conftest.cpp: In function 'int main()':
conftest.cpp:58:24: error: too few arguments to function 'int __builtin_ffsll(long long int)'
58 | return __builtin_ffsll ();
| ~~~~~~~~~~~~~~~~^~
configure:7781: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| /* end confdefs.h. */
| /* Define __builtin_ffsll to an innocuous variant, in case <limits.h> declares __builtin_ffsll.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define __builtin_ffsll innocuous___builtin_ffsll
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char __builtin_ffsll (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef __builtin_ffsll
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char __builtin_ffsll ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub___builtin_ffsll || defined __stub_____builtin_ffsll
| choke me
| #endif
|
| int
| main ()
| {
| return __builtin_ffsll ();
| ;
| return 0;
| }
configure:7781: result: no
configure:7788: checking for __builtin_popcountll
configure:7788: g++ -o conftest -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp >&5
conftest.cpp:47:6: error: new declaration 'char __builtin_popcountll()' ambiguates built-in declaration 'int __builtin_popcountll(long long unsigned int)' [-fpermissive]
47 | char __builtin_popcountll ();
| ^~~~~~~~~~~~~~~~~~~~
conftest.cpp: In function 'int main()':
conftest.cpp:58:29: error: too few arguments to function 'int __builtin_popcountll(long long unsigned int)'
58 | return __builtin_popcountll ();
| ~~~~~~~~~~~~~~~~~~~~~^~
configure:7788: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| /* end confdefs.h. */
| /* Define __builtin_popcountll to an innocuous variant, in case <limits.h> declares __builtin_popcountll.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define __builtin_popcountll innocuous___builtin_popcountll
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char __builtin_popcountll (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef __builtin_popcountll
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char __builtin_popcountll ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub___builtin_popcountll || defined __stub_____builtin_popcountll
| choke me
| #endif
|
| int
| main ()
| {
| return __builtin_popcountll ();
| ;
| return 0;
| }
configure:7788: result: no
configure:7869: checking whether to use gcc visibility attributes
configure:7872: result: yes
configure:7892: checking whether g++ accepts -fvisibility=hidden
configure:7913: g++ -c -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:7913: $? = 0
configure:7921: result: yes
configure:7952: checking if compiler supports forced inlining
configure:7978: g++ -c -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
conftest.cpp:26:25: error: #error "Macro __clang__ is undefined!"
26 | # error "Macro __clang__ is undefined!"
| ^~~~~
conftest.cpp:29:15: error: 'please' does not name a type
29 | please, do fail
| ^~~~~~
configure:7978: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| #define GECODE_GCC_HAS_CLASS_VISIBILITY /**/
| /* end confdefs.h. */
| #ifndef __clang__
| # error "Macro __clang__ is undefined!"
| /* For some compilers (eg. SGI's CC), #error is not
| enough... */
| please, do fail
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:7997: g++ -c -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:7997: $? = 0
configure:7998: result: yes
configure:8036: checking whether g++ accepts -O3
configure:8057: g++ -c -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:8057: $? = 0
configure:8065: result: yes
configure:8085: checking whether gcc accepts -O3
configure:8106: gcc -c -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:8106: $? = 0
configure:8114: result: yes
configure:8150: checking whether g++ accepts -fno-strict-aliasing
configure:8171: g++ -c -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:8171: $? = 0
configure:8179: result: yes
configure:8199: checking whether gcc accepts -fno-strict-aliasing
configure:8220: gcc -c -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:8220: $? = 0
configure:8228: result: yes
configure:8264: checking whether g++ accepts -fno-math-errno
configure:8285: g++ -c -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:8285: $? = 0
configure:8293: result: yes
configure:8313: checking whether gcc accepts -fno-math-errno
configure:8334: gcc -c -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:8334: $? = 0
configure:8342: result: yes
configure:8378: checking whether g++ accepts -ffinite-math-only
configure:8399: g++ -c -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:8399: $? = 0
configure:8407: result: yes
configure:8427: checking whether gcc accepts -ffinite-math-only
configure:8448: gcc -c -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:8448: $? = 0
configure:8456: result: yes
configure:8492: checking whether g++ accepts -fno-rounding-math
configure:8513: g++ -c -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:8513: $? = 0
configure:8521: result: yes
configure:8541: checking whether gcc accepts -fno-rounding-math
configure:8562: gcc -c -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:8562: $? = 0
configure:8570: result: yes
configure:8606: checking whether g++ accepts -fno-signaling-nans
configure:8627: g++ -c -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:8627: $? = 0
configure:8635: result: yes
configure:8655: checking whether gcc accepts -fno-signaling-nans
configure:8676: gcc -c -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:8676: $? = 0
configure:8684: result: yes
configure:8720: checking whether g++ accepts -fcx-limited-range
configure:8741: g++ -c -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
configure:8741: $? = 0
configure:8749: result: yes
configure:8769: checking whether gcc accepts -fcx-limited-range
configure:8790: gcc -c -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
configure:8790: $? = 0
configure:8798: result: yes
configure:8834: checking whether g++ accepts -mthreads
configure:8855: g++ -c -mthreads -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
g++: error: unrecognized command-line option '-mthreads'; did you mean '-pthread'?
configure:8855: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| #define GECODE_GCC_HAS_CLASS_VISIBILITY /**/
| #define forceinline inline __attribute__ ((__always_inline__))
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:8871: result: no
configure:8883: checking whether gcc accepts -mthreads
configure:8904: gcc -c -mthreads -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
gcc: error: unrecognized command-line option '-mthreads'; did you mean '-pthread'?
configure:8904: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| #define GECODE_GCC_HAS_CLASS_VISIBILITY /**/
| #define forceinline inline __attribute__ ((__always_inline__))
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:8920: result: no
configure:9183: checking whether g++ accepts -Qunused-arguments
configure:9204: g++ -c -Qunused-arguments -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.cpp >&5
g++: error: unrecognized command-line option '-Qunused-arguments'
configure:9204: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| #define GECODE_GCC_HAS_CLASS_VISIBILITY /**/
| #define forceinline inline __attribute__ ((__always_inline__))
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9220: result: no
configure:9232: checking whether gcc accepts -Qunused-arguments
configure:9253: gcc -c -Qunused-arguments -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG -Werror conftest.c >&5
gcc: error: unrecognized command-line option '-Qunused-arguments'
configure:9253: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GECODE"
| #define PACKAGE_TARNAME "gecode"
| #define PACKAGE_VERSION "6.3.0"
| #define PACKAGE_STRING "GECODE 6.3.0"
| #define PACKAGE_BUGREPORT "users@gecode.org"
| #define PACKAGE_URL ""
| #define GECODE_DLL_USERPREFIX ""
| #define GECODE_DLL_USERSUFFIX ""
| #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 GECODE_ALLOCATOR /**/
| #define SIZEOF_INT 4
| #define GECODE_HAS_THREADS 1
| #define GECODE_GCC_HAS_CLASS_VISIBILITY /**/
| #define forceinline inline __attribute__ ((__always_inline__))
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9269: result: no
configure:11765: checking for dot
configure:11781: found /usr/bin/dot
configure:11792: result: dot
configure:11800: checking whether to enable graphs in the documentation
configure:11813: result: yes
configure:11830: checking whether to enable the documentation search engine
configure:11838: result: no
configure:11848: checking whether to generate a doxygen tagfile
configure:11851: result: yes
configure:11865: checking whether to build compressed html documentation
configure:11887: result: no
configure:11899: checking whether to build docset documentation for XCode
configure:11921: result: no
configure:11952: checking whether to build the float variables library
configure:11955: result: yes
configure:11985: checking whether to build the set variables library
configure:11988: result: yes
configure:12018: checking whether to build the int variables library
configure:12021: result: yes
configure:12051: checking whether to build with MPFR support
configure:12054: result: yes
configure:12097: checking for __gmpz_init in -lgmp
configure:12122: g++ -o conftest -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp -lgmp >&5
configure:12122: $? = 0
configure:12131: result: yes
configure:12345: checking gmp.h usability
configure:12345: g++ -c -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp >&5
configure:12345: $? = 0
configure:12345: result: yes
configure:12345: checking gmp.h presence
configure:12345: g++ -E conftest.cpp
configure:12345: $? = 0
configure:12345: result: yes
configure:12345: checking for gmp.h
configure:12345: result: yes
configure:12352: checking mpfr.h usability
configure:12352: g++ -c -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp >&5
configure:12352: $? = 0
configure:12352: result: yes
configure:12352: checking mpfr.h presence
configure:12352: g++ -E conftest.cpp
configure:12352: $? = 0
configure:12352: result: yes
configure:12352: checking for mpfr.h
configure:12352: result: yes
configure:12357: checking for mpfr_add in -lmpfr
configure:12382: g++ -o conftest -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp -lmpfr -lmpfr -lgmp >&5
configure:12382: $? = 0
configure:12391: result: yes
configure:12479: checking for qmake-qt4
configure:12509: result: no
configure:12479: checking for qmake
configure:12495: found /usr/bin/qmake
configure:12506: result: qmake
configure:12521: checking for moc-qt4
configure:12551: result: no
configure:12521: checking for moc
configure:12537: found /usr/bin/moc
configure:12548: result: moc
configure:12559: checking whether to build with Qt support
configure:12579: result: yes
configure:12637: checking whether to build Gist
configure:12640: result: yes
configure:12658: checking whether to build with support for cbs
configure:12669: result: no
configure:12679: checking whether to build with support for CPProfiler
configure:12690: result: no
configure:12737: checking for flex
configure:12767: result: no
configure:12786: checking whether we have at least flex 2.5.33
configure:12789: result: no
configure:12927: checking for stdlib.h
configure:12927: result: yes
configure:12927: checking for unistd.h
configure:12927: result: yes
configure:12927: checking for sys/param.h
configure:12927: g++ -c -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp >&5
configure:12927: $? = 0
configure:12927: result: yes
configure:12947: checking for getpagesize
configure:12947: g++ -o conftest -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp >&5
configure:12947: $? = 0
configure:12947: result: yes
configure:12956: checking for working mmap
configure:13103: g++ -o conftest -fcx-limited-range -fno-signaling-nans -fno-rounding-math -ffinite-math-only -fno-math-errno -fno-strict-aliasing -O3 -fvisibility=hidden -ggdb -std=c++17 -pipe -Wno-unknown-pragmas -Wall -Wextra -fPIC -DNDEBUG conftest.cpp >&5
configure:13103: $? = 0
configure:13103: ./conftest
configure:13103: $? = 0
configure:13113: result: yes
configure:13129: checking whether to build driver
configure:13133: result: yes
configure:13152: checking whether to build flatzinc
configure:13156: result: yes
configure:13176: checking whether to build driver
configure:13180: result: yes
configure:13199: checking whether to build examples
configure:13203: result: yes
configure:13223: checking whether to build minimodel
configure:13227: result: yes
configure:13244: checking whether to build search
configure:13248: result: yes
configure:13468: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by GECODE config.status 6.3.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on Dexter
config.status:941: creating Makefile
config.status:941: creating tools/flatzinc/mzn-gecode
config.status:927: error: cannot find input file: `tools/flatzinc/gecode.msc.in'
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_cxx_compiler_vendor=gnu
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_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_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func___builtin_ffsll=no
ac_cv_func___builtin_popcountll=no
ac_cv_func_getpagesize=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_header_gmp_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_mpfr_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_param_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_lib_gmp___gmpz_init=yes
ac_cv_lib_mpfr_mpfr_add=yes
ac_cv_objext=o
ac_cv_path_EGREP='/usr/bin/grep -E'
ac_cv_path_GREP=/usr/bin/grep
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_DOT=dot
ac_cv_prog_MOC=moc
ac_cv_prog_PROG_DIFF=ok
ac_cv_prog_PROG_MAKE=ok
ac_cv_prog_PROG_PERL=ok
ac_cv_prog_PROG_SED=ok
ac_cv_prog_PROG_TAR=ok
ac_cv_prog_QMAKE=qmake
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_g=yes
ac_cv_prog_cxx_g=yes