forked from affeldt-aist/mathcomp-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-jp.html
1085 lines (1041 loc) · 51.2 KB
/
install-jp.html
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2022-08-24 Wed 08:36 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Coq/SSReflect/MathCompの設定</title>
<meta name="generator" content="Org mode" />
<meta name="author" content="Reynald Affeldt" />
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: visible;
padding-top: 1.2em;
}
pre.src:before {
display: none;
position: absolute;
background-color: white;
top: -10px;
right: 10px;
padding: 3px;
border: 1px solid black;
}
pre.src:hover:before { display: inline;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.equation-container {
display: table;
text-align: center;
width: 100%;
}
.equation {
vertical-align: middle;
}
.equation-label {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { width: 90%; }
/*]]>*/-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="../index.css">
<style>.vspace { margin-bottom: 20cm; }</style>
<style type="text/css"> body {width: 70em; font-family: Arial, Helvetica; margin-left: 5em; font-size: large;} </style>
<script type="text/javascript">
/*
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012-2020 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="content">
<h1 class="title">Coq/SSReflect/MathCompの設定</h1>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#org3f43635">1. 設定成功報告</a></li>
<li><a href="#org9d790f1">2. Coq/SSReflect/MathCompの設定</a>
<ul>
<li><a href="#orga50aa45">2.1. Unix系のオペレーティングシステムの場合</a>
<ul>
<li><a href="#orgaf16bfd">2.1.1. パッケージからの設定</a></li>
<li><a href="#orgb311646">2.1.2. [ADVANCED] ソースコードからのコンパイル</a></li>
</ul>
</li>
<li><a href="#orgf81bd3e">2.2. Windows 10 & 11の場合</a>
<ul>
<li><a href="#org477b8d6">2.2.1. 事前準備</a></li>
<li><a href="#orged276bf">2.2.2. 方法1 (WSL 2 + opam)</a></li>
<li><a href="#orgdc7b326">2.2.3. 方法2 (cygwin + バイナリ)</a></li>
<li><a href="#orga60872a">2.2.4. [ADVANCED] 方法3 (cygwin + opam)</a></li>
</ul>
</li>
<li><a href="#org471cb28">2.3. [WIP] MacOSの場合</a></li>
</ul>
</li>
<li><a href="#org7e7c466">3. IDEの設定</a>
<ul>
<li><a href="#orgb470810">3.1. IDEの基本的な使い方</a></li>
<li><a href="#org0f73a66">3.2. Proof Generalの設定</a>
<ul>
<li><a href="#org0096f29">3.2.1. 特別な設定の読み込み</a></li>
</ul>
</li>
<li><a href="#orgb9a2c58">3.3. CoqIDEの設定</a></li>
<li><a href="#org96049e0">3.4. vscodeの設定</a></li>
</ul>
</li>
<li><a href="#org21c186d">4. 追加情報</a></li>
</ul>
</div>
</div>
<p style="text-align:center">
<span style="color:red">
→ <a href="https://github.com/affeldt-aist/mathcomp-install">github版</a> ←
</span>
</p>
<div id="outline-container-org3f43635" class="outline-2">
<h2 id="org3f43635"><span class="section-number-2">1</span> 設定成功報告</h2>
<div class="outline-text-2" id="text-1">
<ul class="org-ul">
<li><span class="timestamp-wrapper"><span class="timestamp">[2022-08-03 Wed]</span></span>: Windows 11, Coq 8.15, MathComp 1.15 (WSL 2)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2022-03-01 Tue]</span></span>: Windows 11 21H2, Coq 8.15, MathComp 1.14 (WSL 2)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2021-04-12 Mon]</span></span>: Windows 10 Home, Coq 8.13.2, MathComp 1.12 (WSL 2)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2020-11-20 Fri]</span></span>: Debian 10.6, Coq 8.12.1 (opam), MathComp 1.11.0 (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2020-11-09 Mon]</span></span>: Ubuntu 20.04.1 LTS, Coq github master, MathComp github master</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2020-08-18 Tue]</span></span>: Ubuntu 20.04.1 LTS, Coq 8.12.0 (opam), MathComp 1.11.0 (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2019-09-24 Tue]</span></span>: Windows 10, Coq 8.10beta3 (WSL)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2019-07-12 Fri]</span></span>: Windows 10, Coq 8.9.1 (opam), MathComp 1.9.0 (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2019-07-08 Mon]</span></span>: Windows 10, Coq 8.9.1 (binary), MathComp 1.9.0 (source)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2019-05-30 Thu]</span></span>: Debian 9.7, OCaml 4.06.1, Coq 8.9.1, MathComp 1.9.0 (source)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2019-04-16 Tue]</span></span>: Debian 9.8, OCaml 4.07.1, Coq 8.9.0 (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2019-04-09 Tue]</span></span>: Debian 9.7, OCaml 4.06.1, Coq 8.9.0, MathComp-1.8.0 (source)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2018-10-02 Tue]</span></span>: Debian 9.5, OCaml 4.06.1, Coq 8.8.2 (source), MathComp (github);
Windows 10, OCaml 4.04.0 (opam), Coq 8.8.2 (source), MathComp (gitjhub)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2018-08-07 Tue]</span></span>: Debian 9.5, OCaml 4.06.0, Coq 8.8.1 (source), MathComp(github);
Windows 10, OCaml 4.04.0 (opam), Coq 8.8.1 (source), MathComp (github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2018-04-25 Wed]</span></span>: Debian 9.4, OCaml 4.04.2, Coq 8.8.0 (source), MathComp (github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2018-03-08 Thu]</span></span>: Windows 10, OCaml 4.04.0 (opam), Coq 8.7.2 (source), MathComp (github);
Debian 9.3, OCaml 4.04.2, Coq 8.7.2 (source), MathComp (github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2018-01-16 Tue]</span></span>: Windows 10, OCaml 4.04.0 (opam), Coq 8.7.1 (source), MathComp (github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2017-11-28 Tue]</span></span>: Windows 10, OCaml (opam), Coq 8.7.0 (source), MathComp (github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2017-10-24 Tue]</span></span>: Debian 9.1, Coq 8.7.0 (source), MathComp (github);
Debian, Coq 8.7.0 (opam), MathComp 1.6.2 (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2017-09-29 Fri]</span></span>: Debian 9.1, Coq 8.7-beta1 (source), MathComp (github);
Debian, Coq 8.6.1 (opam), MathComp 1.6.1 (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2017-07-26 Wed]</span></span>: Debian 9.1, Coq 8.6.1 (source), MathComp (github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2017-01-12 Thu]</span></span>: Windows 8.1, Coq (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2017-01-06 Fri]</span></span>: Debian 8.6, (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2016-12-21 Wed]</span></span>: Debian 8.6 / Ubuntu 16.04.1 LTS, OCaml 4.04.0 (opam),
Coq 8.6 (source/github), MathComp 1.6.1 (source/github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2016-02-01 Mon]</span></span>: Windows 8.1, Coq 8.5, MathComp 1.6 (binary);
Ubuntu Server 14.04.1 LTS, (source)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2015-10-30 Fri]</span></span>: (github)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2015-09-07 Mon]</span></span>: Debian 8.0, (opam)</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2015-06-08 Mon]</span></span>: Windows 8.1 cygwin64, coq-installer-8.5beta2.exe, ssreflectmathcomp-1.5.coq85beta2.exe</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2015-04-04 Sat]</span></span>: Windows 8.1 cygwin64, ssreflectmathcomp-1.5.coq85beta1</li>
<li><span class="timestamp-wrapper"><span class="timestamp">[2014-11-19 Wed]</span></span>: Ubuntu Server 14.04.1 LTS, OCaml 4.01.0, camlp5 6.11, Coq 8.4pl5, SSReflect 1.5, MathComp 1.5</li>
</ul>
</div>
</div>
<div id="outline-container-org9d790f1" class="outline-2">
<h2 id="org9d790f1"><span class="section-number-2">2</span> Coq/SSReflect/MathCompの設定</h2>
<div class="outline-text-2" id="text-2">
<p>
設定はUnix系のオペレーティングシステムでスムーズです. ただし, Linuxの
パッケージマネージャー(Debianのapt等)のバージョンはいつも遅れています
ので, 勧められません. 使える設定方法は2つあります. opamによる設定は
簡単ですが, opamの理解が少し要ります. 最新のパッケージが出来上がるまで
に時間はあまりかかりません. トラブルはあまりありません. ソースコードか
らコンパイルすることもスムーズです. 最新版を設定する方法として勧めます
(リーリスされいないライブラリ(githubのmasterなど)を使いたいとき).
</p>
<p>
Windowsの場合, バイナリが用意されています. ソースコードからコンパイルすることは手間がかかります.
</p>
</div>
<div id="outline-container-orga50aa45" class="outline-3">
<h3 id="orga50aa45"><span class="section-number-3">2.1</span> Unix系のオペレーティングシステムの場合</h3>
<div class="outline-text-3" id="text-2-1">
</div>
<div id="outline-container-orgaf16bfd" class="outline-4">
<h4 id="orgaf16bfd"><span class="section-number-4">2.1.1</span> パッケージからの設定</h4>
<div class="outline-text-4" id="text-2-1-1">
<p>
OCamlの専用パッケージマネージャー<a href="https://opam.ocaml.org/"> opam</a> でCoqのパッケージを設定ができます. Debianのaptほど遅れていません.
SSReflectとMathCompを含むCoqライブラリが用意されています(<a href="https://coq.inria.fr/opam/www/">Coq OPAM packages</a>).
現時点<span class="timestamp-wrapper"><span class="timestamp">[2020-11-09 Mon]</span></span>, <code>opam show coq-mathcomp-ssreflect</code> によると,
1.11.0版のパッケージがあります.
</p>
<ul class="org-ul">
<li>最初に, <a href="https://opam.ocaml.org/doc/Install.html">opamを設定</a>します:
<ul class="org-ul">
<li>opamをダウンロードします
<ul class="org-ul">
<li>オペレーティングシステムのパッケージマネージャーを使います(例えば, <code>sudo apt get install opam</code>).
<span class="timestamp-wrapper"><span class="timestamp">[2021-04-12 Mon] </span></span> 時点、Debian系のOS上のバージョンは2.0.3以上ですので, 大丈夫でしょう.</li>
<li>あるいは, <code>sh <(curl -sL https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh)</code>
<ul class="org-ul">
<li>superuserの権利が要るかもしれません</li>
<li><code>/usr/local/bin</code> にインストールされます</li>
</ul></li>
</ul></li>
<li><code>opam init</code>
<ul class="org-ul">
<li><code>make</code>, <code>m4</code>, <code>gcc</code>, <code>bubblewrap</code> が要ります</li>
<li><code>/.profile</code> が更新されます
<ul class="org-ul">
<li>次のログイン, 反映されます(<code>.bashrc</code> から同じ更新しなくてもいいでしょう)</li>
</ul></li>
<li>コンパイラを指定できます; 例えば, <code>opam init --comp=4.11.2</code></li>
<li><code>eval $(opam env)</code> で設定が完了します</li>
</ul></li>
<li>opamは既に設定された場合, 最新のパッケージの情報を取得: <code>opam update</code></li>
<li>使えるパッケージのリスト: <code>opam list -a</code></li>
</ul></li>
<li>次に, OCamlの環境を設定します:
<ul class="org-ul">
<li><code>opam switch 4.11.2</code>
<ul class="org-ul">
<li>初めての設定なら, <code>opam switch create 4.11.2</code> (<span class="timestamp-wrapper"><span class="timestamp">[2022-02-19 Sat] </span></span> または, <code>opam switch create ocaml-base-compiler.4.11.2</code> ?)
<ul class="org-ul">
<li><code>opam switch list-available</code> で可能な選択肢が分かります</li>
<li><code>opam switch list</code> ですでに用意されているOCamlのコンパイラを選べます</li>
</ul></li>
</ul></li>
</ul></li>
</ul>
<p>
- <span class="timestamp-wrapper"><span class="timestamp">[2021-04-12 Mon] </span></span> 時点, 4.13.0は最新です
</p>
<ul class="org-ul">
<li><code>eval `opam config env`</code> また <code>eval $(opam env)</code>
<ul class="org-ul">
<li><code>opam switch</code> を行った後, 必要です</li>
</ul></li>
<li>次にCoqに必要なOCamlのプログラムを設定します(個人の環境の整備によって, 他のプログラムを設定する必要があるかもしれませんが, opamが教えます):
<ul class="org-ul">
<li><code>opam update</code> で最新バージョンの情報を取得します</li>
<li><code>opam install ocamlfind</code> (<span class="timestamp-wrapper"><span class="timestamp">[2021-04-12 Mon]</span></span>時点, 1.9.1は最新です)</li>
<li><code>opam install num</code> (<span class="timestamp-wrapper"><span class="timestamp">[2021-04-12 Mon]</span></span>時点, 1.4は最新です; Ocaml 4.06.0から必要です)</li>
</ul></li>
</ul>
<ul class="org-ul">
<li>次に, Coqを設定します:
<ul class="org-ul">
<li>Coqのリポジトリを追加: <code>opam repo add coq-released https://coq.inria.fr/opam/released</code>
<ul class="org-ul">
<li><code>opam repo add coq-released --set-default</code> を行うと、これから新しい <code>switch</code> を作ると、Coqのリポジトリを自動的に追加されます</li>
<li><a href="https://github.com/coq/opam-coq-archive/tree/master/released/packages">Coqのopamパッケージ</a> (prefixは <code>coq-</code> です)</li>
<li><code>opam repo</code> でリポジトリをリストアップできます</li>
</ul></li>
<li><code>opam install coq.8.13.2</code> (<span class="timestamp-wrapper"><span class="timestamp">[2021-04-12 Mon]</span></span>時点, 最新版)
<ul class="org-ul">
<li><code>conf-findutils</code>, <code>conf-gmp</code>, <code>zarith</code> に依存します
<ul class="org-ul">
<li>Debian/Ubuntuで 新しいライブラリの設定が要るかもしれません: <code>libgmp-dev</code></li>
</ul></li>
</ul></li>
</ul></li>
<li>最後に, MathCompを設定します:
<ul class="org-ul">
<li><code>opam install coq-mathcomp-ssreflect.1.12.0</code></li>
<li>その他のMathCompのパッケージ(prefixは <code>coq-mathcomp</code> です):
<ul class="org-ul">
<li><code>coq-mathcomp-fingroup</code></li>
<li><code>coq-mathcomp-algebra</code></li>
<li><code>coq-mathcomp-solvable</code></li>
<li><code>coq-mathcomp-field</code></li>
<li><code>coq-mathcomp-character</code></li>
<li><code>coq-mathcomp-finmap</code></li>
<li><code>coq-mathcomp-bigenough</code></li>
<li><code>coq-mathcomp-sum-of-two-square</code>, <code>coq-mathcomp-multinomials</code> (user contrib)</li>
<li><code>coq-mathcomp-odd-order</code> (先端な応用ですので, 要らないかもしれません)</li>
</ul></li>
</ul></li>
<li>今度の更新は, <code>opam update</code> , <code>opam upgrade coq.8.13.2</code> (例えば) で済みます.
要らなくなったパッケージは <code>opam remove coq-mathcomp-odd-order</code> (例えば)で消せます.
問題が生じる場合, <code>opam reinstall coq</code> もできます.</li>
</ul>
</div>
</div>
<div id="outline-container-orgb311646" class="outline-4">
<h4 id="orgb311646"><span class="section-number-4">2.1.2</span> [ADVANCED] ソースコードからのコンパイル</h4>
<div class="outline-text-4" id="text-2-1-2">
<p>
コンパイルのために必要なソフトウェアは通常のシステムで既にあるオープンソースソフトウェアです.
Unix系なら, パッケージマネージャーから得られます. 必要なソフトウェアの情報のまとめ:
</p>
<ul class="org-ul">
<li>GNU make (バージョン >= 3.81)</li>
<li>C compiler</li>
<li>TeX/LaTeX (ドキュメントのため)</li>
<li><a href="https://ocaml.org/">OCaml</a> (バージョン >= 4.05.0; <code>ocaml -version</code>) (<span class="timestamp-wrapper"><span class="timestamp">[2020-11-09 Mon]</span></span>時点の最新版: 4.12.0) (<a href="https://ocaml.org/docs/install.html">インストール</a>)</li>
<li><a href="https://github.com/ocaml/Zarith">ZArith</a> (<span class="timestamp-wrapper"><span class="timestamp">[2020-11-09 Mon]</span></span>時点、最新版: 1.10)
<ul class="org-ul">
<li>インストール: <code>opam install zarith</code>
<ul class="org-ul">
<li>パッケージマネージャーから: <code>libgmp-dev</code></li>
</ul></li>
</ul></li>
<li>CoqIDEのため: <a href="https://github.com/garrigue/lablgtk">lablgtk3-sourceview3</a>, gtk+3, gtksourceview3
<ul class="org-ul">
<li>インストール: <code>opam install lablgtk3-sourceview3</code>
<ul class="org-ul">
<li>パッケージマネージャーから: <code>libcairo2-dev</code>, <code>libexpat1-dev</code>, <code>libgtk-3-dev</code>, <code>libgtksourceview-3.0-dev</code></li>
</ul></li>
</ul></li>
<li><a href="https://camlp5.github.io/">Camlp5</a> (バージョン >= 6.14?; <code>camlp5 -v</code>, 最新版<span class="timestamp-wrapper"><span class="timestamp">[2020-11-09 Mon]</span></span>: 8.00, transitionalモード?)
<ul class="org-ul">
<li>不要になりましたか?</li>
</ul></li>
</ul>
</div>
<ol class="org-ol">
<li><a id="org4c1d31c"></a>ソースコードのアーカイブからコンパイル<br />
<div class="outline-text-5" id="text-2-1-2-1">
<p>
Coq(SSReflectの一部を含みます)のコンパイル成功報告:
</p>
<ul class="org-ul">
<li><code>ocamlc</code> などを使える状態かを確認します(Unixで <code>$PATH</code> に入っていますか? 例えば, <code>ocamlc -v</code> を試します)</li>
<li>Coqをダウンロードします
<ul class="org-ul">
<li>gitで: <code>git clone https://github.com/coq/coq.git</code>
<ul class="org-ul">
<li><code>git ls-remote --heads</code></li>
<li>trunkブランチからv8.12ブランチに移動: <code>git checkout v8.12</code></li>
</ul></li>
<li>または, アーカイブを <a href="https://github.com/coq/coq/releases/">ダウンロード</a> します</li>
</ul></li>
<li>できたディレクトリを <code>COQCOMPILEDIRECTORY</code> と呼びます</li>
<li>Coqをソースコードからコンパイルします
<ul class="org-ul">
<li><code>cd coq</code> あるいは <code>cd coq-8.12.0</code></li>
<li><code>./configure</code>
<ul class="org-ul">
<li>バイナリのインストールは不要なら, <code>-local</code> を使います</li>
<li>バイナリの位置に関して, デフォルト選択で結構です
(バイナリは <code>/usr/local/bin</code>, ライブラリは <code>/usr/local/lib/coq</code> 等, superuserになる必要があります)</li>
<li>バイナリのインストールの場所を指定するために, <code>-prefix</code> を使います</li>
</ul></li>
<li><code>make</code> (ちょっと時間がかかりますので, <code>-jX</code> で並列コンパイルできます)
<ul class="org-ul">
<li><code>make byte</code> でバイトコード版もできます(デバグに使います)</li>
</ul></li>
<li><code>sudo make install</code>
<ul class="org-ul">
<li><code>-local</code> なら不要 (superuserにならなくいいです)</li>
<li>superuserにならないと, デフォルト選択(<code>/usr/local/bin</code> 等)でのインストールが失敗します</li>
<li>SSReflectのプラッグインとセオリー(の一部)は
<code>COQINSTALLDIRECTORY/plugins/{ssr,ssrmatching,ssrsearch}/</code> と
<code>COQINSTALLDIRECTORY/theories/ssr</code> に置かれます</li>
</ul></li>
<li><code>-local</code> の場合以外, <code>make clean</code> できます</li>
<li><code>cd ..</code></li>
</ul></li>
<li>coqtop等は使えるようになった状態であるかどうかを確認します
<ul class="org-ul">
<li><code>export COQBIN=COQINSTALLDIRECTORY/bin/</code> という変数を作っておいていいです
(<code>.bashrc</code> ファイルなら, <code>source .bashrc</code> を行います)</li>
<li>特に, Unixで <code>$PATH</code> に追加します(例えば, <code>export PATH=$COQBIN:$PATH</code>)</li>
</ul></li>
<li>テスト:</li>
</ul>
<pre class="example">
$ coqtop
Welcome to machine:directory,master (commit)
Coq <
</pre>
<p>
MathComp 1.11.0<span class="timestamp-wrapper"><span class="timestamp">[2020-11-09 Mon]</span></span>のコンパイル成功報告:
</p>
<ul class="org-ul">
<li>既存のMathCompを削除したほうが無難です
<ul class="org-ul">
<li><code>COQINSTALLDIRECTORY/user-contrib</code> の <code>mathcomp</code> ディレクトリを削除か名前変更します</li>
</ul></li>
<li>MathCompのsourcesのソースをダウンロードします
<ul class="org-ul">
<li><code>git clone https://github.com/math-comp/math-comp.git</code>
<ul class="org-ul">
<li>すでに <code>clone</code> されているなら, <code>git pull --rebase</code></li>
</ul></li>
<li>または, アーカイブを <a href="https://github.com/math-comp/math-comp/releases">ダウンロード</a> します</li>
</ul></li>
<li>MathCompをコンパイルします:
<ul class="org-ul">
<li><code>cd math-comp/mathcomp</code></li>
<li><code>export COQBIN=/COQINSTALLDIRECTORY/bin/</code> (coqtop等のバイナリがあるディレクトリ)</li>
<li><code>export PATH=$COQBIN:$PATH</code></li>
<li><code>make</code> (ちょっと時間がかかりますので, <code>-j</code> オプションで並列コンパイルできます)
<ul class="org-ul">
<li><code>-j</code> オプションで約10分かかります</li>
<li>更新なら, その前, <code>make clean</code> が要るかもしれません</li>
</ul></li>
<li><code>sudo make install</code>
<ul class="org-ul">
<li>その結果で, ライブラリは <code>COQINSTALLDIRECTORY/user-contrib/mathcomp</code> に置かれます</li>
<li>しないと、明確に示す必要があります</li>
<li>localインストールなら, superuserならなくていいです</li>
</ul></li>
<li><code>cd ../..</code></li>
</ul></li>
<li>coqtop等は使えるようになった状態であるかどうかを確認します. 例えば:</li>
</ul>
<pre class="example">
$ coqtop
Welcome to machine:directory,master (commit)
Coq < From mathcomp Require Import eqtype.
[Loading ML file ssrmatching_plugin.cmxs ... done]
[Loading ML file ssreflect_plugin.cmxs ... done]
Coq <
</pre>
<p>
さらに, MathComp上のライブラリをソースからコンパイルする場合,
今後そのライブラリの <code>_CoqProject</code> を更新します.
例えば, <code>-R ../math-comp/mathcomp mathcomp</code> の追加によって,
ソースからコンパイルしたMathCompを指せます.
</p>
</div>
</li>
</ol>
</div>
</div>
<div id="outline-container-orgf81bd3e" class="outline-3">
<h3 id="orgf81bd3e"><span class="section-number-3">2.2</span> Windows 10 & 11の場合</h3>
<div class="outline-text-3" id="text-2-2">
<p>
注意: WindowsでのCoqの設定は長い歴史の問題がありますので, 複数の方法を説明しますが,
設定のために時間があるなら「方法1: WSL 2 + opam」を勧めます.
時間ない場合,「方法2: cygwin + バイナリ」を勧めます.
</p>
<p>
Windowsで3つの設定方法を説明します:
</p>
<ul class="org-ul">
<li>方法1: WSL 2 + opam (WSL 2でopamを用いてCoqをコンパイルします)</li>
<li>方法2: cygwin + バイナリ (cygwin上Coqのバイナリを使います)</li>
<li>方法3: cygwin + opam (customなopamを用いてCoqをコンパイルします)</li>
</ul>
</div>
<div id="outline-container-org477b8d6" class="outline-4">
<h4 id="org477b8d6"><span class="section-number-4">2.2.1</span> 事前準備</h4>
<div class="outline-text-4" id="text-2-2-1">
</div>
<ol class="org-ol">
<li><a id="orgb5a20f9"></a><a href="https://docs.microsoft.com/ja-jp/windows/wsl/install-win10">方法1: WSL 2</a> の設定<br />
<div class="outline-text-5" id="text-2-2-1-1">
<p>
NB: <span class="timestamp-wrapper"><span class="timestamp">[2022-02-19 Sat] </span></span> Windows 10 version 2004から(Windows 11を含めて), ~wsl –install~で,
virtualizationを設定し、最新のkernelのLinux distributionを設定します.
</p>
<ul class="org-ul">
<li>Windowsのバージョンを確認します: <code>Windows Key + R</code> を入力し, <code>winver</code> を実行します (<a href="https://support.microsoft.com/ja-jp/help/13443/windows-which-version-am-i-running">ref</a>).
<ul class="org-ul">
<li>必要であれば1903以降のバージョンにアップデートします</li>
</ul></li>
<li>WSL 2本体と好きなLinuxディストリビューションをインストールします (<a href="https://docs.microsoft.com/ja-jp/windows/wsl/install-win10">ref</a>):
<ol class="org-ol">
<li>管理者としてWindows PowerShellを起動し, 次のコマンドを実行します:
<code>wsl --install</code></li>
<li>再起動すると、Ubuntuが起動する</li>
</ol></li>
</ul>
<ul class="org-ul">
<li>スタートメニューまたはWindowsの検索窓からLinuxを起動します
<ol class="org-ol">
<li>ユーザー名とパスワードを入力します</li>
<li>パッケージマネージャーを使って, 基本的なソフトウェアをインストールします:
<ul class="org-ul">
<li>Ubuntu 18.04の場合には <code>sudo add-apt-repository ppa:avsm/ppa</code> を実行します.</li>
<li><code>sudo apt update</code></li>
<li><code>sudo apt-get install</code></li>
</ul></li>
</ol></li>
<li>*emacs*の場合:
<ul class="org-ul">
<li>WSL 2上でX上のemacsなどを使うように, Xorgサーバーを設定します:
<ol class="org-ol">
<li><a href="https://sourceforge.net/projects/vcxsrv/">VcXsrv</a>をダウンロードして, インストールします</li>
<li><code>XLaunch</code> アイコンでVcXsrvを起動します</li>
<li><code>multiple windows</code> ・ <code>start no client</code> ・ <code>Disable access control</code> を選び, configurationを保存します</li>
<li>Windows 10の設定を調整します
<ul class="org-ul">
<li>設定の「ファイアウォールとネットワーク保護」を開きます</li>
<li>「パブリックネットワーク」の下にある「詳細設定」にクリックします</li>
<li>「受信の規則」の「VcXsrv windows xserver」を開きます</li>
<li>「全般」の「操作」を「接続を許可する」にします</li>
<li>「スクープ」に「192.168.0.0/16」,「172.17.0.0/16」,「172.18.0.0/16」,「172.19.0.0/16」,…, 「172.26.0.0/16」,「172.27.0.0/16」,「172.28.0.0/16」,「172.27.0.0/16」などを追加します。
実際に、どのアドレスが本当に必要なのか、WSLを起動して <code>echo $DISPLAY</code> で分かります。ただし、よく変わりますので、いくつかを先に登録しておいていいでしょう。</li>
</ul></li>
</ol></li>
<li>WSLのshellで <code>DISPLAY</code> という環境変数の設定も必要です
<ul class="org-ul">
<li><code>./bashrc</code> に <code>export DISPLAY=$(awk '/nameserver / {print $2; exit}' /etc/resolv.conf 2>/dev/null):0</code> を加えます</li>
</ul></li>
</ul></li>
<li>*VSCode*の場合
<ol class="org-ol">
<li>VSCode(Windows版)をインストールする</li>
<li>拡張機能で <code>wsl</code> と検索して、Remote - WSL をインストールする</li>
<li>Ubuntuを再起動する</li>
<li><code>code .</code> を実行すると、VSCodeが開き連動していることが確認できる</li>
<li>確認できたら、以降の設定は必要なく、2.1.1 「パッケージからの設定」と同じ手順で進める</li>
</ol></li>
</ul>
</div>
</li>
<li><a id="org920499c"></a><a href="https://www.cygwin.com/">方法2・方法3: cygwin</a>の設定<br />
<div class="outline-text-5" id="text-2-2-1-2">
<ul class="org-ul">
<li>cygwinをインストールするよう, <a href="https://www.cygwin.com/">https://www.cygwin.com/</a>から, <code>setup-x86_64.exe</code>
(最新版: 2.897 <span class="timestamp-wrapper"><span class="timestamp">[2019-07-08 Mon]</span></span>)をダウンロードして, 実行します.
<ul class="org-ul">
<li>最低限として, <code>make</code>, <code>unzip</code>, <code>git</code>, <code>patch</code>, <code>diffutils</code>,
<code>emacs</code>, <code>emacs-X11</code>, <code>vim</code>, <code>xinit</code>, <code>texlive</code> のパケージを選びま
す.</li>
<li>設定は数分かかります.</li>
</ul></li>
<li>デスクトップの"Cygwin64 Terminal"アイコンをdouble-clickします.</li>
<li>Terminalにて, <code>startxwin</code> を実行して, X11を起動します.
<ul class="org-ul">
<li>そうすると, System Trayアイコンの中に, Cygwin-X11アイコンができるます.
<ul class="org-ul">
<li>みどろの「X」が入っている黒い「C」</li>
</ul></li>
<li>右クリックで「システムツール」のメニューからXTermの起動ができます.
<ul class="org-ul">
<li>そうすると, XTermからemacsの実行ができます</li>
</ul></li>
</ul></li>
<li>cygwinの設定に関して:
<ul class="org-ul">
<li><code>.bashrc</code> に <code>export LANG=C</code> が望ましいです.</li>
<li>日本のキーボードを認識できるように, <code>setxkbmap -model jp106 -layout jp</code> を使えます.</li>
<li>CAPS LOCKをCTRLにするように, 次の内容を含む <code>Xmodmap</code> ファイルを用意してから,
<code>.bashrc</code> に <code>xmodmap /home/username/Xmodmap</code> を加えます:</li>
</ul></li>
</ul>
<pre class="example">
keycode 66 = Control_L
clear Lock
add Control = Control_L
</pre>
<ul class="org-ul">
<li>cygwinに関するその他の情報(例えば, cygwinのアンインストール): <a href="https://cygwin.com/faq">cygwin faq</a></li>
</ul>
</div>
</li>
</ol>
</div>
<div id="outline-container-orged276bf" class="outline-4">
<h4 id="orged276bf"><span class="section-number-4">2.2.2</span> 方法1 (WSL 2 + opam)</h4>
<div class="outline-text-4" id="text-2-2-2">
<ul class="org-ul">
<li>WSL 2の設定が済んでいるなら, 上記の
2.1.1 「パッケージからの設定」と同じ手順になります.</li>
</ul>
</div>
</div>
<div id="outline-container-orgdc7b326" class="outline-4">
<h4 id="orgdc7b326"><span class="section-number-4">2.2.3</span> 方法2 (cygwin + バイナリ)</h4>
<div class="outline-text-4" id="text-2-2-3">
<ul class="org-ul">
<li><a href="https://github.com/coq/platform/releases">Coq Platformのreleaseページ</a> から, バイナリーをダウンロードと実行します.</li>
</ul>
</div>
</div>
<div id="outline-container-orga60872a" class="outline-4">
<h4 id="orga60872a"><span class="section-number-4">2.2.4</span> [ADVANCED] 方法3 (cygwin + opam)</h4>
<div class="outline-text-4" id="text-2-2-4">
<p>
過去にcygwinのOCamlパッケージの問題はよくあった(ライブラリは足りないこと; <code>flexdll</code> のありなし)し,
cygwinで配るopamで設定するOCamlを用いてCoqのコンパイルができなかったので,
その2つの方法を使っていません. 代わりに, opamのcustomな設定を用いて, MathCompの設定ができます.
</p>
</div>
<ol class="org-ol">
<li><a id="orgb086f58"></a>opamによるOCaml等の設定<br />
<div class="outline-text-5" id="text-2-2-4-1">
<p>
<a href="https://fdopen.github.io/opam-repository-mingw/installation/">このページ</a>の手動の手順をまとめます:
</p>
<ul class="org-ul">
<li>cygwinで次のパケージを設定します:
<ul class="org-ul">
<li><code>rsync</code>, <code>curl</code>, <code>m4</code>, <code>perl</code>, <code>mingw64-x86_64-gcc-core</code> (or
mingw64-i686-gcc-core)</li>
</ul></li>
<li>opamを<a href="https://github.com/fdopen/opam-repository-mingw/releases/download/0.0.0.2/opam64.tar.xz">ダウンロード</a>します.</li>
<li>shellで次のコマンドを実行します:
<ul class="org-ul">
<li><code>tar -xf opam64.tar.xz</code></li>
<li><code>bash opam64/install.sh</code></li>
<li><code>opam init default "https://github.com/fdopen/opam-repository-mingw.git#opam2" -c "ocaml-variants.4.07.1+mingw64c" --disable-sandboxing</code>
<ul class="org-ul">
<li><code>.bash_profile</code> を変更していい</li>
</ul></li>
</ul></li>
<li><code>eval $(opam config env)</code></li>
<li><code>opam switch create 4.07.1+mingw64c</code>
<ul class="org-ul">
<li>そのコンパイラーはまだ設定されていないなら</li>
</ul></li>
<li><code>opam install camlp5</code> (<span class="timestamp-wrapper"><span class="timestamp">[2019-07-12 Fri]</span></span>'s version: 7.06)</li>
<li><code>opam install ocamlfind</code> (<span class="timestamp-wrapper"><span class="timestamp">[2019-07-12 Fri]</span></span>'s version: 1.8.0)</li>
<li><code>conf-m4</code> も設定されます</li>
<li><code>opam install depext</code></li>
<li><code>opam install depext-cygwinports</code> (<span class="timestamp-wrapper"><span class="timestamp">[2019-07-12 Fri]</span></span>'s version: 0.0.7)
<ul class="org-ul">
<li>その後, <code>/usr/x86_64-w64-mingw32/sys-root/mingw/bin</code> をパスに加える.</li>
</ul></li>
<li><code>opam install pcre</code>
<ul class="org-ul">
<li>成功することがあります;依存するライブラリの一分だけ成功しても大丈夫</li>
</ul></li>
<li><code>opam install lablgtk</code>
<ul class="org-ul">
<li>成功したことはない</li>
<li>基本的なエラー:
<code>This package requires gtk+ 2.0 development packages installed on your system</code></li>
</ul></li>
</ul>
</div>
</li>
<li><a id="orgb608950"></a>opamによるCoqやMathCompの設定<br />
<div class="outline-text-5" id="text-2-2-4-2">
<ul class="org-ul">
<li><code>opam repo add coq-released https://coq.inria.fr/opam/released</code></li>
<li><code>opam install coq.8.9.1</code></li>
<li><code>export CAML=/home/username/.opam/4.07.1+mingw64c/bin/</code></li>
<li><code>export COQBIN=/home/username/.opam/4.07.1+mingw64c/bin/</code></li>
<li><code>opam install coq-mathcomp-ssreflect</code></li>
<li><code>opam install coq-mathcomp-fingroup</code></li>
<li><code>opam install coq-mathcomp-algebra</code></li>
<li><code>opam install coq-mathcomp-field</code></li>
</ul>
</div>
</li>
</ol>
</div>
</div>
<div id="outline-container-org471cb28" class="outline-3">
<h3 id="org471cb28"><span class="section-number-3">2.3</span> [WIP] MacOSの場合</h3>
<div class="outline-text-3" id="text-2-3">
<p>
<a href="https://github.com/coq/platform">Coq platform</a> または <code>Homebrew</code> を使えます: <a href="https://github.com/coq/coq/wiki/Installation-of-Coq-on-Mac">https://github.com/coq/coq/wiki/Installation-of-Coq-on-Mac</a>
</p>
<p>
emacsのインストール:
</p>
<pre class="example">
install macports
PATH=/opt/local/bin:$PATH
sudo port selfupdate
sudo port install emacs-app
</pre>
</div>
</div>
</div>
<div id="outline-container-org7e7c466" class="outline-2">
<h2 id="org7e7c466"><span class="section-number-2">3</span> IDEの設定</h2>
<div class="outline-text-2" id="text-3">
</div>
<div id="outline-container-orgb470810" class="outline-3">
<h3 id="orgb470810"><span class="section-number-3">3.1</span> IDEの基本的な使い方</h3>
<div class="outline-text-3" id="text-3-1">
<ul class="org-ul">
<li>ショートカット:</li>
</ul>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col class="org-left" />
<col class="org-left" />
<col class="org-left" />
<col class="org-left" />
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left"> </th>
<th scope="col" class="org-left">Proof General</th>
<th scope="col" class="org-left">CoqIDE</th>
<th scope="col" class="org-left">VSCoq</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-left"><b>1つタクティックの実行</b></td>
<td class="org-left">CTRL-C CTRL-N</td>
<td class="org-left">CTRL ALT ↓</td>
<td class="org-left">ALT ↓</td>
</tr>
<tr>
<td class="org-left"><b>1つタクティックのUndo</b></td>
<td class="org-left">CTRL-C CTRL-U</td>
<td class="org-left">CTRL ALT ↑</td>
<td class="org-left">ALT ↑</td>
</tr>
<tr>
<td class="org-left"><b>カーソルまでのタクティックの実行</b></td>
<td class="org-left">CTRL-C CTRL-ENTER</td>
<td class="org-left">CTRL ALT →</td>
<td class="org-left">ALT →</td>
</tr>
<tr>
<td class="org-left"><b>Check</b></td>
<td class="org-left">CTRL-C CTRL-A CTRL-C</td>
<td class="org-left"> </td>
<td class="org-left"> </td>
</tr>
<tr>
<td class="org-left"><b>Print</b></td>
<td class="org-left">CTRL-C CTRL-A CTRL-P</td>
<td class="org-left"> </td>
<td class="org-left"> </td>
</tr>
<tr>
<td class="org-left"><b>About</b></td>
<td class="org-left">CTRL-C CTRL-A CTRL-B</td>
<td class="org-left"> </td>
<td class="org-left"> </td>
</tr>
<tr>
<td class="org-left"><b>Locate</b></td>
<td class="org-left">CTRL-C CTRL-A CTRL-L</td>
<td class="org-left"> </td>
<td class="org-left"> </td>
</tr>
<tr>
<td class="org-left"><b>Coqをinterrupt</b></td>
<td class="org-left">CTRL-C CTRL-C</td>
<td class="org-left"> </td>
<td class="org-left"> </td>
</tr>
<tr>
<td class="org-left"><b>Coqをkill</b></td>
<td class="org-left">CTRL-C CTRL-X</td>
<td class="org-left"> </td>
<td class="org-left"> </td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="outline-container-org0f73a66" class="outline-3">
<h3 id="org0f73a66"><span class="section-number-3">3.2</span> Proof Generalの設定</h3>
<div class="outline-text-3" id="text-3-2">
<p>
インターフェースとして, emacsに慣れているのでしたら, <a href="https://proofgeneral.github.io/">Proof General</a>という<a href="https://www.gnu.org/software/emacs/">emacs</a>エディターモードをお勧めします.
</p>
<ul class="org-ul">
<li>Unix(WindowsのWSL 2を含む)なら, emacsは必ず入っています.</li>
<li>Windowsなら, <a href="https://www.cygwin.com/">cygwin</a>で取得できます. Coqを設定すると, CoqIDEという専用インターフェースも設定されます.</li>
</ul>
<p>
Proof Generalの設定に, <a href="https://melpa.org/">MELPA</a>とパッケージシステムは進められます:
</p>
<ul class="org-ul">
<li><code>.emacs</code> に次のコードを加えます:</li>
</ul>
<pre class="example">
(require 'package)
;; (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") ; see remark below
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
</pre>
<ul class="org-ul">
<li><code>emacs</code> にて:
<ul class="org-ul">
<li><code>M-x package-refresh-contents RET</code></li>
<li>install Proof General
<ul class="org-ul">
<li><code>M-x package-install RET proof-general RET</code></li>
<li>あるいは, <code>M-x package-list RET</code>, <code>proof-general</code> の行で <code>i</code> を押して, <code>x</code> を押すと, 設定されます.</li>
</ul></li>
</ul></li>
<li>ちゃんと <code>coqtop</code> が見えるターミナルから, <code>emacs tt.v</code> を実行して,
<code>From mathcomp Require Import eqtype</code> を書いて, <code>C-c C-n</code> で実行できるかどうか設定の確認できます.</li>
</ul>
<p>
Proof Generalの一番快適な表示はhybridと言い, 次のように設定します:
</p>
<ul class="org-ul">
<li>Proof Generalのメニューから, Coq → 3 Windows mode layout → hybrid</li>
</ul>
<p>
Proof Generalを設定したように, <a href="https://github.com/cpitclaudel/company-coq">company-coq</a> を追加で設定すると, 数学的な記号はきれいに表示されますので, おすすめです。
</p>