-
Notifications
You must be signed in to change notification settings - Fork 5
/
configure
executable file
·1228 lines (1084 loc) · 35.1 KB
/
configure
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
#!/bin/sh
##################################
#
# Configuration script for Coq
#
##################################
VERSION=trunk
VOMAGIC=08211
STATEMAGIC=58211
DATE=`LC_ALL=C LANG=C date +"%B %Y"`
# Create the bin/ directory if non-existent
test -d bin || mkdir bin
# a local which command for sh
which () {
IFS=":" # set words separator in PATH to be ':' (it allows spaces in dirnames)
for i in $PATH; do
if test -z "$i"; then i=.; fi
if [ -f "$i/$1" ] ; then
IFS=" "
echo "$i/$1"
break
fi
done
}
usage () {
printf "Available options for configure are:\n"
echo "-help"
printf "\tDisplays this help page\n"
echo "-prefix <dir>"
printf "\tSet installation directory to <dir>\n"
echo "-local"
printf "\tSet installation directory to the current source tree\n"
echo "-coqrunbyteflags <flags>"
printf "\tSet link flags for VM-dependent bytecode (coqtop)\n"
echo "-coqtoolsbyteflags <flags>"
printf "\tSet link flags for VM-independant bytecode (coqdep, coqdoc, ...)\n"
echo "-custom"
printf "\tGenerate all bytecode executables with -custom (not recommended)\n"
echo "-bindir <dir>"
echo "-libdir <dir>"
echo "-configdir <dir>"
echo "-datadir <dir>"
echo "-mandir <dir>"
echo "-docdir <dir>"
printf "\tSpecifies where to install bin/lib/config/data/man/doc files resp.\n"
echo "-emacslib <dir>"
printf "\tSpecifies where emacs files are to be installed\n"
echo "-coqdocdir <dir>"
printf "\tSpecifies where Coqdoc style files are to be installed\n"
echo "-camldir <dir>"
printf "\tSpecifies the path to the OCaml library\n"
echo "-lablgtkdir <dir>"
printf "\tSpecifies the path to the Lablgtk library\n"
echo "-usecamlp5"
printf "\tSpecifies to use camlp5 instead of camlp4\n"
echo "-usecamlp4"
printf "\tSpecifies to use camlp4 instead of camlp5\n"
echo "-camlp5dir <dir>"
printf "\tSpecifies where to look for the Camlp5 library and tells to use it\n"
echo "-arch <arch>"
printf "\tSpecifies the architecture\n"
echo "-opt"
printf "\tSpecifies whether or not to use OCaml *.opt optimized compilers\n"
echo "-natdynlink (yes|no)"
printf "\tSpecifies whether or not to use dynamic loading of native code\n"
echo "-coqide (opt|byte|no)"
printf "\tSpecifies whether or not to compile Coqide\n"
echo "-nomacintegration"
printf "\tSpecifies to not try to build coqide mac integration\n"
echo "-browser <command>"
printf "\tUse <command> to open URL %%s\n"
echo "-nodoc"
printf "\tSpecifies to not compile the documentation\n"
echo "-with-geoproof (yes|no)"
printf "\tSpecifies whether or not to use Geoproof binding\n"
echo "-byte-only"
printf "\tCompiles only bytecode version of Coq\n"
echo "-debug"
printf "\tAdd debugging information in the Coq executables\n"
echo "-profile"
printf "\tAdd profiling information in the Coq executables\n"
echo "-annotate"
printf "\tCompiles Coq with -dtypes option\n"
echo "-typerex"
printf "\tCompiles Coq using typerex wrapper\n"
echo "-makecmd <command>"
printf "\tName of GNU Make command\n"
echo "-no-native-compiler"
printf "\tDisables compilation to native code for conversion and normalization\n"
}
# Default OCaml binaries
bytecamlc=ocamlc
nativecamlc=ocamlopt
ocamlmklibexec=ocamlmklib
ocamlexec=ocaml
ocamldepexec=ocamldep
ocamldocexec=ocamldoc
ocamllexexec=ocamllex
ocamlyaccexec=ocamlyacc
camlp4oexec=camlp4o
default_typerex_wrapper="ocp-wrapper -save-types"
coq_debug_flag=
coq_debug_flag_opt=
coq_profile_flag=
coq_annotate_flag=
coq_typerex_wrapper=
best_compiler=opt
cflags="-fno-defer-pop -Wall -Wno-unused"
natdynlink=yes
local=false
coqrunbyteflags_spec=no
coqtoolsbyteflags_spec=no
custom_spec=no
prefix_spec=no
bindir_spec=no
libdir_spec=no
configdir_spec=no
datadir_spec=no
mandir_spec=no
docdir_spec=no
emacslib_spec=no
emacs_spec=no
camldir_spec=no
lablgtkdir_spec=no
coqdocdir_spec=no
arch_spec=no
coqide_spec=no
nomacintegration_spec=no
browser_spec=no
wwwcoq_spec=no
with_geoproof=false
with_doc=all
with_doc_spec=no
force_caml_version=no
force_caml_version_spec=no
usecamlp5=yes
no_native_compiler=false
# Parse command-line arguments
while : ; do
case "$1" in
"") break;;
-help|--help) usage
exit;;
-prefix|--prefix) prefix_spec=yes
prefix="$2"
shift;;
-local|--local) local=true;;
-coqrunbyteflags|--coqrunbyteflags) coqrunbyteflags_spec=yes
coqrunbyteflags="$2"
shift;;
-coqtoolsbyteflags|--coqtoolsbyteflags) coqtoolsbyteflags_spec=yes
coqtoolsbyteflags="$2"
shift;;
-custom|--custom) custom_spec=yes;;
-bindir|--bindir) bindir_spec=yes
bindir="$2"
shift;;
-libdir|--libdir) libdir_spec=yes
libdir="$2"
shift;;
-configdir|--configdir) configdir_spec=yes
configdir="$2"
shift;;
-datadir|--datadir) datadir_spec=yes
datadir="$2"
shift;;
-mandir|--mandir) mandir_spec=yes
mandir="$2"
shift;;
-docdir|--docdir) docdir_spec=yes
docdir="$2"
shift;;
-emacslib|--emacslib) emacslib_spec=yes
emacslib="$2"
shift;;
-emacs |--emacs) emacs_spec=yes
emacs="$2"
printf "Warning: obsolete -emacs option\n"
shift;;
-coqdocdir|--coqdocdir) coqdocdir_spec=yes
coqdocdir="$2"
shift;;
-camldir|--camldir) camldir_spec=yes
camldir="$2"
shift;;
-lablgtkdir|--lablgtkdir) lablgtkdir_spec=yes
lablgtkdir="$2"
shift;;
-usecamlp5|--usecamlp5)
usecamlp5=yes;;
-usecamlp4|--usecamlp4)
usecamlp5=no;;
-camlp5dir|--camlp5dir)
usecamlp5=yes
camlp5dir="$2"
shift;;
-arch|--arch) arch_spec=yes
arch=$2
shift;;
-opt|--opt) bytecamlc=ocamlc.opt
camlp4oexec=camlp4o # can't add .opt since dyn load'll be required
nativecamlc=ocamlopt.opt;;
-natdynlink|--natdynlink) case "$2" in
yes) natdynlink=yes;;
*) natdynlink=no
esac
shift;;
-coqide|--coqide) coqide_spec=yes
case "$2" in
byte|opt) COQIDE=$2;;
*) COQIDE=no
esac
shift;;
-nomacintegration) nomacintegration_spec=yes
shift;;
-browser|--browser) browser_spec=yes
BROWSER=$2
shift;;
-coqwebsite|--coqwebsite) wwwcoq_spec=yes
WWWCOQ=$2
shift;;
-nodoc|--nodoc) with_doc_spec=yes
with_doc=no;;
-with-doc|--with-doc) with_doc_spec=yes
case "$2" in
yes|all) with_doc=all;;
*) with_doc=no
esac
shift;;
-with-geoproof|--with-geoproof)
case "$2" in
yes) with_geoproof=true;;
no) with_geoproof=false;;
esac
shift;;
-makecmd|--makecmd) makecmd="$2"
shift;;
-byte-only|-byteonly|--byteonly|--byte-only) best_compiler=byte;;
-debug|--debug) coq_debug_flag=-g;;
-profile|--profile) coq_profile_flag=-p;;
-annotate|--annotate) coq_annotate_flag=-dtypes;;
-typerex|--typerex) coq_typerex_wrapper=$default_typerex_wrapper;;
-no-native-compiler|--no-native-compiler) no_native_compiler=true;;
-force-caml-version|--force-caml-version|-force-ocaml-version|--force-ocaml-version)
force_caml_version_spec=yes
force_caml_version=yes;;
*) echo "Unknown option \"$1\"." 1>&2; usage; exit 2;;
esac
shift
done
if [ $prefix_spec = yes -a $local = true ] ; then
echo "Options -prefix and -local are incompatible."
echo "Configure script failed!"
exit 1
fi
# compile date
DATEPGM=`which date`
case $DATEPGM in
"") echo "I can't find the program \"date\" in your path."
echo "Please give me the current date"
read COMPILEDATE;;
*) COMPILEDATE=`LC_ALL=C LANG=C date +"%b %d %Y %H:%M:%S"`;;
esac
# Architecture
case $arch_spec in
no)
# First we test if we are running a Cygwin or Mingw/Msys system
if [ `uname -s | cut -c -6` = "CYGWIN" ] ; then
ARCH="win32"
CYGWIN=yes
elif [ `uname -s | cut -c -7` = "MINGW32" ]; then
ARCH="win32"
else
# If not, we determine the architecture
if test -x /bin/uname ; then
ARCH=`/bin/uname -s`
elif test -x /usr/bin/uname ; then
ARCH=`/usr/bin/uname -s`
elif test -x /bin/arch ; then
ARCH=`/bin/arch`
elif test -x /usr/bin/arch ; then
ARCH=`/usr/bin/arch`
elif test -x /usr/ucb/arch ; then
ARCH=`/usr/ucb/arch`
else
echo "I can not automatically find the name of your architecture."
printf "%s"\
"Give me a name, please [win32 for Win95, Win98 or WinNT]: "
read ARCH
fi
fi;;
yes) ARCH=$arch
esac
# executable extension
case $ARCH in
win32)
EXE=".exe"
DLLEXT=".dll";;
*) EXE=""
DLLEXT=".so"
esac
# Is the source tree checked out from a recognised
# version control system ?
if test -e .svn/entries ; then
checkedout=svn
elif [ -d '{arch}' ]; then
checkedout=gnuarch
elif [ -z "${GIT_DIR}" ] && [ -d .git ] || [ -d "${GIT_DIR}" ]; then
checkedout=git
else
checkedout=0
fi
# make command
MAKE=`which ${makecmd:-make}`
if [ "$MAKE" != "" ]; then
MAKEVERSION=`$MAKE -v | head -1 | cut -d" " -f3`
MAKEVERSIONMAJOR=`echo $MAKEVERSION | cut -d. -f1`
MAKEVERSIONMINOR=`echo $MAKEVERSION | cut -d. -f2`
if [ "$MAKEVERSIONMAJOR" -eq 3 -a "$MAKEVERSIONMINOR" -ge 81 ]; then
echo "You have GNU Make $MAKEVERSION. Good!"
else
OK="no"
#Extra support for local installation of make 3.81
#will be useless when make >= 3.81 will be standard
if [ -x ./make ]; then
MAKEVERSION=`./make -v | head -1`
if [ "$MAKEVERSION" = "GNU Make 3.81" ]; then OK="yes"; fi
fi
if [ $OK = "no" ]; then
echo "GNU Make >= 3.81 is needed."
echo "Make 3.81 can be downloaded from ftp://ftp.gnu.org/gnu/make/make-3.81.tar.gz"
echo "then locally installed on a Unix-style system by issuing:"
echo " tar xzvf make-3.81.tar.gz"
echo " cd make-3.81"
echo " ./configure"
echo " make"
echo " mv make .."
echo " cd .."
echo "Restart then the configure script and later use ./make instead of make."
exit 1
else
echo "You have locally installed GNU Make 3.81. Good!"
fi
fi
else
echo "Cannot find GNU Make >= 3.81."
fi
# Browser command
if [ "$browser_spec" = "no" ]; then
case $ARCH in
win32) BROWSER='start %s' ;;
Darwin) BROWSER='open %s' ;;
*) BROWSER='firefox -remote "OpenURL(%s,new-tab)" || firefox %s &' ;;
esac
fi
if [ "$wwwcoq_spec" = "no" ]; then
WWWCOQ="http://coq.inria.fr/"
fi
#########################################
# Objective Caml programs
case $camldir_spec in
no) CAMLC=`which $bytecamlc`
case "$CAMLC" in
"") echo "$bytecamlc is not present in your path!"
echo "Give me manually the path to the $bytecamlc executable [/usr/local/bin by default]: "
read CAMLC
case "$CAMLC" in
"") CAMLC=/usr/local/bin/$bytecamlc;;
*/ocamlc|*/ocamlc.opt) true;;
*/) CAMLC="${CAMLC}"$bytecamlc;;
*) CAMLC="${CAMLC}"/$bytecamlc;;
esac
esac
CAMLBIN=`dirname "$CAMLC"`;;
yes) CAMLC=$camldir/$bytecamlc
CAMLBIN=`dirname "$CAMLC"`
bytecamlc="$CAMLC"
nativecamlc=$CAMLBIN/$nativecamlc
ocamlexec=$CAMLBIN/ocaml
ocamldepexec=$CAMLBIN/ocamldep
ocamldocexec=$CAMLBIN/ocamldoc
ocamllexexec=$CAMLBIN/ocamllex
ocamlyaccexec=$CAMLBIN/ocamlyacc
ocamlmklibexec=$CAMLBIN/ocamlmklib
camlp4oexec=$CAMLBIN/camlp4o
esac
if test ! -f "$CAMLC" ; then
echo "I can not find the executable '$CAMLC'. Have you installed it?"
echo "Configuration script failed!"
exit 1
fi
# Under Windows, we need to convert from cygwin/mingw paths (/c/Program Files/Ocaml)
# to more windows-looking paths (c:/Program Files/Ocaml). Note that / are kept
mk_win_path () {
case $ARCH,$CYGWIN in
win32,yes) cygpath -m "$1" ;;
win32*) "$ocamlexec" "tools/mingwpath.ml" "$1" ;;
*) echo "$1" ;;
esac
}
case $ARCH in
win32) CAMLBIN=`mk_win_path "$CAMLBIN"`;;
esac
# Beware of the final \r in Win32
CAMLVERSION=`"$CAMLC" -version | tr -d "\r"`
CAMLLIB=`"$CAMLC" -where | tr -d "\r"`
case $CAMLVERSION in
1.*|2.*|3.0*|3.10*|3.11.[01])
echo "Your version of Objective-Caml is $CAMLVERSION."
if [ "$force_caml_version" = "yes" ]; then
echo "*Warning* You are compiling Coq with an outdated version of Objective-Caml."
else
echo " You need Objective-Caml 3.11.2 or later."
echo " Configuration script failed!"
exit 1
fi;;
3.11.2|3.12*|4.*)
CAMLP4COMPAT="-loc loc"
echo "You have Objective-Caml $CAMLVERSION. Good!";;
*)
echo "I found the Objective-Caml compiler but cannot find its version number!"
echo "Is it installed properly?"
echo "Configuration script failed!"
exit 1;;
esac
CAMLTAG=OCAML`echo $CAMLVERSION | sed -e "s/\([1-9]\)\.\([0-9]*\).*/\1\2/g"`
# For coqmktop & bytecode compiler
if [ "$coq_debug_flag" = "-g" ]; then
case $CAMLTAG in
OCAML31*|OCAML4*)
# Compilation debug flag
coq_debug_flag_opt="-g"
;;
esac
fi
# Camlp4 / Camlp5 configuration
# Assume that camlp(4|5) binaries are at the same place as ocaml ones
# (this should become configurable some day)
CAMLP4BIN=${CAMLBIN}
case $usecamlp5 in
yes)
CAMLP4=camlp5
CAMLP4MOD=gramlib
if [ "$camlp5dir" != "" ]; then
if [ -f "$camlp5dir/${CAMLP4MOD}.cma" ]; then
CAMLP4LIB=$camlp5dir
FULLCAMLP4LIB=$camlp5dir
else
echo "Cannot find camlp5 libraries in $camlp5dir (camlp5.cma not found)."
echo "Configuration script failed!"
exit 1
fi
elif [ -f "${CAMLLIB}/camlp5/${CAMLP4MOD}.cma" ]; then
CAMLP4LIB=+camlp5
FULLCAMLP4LIB=${CAMLLIB}/camlp5
elif [ -f "${CAMLLIB}/site-lib/${CAMLP4MOD}.cma" ]; then
CAMLP4LIB=+site-lib/camlp5
FULLCAMLP4LIB=${CAMLLIB}/site-lib/camlp5
else
echo "No Camlp5 installation found. Looking for Camlp4 instead..."
usecamlp5=no
fi
esac
# If we're (still...) going to use Camlp5, let's check its version
case $usecamlp5 in
yes)
camlp4oexec=`echo "$camlp4oexec" | tr 4 5`
case `"$camlp4oexec" -v 2>&1` in
*"version 4.0"*|*5.00*)
echo "Camlp5 version < 5.01 not supported."
echo "Configuration script failed!"
exit 1;;
esac
esac
# We might now try to use Camlp4, either by explicit choice or
# by lack of proper Camlp5 installation
case $usecamlp5 in
no)
CAMLP4=camlp4
CAMLP4MOD=camlp4lib
CAMLP4LIB=+camlp4
FULLCAMLP4LIB=${CAMLLIB}/camlp4
if [ ! -f "${FULLCAMLP4LIB}/${CAMLP4MOD}.cma" ]; then
echo "No Camlp4 installation found."
echo "Configuration script failed!"
exit 1
fi
camlp4oexec=${camlp4oexec}rf
if [ "`"$camlp4oexec" 2>&1`" != "" ]; then
echo "Error: $camlp4oexec not found or not executable."
echo "Configuration script failed!"
exit 1
fi
esac
# do we have a native compiler: test of ocamlopt and its version
if [ "$best_compiler" = "opt" ] ; then
if test -e "$nativecamlc" || test -e "`which $nativecamlc`"; then
CAMLOPTVERSION=`"$nativecamlc" -v | sed -n -e 's|.*version* *\(.*\)$|\1|p' `
if [ ! -f "${FULLCAMLP4LIB}/${CAMLP4MOD}.cmxa" ]; then
best_compiler=byte
echo "Cannot find native-code $CAMLP4,"
echo "only the bytecode version of Coq will be available."
elif [ ! -f "$CAMLLIB"/dynlink.cmxa ]; then
best_compiler=byte
echo "Cannot find native-code dynlink library,"
echo "only the bytecode version of Coq will be available."
echo "For building a native-code Coq, you may try to first"
echo "compile and install a dummy dynlink.cmxa (see dev/dynlink.ml)"
echo "and then run ./configure -natdynlink no"
else
if [ "$CAMLOPTVERSION" != "$CAMLVERSION" ] ; then
echo "Native and bytecode compilers do not have the same version!"
fi
echo "You have native-code compilation. Good!"
fi
else
best_compiler=byte
echo "You have only bytecode compilation."
fi
fi
# Native dynlink
if [ "$natdynlink" = "yes" -a -f "$CAMLLIB"/dynlink.cmxa ]; then
HASNATDYNLINK=true
else
HASNATDYNLINK=false
fi
case $HASNATDYNLINK,$ARCH,`uname -r`,$CAMLVERSION in
true,Darwin,9.*,3.11.*) # ocaml 3.11.0 dynlink on MacOS 10.5 is buggy
NATDYNLINKFLAG=os5fixme;;
#Possibly a problem on 10.6.0/10.6.1/10.6.2
#May just be a 32 vs 64 problem for all 10.6.*
true,Darwin,10.0.*,3.11.*) # Possibly a problem on 10.6.0
NATDYNLINKFLAG=os5fixme;;
true,Darwin,10.1.*,3.11.*) # Possibly a problem on 10.6.1
NATDYNLINKFLAG=os5fixme;;
true,Darwin,10.2.*,3.11.*) # Possibly a problem on 10.6.2
NATDYNLINKFLAG=os5fixme;;
true,Darwin,10.*,3.11.*)
if [ `getconf LONG_BIT` = "32" ]; then
# Still a problem for x86_32
NATDYNLINKFLAG=os5fixme
else
# Not a problem for x86_64
NATDYNLINKFLAG=$HASNATDYNLINK
fi;;
*)
NATDYNLINKFLAG=$HASNATDYNLINK;;
esac
# OS dependent libraries
OSDEPLIBS="-cclib -lunix"
case $ARCH in
sun4*) OS=`uname -r`
case $OS in
5*) OS="Sun Solaris $OS"
OSDEPLIBS="$OSDEPLIBS -cclib -lnsl -cclib -lsocket";;
*) OS="Sun OS $OS"
esac;;
esac
# lablgtk2 and CoqIDE
IDEARCHFLAGS=
IDEARCHFILE=
IDEARCHDEF=X11
# -byte-only should imply -coqide byte, unless the user decides otherwise
if [ "$best_compiler" = "byte" -a "$coqide_spec" = "no" ]; then
coqide_spec=yes
COQIDE=byte
fi
# Which coqide is asked ? which one is possible ?
if [ "$coqide_spec" = "yes" -a "$COQIDE" = "no" ]; then
echo "CoqIde disabled as requested."
else
case $lablgtkdir_spec in
no)
if lablgtkdirtmp=$(ocamlfind query lablgtk2.sourceview2 2> /dev/null); then
if [ ! -f "$lablgtkdirtmp/gSourceView2.cmi" ]; then
echo "Incomplete Lablgtk2 found by ocamlfind (gSourceView.cmi not found)."
elif [ ! -f "$lablgtkdirtmp/glib.mli" ]; then
echo "Incomplete Lablgtk2 found by ocamlfind (glib.mli not found)."
else
lablgtkdirfoundmsg="LabelGtk2 found by ocamlfind"
lablgtkdir=$lablgtkdirtmp
LABLGTKLIB=$lablgtkdir # Pour le message utilisateur
fi
fi
if [ "$lablgtkdir" = "" -a -f "${CAMLLIB}/lablgtk2/gSourceView2.cmi" -a -f "${CAMLLIB}/lablgtk2/glib.mli" ]; then
lablgtkdirfoundmsg="LablGtk2 found in ocaml lib directory"
lablgtkdir=${CAMLLIB}/lablgtk2
LABLGTKLIB=+lablgtk2 # Pour le message utilisateur
fi;;
yes)
if [ ! -d "$lablgtkdir" ]; then
echo "$lablgtkdir is not a valid directory."
echo "Configuration script failed!"
exit 1
elif [ ! -f "$lablgtkdir/gSourceView2.cmi" ]; then
echo "Incomplete LablGtk2 library (gSourceView2.cmi not found)."
echo "Make sure that the GtkSourceView bindings are available."
echo "Configuration script failed!"
exit 1
elif [ ! -f "$lablgtkdir/glib.mli" ]; then
echo "Incomplete LablGtk2 library (glib.mli not found)."
echo "Configuration script failed!"
exit 1
else
lablgtkdirfoundmsg="LablGtk2 directory found"
LABLGTKLIB=$lablgtkdir # Pour le message utilisateur
fi;;
esac
if [ "$lablgtkdir" = "" ]; then
echo "LablGtk2 not found: CoqIde will not be available."
COQIDE=no
elif [ -z "`grep -w convert_with_fallback "$lablgtkdir/glib.mli"`" ]; then
echo "$lablgtkdirfoundmsg but too old: CoqIde will not be available."
COQIDE=no;
elif [ "$coqide_spec" = "yes" -a "$COQIDE" = "byte" ]; then
echo "$lablgtkdirfoundmsg, bytecode CoqIde will be used as requested."
COQIDE=byte
elif [ ! -f "${CAMLLIB}/threads/threads.cmxa" -a -f "${lablgtkdir}/gtkThread.cmx" ]; then
echo "$lablgtkdirfoundmsg, not native (or no native threads): bytecode CoqIde will be available."
COQIDE=byte
else
echo "$lablgtkdirfoundmsg, native threads: native CoqIde will be available."
COQIDE=opt
if [ "$nomacintegration_spec" = "no" ] && lablgtkosxdir=$(ocamlfind query lablgtkosx 2> /dev/null);
then
IDEARCHFLAGS=lablgtkosx.cmxa
IDEARCHDEF=QUARTZ
elif [ "$ARCH" = "win32" ];
then
IDEARCHFLAGS=
IDEARCHFILE=ide/ide_win32_stubs.o
IDEARCHDEF=WIN32
fi
fi
fi
case $COQIDE in
byte|opt)
LABLGTKINCLUDES="-I $LABLGTKLIB";;
no)
LABLGTKINCLUDES="";;
esac
[ x$lablgtkosxdir = x ] || LABLGTKINCLUDES="$LABLGTKINCLUDES -I $lablgtkosxdir"
# strip command
case $ARCH in
Darwin) if [ "$HASNATDYNLINK" = "true" ]
then
STRIPCOMMAND="true"
else
STRIPCOMMAND="strip"
fi;;
*)
if [ "$coq_profile_flag" = "-p" ] || [ "$coq_debug_flag" = "-g" ]
then
STRIPCOMMAND="true"
else
STRIPCOMMAND="strip"
fi
esac
### Test if documentation can be compiled (latex, hevea)
if test "$with_doc" = "all"
then
for cmd in "latex" "hevea" ; do
if test ! -x "`which $cmd`"
then
echo "$cmd was not found; documentation will not be available"
with_doc=no
break
fi
done
fi
###########################################
# bindir, libdir, mandir, docdir, etc.
COQTOP=$PWD
# OCaml only understand Windows filenames (C:\...)
case $ARCH in
win32) COQTOP=`mk_win_path "$COQTOP"`
CAMLBIN=`mk_win_path "$CAMLBIN"`
CAMLP4BIN=`mk_win_path "$CAMLP4BIN"`
esac
# Default installation directories
case $ARCH$CYGWIN in
win32)
W32PREF='C:/coq/'
bindir_def="${W32PREF}bin"
libdir_def="${W32PREF}lib"
configdir_def="${W32PREF}config"
datadir_def="${W32PREF}share"
mandir_def="${W32PREF}man"
docdir_def="${W32PREF}doc"
emacslib_def="${W32PREF}emacs"
coqdocdir_def="${W32PREF}latex";;
*)
bindir_def=/usr/local/bin
libdir_def=/usr/local/lib/coq
configdir_def=/etc/xdg/coq
datadir_def=/usr/local/share/coq
mandir_def=/usr/local/share/man
docdir_def=/usr/local/share/doc/coq
emacslib_def=/usr/local/share/emacs/site-lisp
coqdocdir_def=/usr/local/share/texmf/tex/latex/misc;;
esac
askdir () {
printf "Where should I install $1 [%s]? " $2
read answer
if [ "$answer" = "" ]; then answer="$2"; fi
}
if [ $local = false ]; then
# Installation directories for a non-local build
case $bindir_spec/$prefix_spec in
yes/*) BINDIR=$bindir ;;
no/yes) BINDIR=$prefix/bin ;;
*) askdir "the Coq binaries" $bindir_def
BINDIR="$answer";;
esac
case $libdir_spec/$prefix_spec/$ARCH in
yes/*) LIBDIR=$libdir;;
no/yes/win32) LIBDIR=$prefix;;
no/yes/*) LIBDIR=$prefix/lib/coq ;;
*) askdir "the Coq library" $libdir_def
LIBDIR="$answer";;
esac
libdir_spec=yes
case $configdir_spec/$prefix_spec/$ARCH in
yes/*) CONFIGDIR=$configdir;;
no/yes/win32) CONFIGDIR=$prefix/config;;
no/yes/*) CONFIGDIR=$prefix/etc/xdg/coq;;
*) askdir "the Coqide configuration files" $configdir_def
CONFIGDIR="$answer";;
esac
if [ "$CONFIGDIR" != "$configdir_def" ]; then configdir_spec=yes; fi
case $datadir_spec/$prefix_spec in
yes/*) DATADIR=$datadir;;
no/yes) DATADIR=$prefix/share/coq;;
*) askdir "the Coqide data files" $datadir_def
DATADIR="$answer";;
esac
if [ "$DATADIR" != "datadir_def" ]; then datadir_spec=yes; fi
case $mandir_spec/$prefix_spec in
yes/*) MANDIR=$mandir;;
no/yes) MANDIR=$prefix/share/man ;;
*) askdir "the Coq man pages" $mandir_def
MANDIR="$answer";;
esac
case $docdir_spec/$prefix_spec in
yes/*) DOCDIR=$docdir;;
no/yes) DOCDIR=$prefix/share/doc/coq;;
*) askdir "the Coq documentation [%s]? " $docdir_def
DOCDIR="$answer";;
esac
case $emacslib_spec/$prefix_spec/$ARCH in
yes/*) EMACSLIB=$emacslib;;
no/yes/win32) EMACSLIB=$prefix/emacs ;;
no/yes/*) EMACSLIB=$prefix/share/emacs/site-lisp ;;
*) askdir "the Coq Emacs mode" $emacslib_def
EMACSLIB="$answer";;
esac
case $coqdocdir_spec/$prefix_spec/$ARCH in
yes/*) COQDOCDIR=$coqdocdir;;
no/yes/win32) COQDOCDIR=$prefix/latex ;;
no/yes/*) COQDOCDIR=$prefix/share/emacs/site-lisp ;;
*) askdir "Coqdoc TeX/LaTeX files" $coqdocdir_def
COQDOCDIR="$answer";;
esac
else # local build
CONFIGDIR=$COQTOP/ide
DATADIR=$COQTOP/ide
configdir_spec=yes
datadir_spec=yes
fi
# Determine if we enable -custom by default (Windows and MacOS)
CUSTOM_OS=no
if [ "$ARCH" = "win32" ] || [ "$ARCH" = "Darwin" ]; then
CUSTOM_OS=yes
fi
BUILDLDPATH="# you might want to set CAML_LD_LIBRARY_PATH by hand!"
case $coqrunbyteflags_spec/$local/$custom_spec/$CUSTOM_OS in
yes/*/*/*) COQRUNBYTEFLAGS="$coqrunbyteflags";;
*/*/yes/*|*/*/*/yes) COQRUNBYTEFLAGS="-custom";;
*/true/*/*) COQRUNBYTEFLAGS="-dllib -lcoqrun -dllpath '$COQTOP'/kernel/byterun";;
*)
COQRUNBYTEFLAGS="-dllib -lcoqrun -dllpath '$LIBDIR'"
BUILDLDPATH="export CAML_LD_LIBRARY_PATH='$COQTOP'/kernel/byterun";;
esac
case $coqtoolsbyteflags_spec/$custom_spec/$CUSTOM_OS in
yes/*/*) COQTOOLSBYTEFLAGS="$coqtoolsbyteflags";;
*/yes/*|*/*/yes) COQTOOLSBYTEFLAGS="-custom";;
*) COQTOOLSBYTEFLAGS="";;
esac
###########################################
# Summary of the configuration
echo ""
echo " Architecture : $ARCH"
if test ! -z "$OS" ; then
echo " Operating system : $OS"
fi
echo " Coq VM bytecode link flags : $COQRUNBYTEFLAGS"
echo " Coq tools bytecode link flags : $COQTOOLSBYTEFLAGS"
echo " OS dependent libraries : $OSDEPLIBS"
echo " Objective-Caml/Camlp4 version : $CAMLVERSION"
echo " Objective-Caml/Camlp4 binaries in : $CAMLBIN"
echo " Objective-Caml library in : $CAMLLIB"
echo " Camlp4 library in : $CAMLP4LIB"
if test "$best_compiler" = opt ; then
echo " Native dynamic link support : $HASNATDYNLINK"
fi
if test "$COQIDE" != "no"; then
echo " Lablgtk2 library in : $LABLGTKLIB"
fi
if test "$IDEARCHDEF" = "QUARTZ"; then
echo " Mac OS integration is on"
fi
if test "$with_doc" = "all"; then
echo " Documentation : All"
else
echo " Documentation : None"
fi
echo " CoqIde : $COQIDE"
echo " Web browser : $BROWSER"
echo " Coq web site : $WWWCOQ"
echo ""
if test "$no_native_compiler" = "true"; then
echo " Native compiler for conversion and normalization disabled"
echo ""
fi
if test "$local" = "true"; then
echo " Local build, no installation..."
echo ""
else
echo " Paths for true installation:"
echo " binaries will be copied in $BINDIR"
echo " library will be copied in $LIBDIR"
echo " config files will be copied in $CONFIGDIR"
echo " data files will be copied in $DATADIR"
echo " man pages will be copied in $MANDIR"
echo " documentation will be copied in $DOCDIR"
echo " emacs mode will be copied in $EMACSLIB"
echo ""
fi
##################################################
# Building the dev/ocamldebug-coq file
##################################################
OCAMLDEBUGCOQ=dev/ocamldebug-coq
if test "$coq_debug_flag" = "-g" ; then
rm -f $OCAMLDEBUGCOQ
sed -e "s|COQTOPDIRECTORY|$COQTOP|" \
-e "s|CAMLBINDIRECTORY|$CAMLBIN|" \
-e "s|CAMLP4LIBDIRECTORY|$FULLCAMLP4LIB|"\
$OCAMLDEBUGCOQ.template > $OCAMLDEBUGCOQ
chmod a-w,a+x $OCAMLDEBUGCOQ
fi
##############################################
# Creation of configuration files
##############################################
mlconfig_file=config/coq_config.ml
mymlconfig_file=myocamlbuild_config.ml
config_file=config/Makefile
config_template=config/Makefile.template
### Warning !!
### After this line, be careful when using variables,
### since some of them will be escaped
escape_string () {
"$ocamlexec" "tools/escape_string.ml" "$1"
}
# Escaped version of browser command
BROWSER=`escape_string "$BROWSER"`
# Under Windows, we now escape the backslashes that will ends in
# ocaml strings (coq_config.ml) or in Makefile variables.
case $ARCH in
win32)
BINDIR=`escape_string "$BINDIR"`
LIBDIR=`escape_string "$LIBDIR"`
CONFIGDIR=`escape_string "$CONFIGDIR"`
DATADIR=`escape_string "$DATADIR"`
CAMLBIN=`escape_string "$CAMLBIN"`
CAMLLIB=`escape_string "$CAMLLIB"`
MANDIR=`escape_string "$MANDIR"`
DOCDIR=`escape_string "$DOCDIR"`
EMACSLIB=`escape_string "$EMACSLIB"`
COQDOCDIR=`escape_string "$COQDOCDIR"`
CAMLP4BIN=`escape_string "$CAMLP4BIN"`
CAMLP4LIB=`escape_string "$CAMLP4LIB"`
LABLGTKINCLUDES=`escape_string "$LABLGTKINCLUDES"`
COQRUNBYTEFLAGS=`escape_string "$COQRUNBYTEFLAGS"`
COQTOOLSBYTEFLAGS=`escape_string "$COQTOOLSBYTEFLAGS"`
BUILDLDPATH=`escape_string "$BUILDLDPATH"`
ocamlexec=`escape_string "$ocamlexec"`
bytecamlc=`escape_string "$bytecamlc"`
nativecamlc=`escape_string "$nativecamlc"`
ocamlmklibexec=`escape_string "$ocamlmklibexec"`
ocamldepexec=`escape_string "$ocamldepexec"`
ocamldocexec=`escape_string "$ocamldocexec"`
ocamllexexec=`escape_string "$ocamllexexec"`
ocamlyaccexec=`escape_string "$ocamlyaccexec"`
camlp4oexec=`escape_string "$camlp4oexec"`
;;
esac
case $libdir_spec in
yes) LIBDIR_OPTION="Some \"$LIBDIR\"";;
*) LIBDIR_OPTION="None";;
esac