aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorcoqbot-app[bot]2021-03-03 21:52:11 +0000
committerGitHub2021-03-03 21:52:11 +0000
commitbb4e1a76802a5440605264320ed528331ec0e2b7 (patch)
treea4ee40409c92afc6e563cac698e4ed08713cf051 /dev
parenta5bea627d1fe742229497b466ca24b470c20d269 (diff)
parentab98d847d237af3cd0e46edef42218be65cfc98f (diff)
Merge PR #12567: [build] Split stdlib to it's own package.
Reviewed-by: Zimmi48 Ack-by: JasonGross Ack-by: gares Ack-by: LasseBlaauwbroek Ack-by: silene Ack-by: vbgl
Diffstat (limited to 'dev')
-rw-r--r--dev/dune50
-rw-r--r--dev/shim/dune2
-rw-r--r--dev/tools/coqdev.el2
3 files changed, 27 insertions, 27 deletions
diff --git a/dev/dune b/dev/dune
index ae801f9e83..9da06a3fab 100644
--- a/dev/dune
+++ b/dev/dune
@@ -1,11 +1,11 @@
(library
(name top_printers)
- (public_name coq.top_printers)
+ (public_name coq-core.top_printers)
(synopsis "Coq's Debug Printers")
(wrapped false)
(modules top_printers)
(optional)
- (libraries coq.toplevel coq.plugins.ltac))
+ (libraries coq-core.toplevel coq-core.plugins.ltac))
(rule
(targets dune-dbg)
@@ -17,27 +17,27 @@
; We require all the OCaml libs to be in place and searchable
; by OCamlfind, this is a bit of a hack but until Dune gets
; proper ocamldebug support we have to live with that.
- %{lib:coq.config:config.cma}
- %{lib:coq.clib:clib.cma}
- %{lib:coq.lib:lib.cma}
- %{lib:coq.kernel:kernel.cma}
- %{lib:coq.vm:byterun.cma}
- %{lib:coq.vm:../../stublibs/dllbyterun_stubs.so}
- %{lib:coq.library:library.cma}
- %{lib:coq.engine:engine.cma}
- %{lib:coq.pretyping:pretyping.cma}
- %{lib:coq.gramlib:gramlib.cma}
- %{lib:coq.interp:interp.cma}
- %{lib:coq.proofs:proofs.cma}
- %{lib:coq.parsing:parsing.cma}
- %{lib:coq.printing:printing.cma}
- %{lib:coq.tactics:tactics.cma}
- %{lib:coq.vernac:vernac.cma}
- %{lib:coq.stm:stm.cma}
- %{lib:coq.sysinit:sysinit.cma}
- %{lib:coq.toplevel:toplevel.cma}
- %{lib:coq.plugins.ltac:ltac_plugin.cma}
- %{lib:coq.top_printers:top_printers.cmi}
- %{lib:coq.top_printers:top_printers.cma}
- %{lib:coq.top_printers:../META})
+ %{lib:coq-core.config:config.cma}
+ %{lib:coq-core.clib:clib.cma}
+ %{lib:coq-core.lib:lib.cma}
+ %{lib:coq-core.kernel:kernel.cma}
+ %{lib:coq-core.vm:byterun.cma}
+ %{lib:coq-core.vm:../../stublibs/dllbyterun_stubs.so}
+ %{lib:coq-core.library:library.cma}
+ %{lib:coq-core.engine:engine.cma}
+ %{lib:coq-core.pretyping:pretyping.cma}
+ %{lib:coq-core.gramlib:gramlib.cma}
+ %{lib:coq-core.interp:interp.cma}
+ %{lib:coq-core.proofs:proofs.cma}
+ %{lib:coq-core.parsing:parsing.cma}
+ %{lib:coq-core.printing:printing.cma}
+ %{lib:coq-core.tactics:tactics.cma}
+ %{lib:coq-core.vernac:vernac.cma}
+ %{lib:coq-core.stm:stm.cma}
+ %{lib:coq-core.sysinit:sysinit.cma}
+ %{lib:coq-core.toplevel:toplevel.cma}
+ %{lib:coq-core.plugins.ltac:ltac_plugin.cma}
+ %{lib:coq-core.top_printers:top_printers.cmi}
+ %{lib:coq-core.top_printers:top_printers.cma}
+ %{lib:coq-core.top_printers:../META})
(action (copy dune-dbg.in dune-dbg)))
diff --git a/dev/shim/dune b/dev/shim/dune
index 8006c629ed..e4cc7699f0 100644
--- a/dev/shim/dune
+++ b/dev/shim/dune
@@ -26,7 +26,7 @@
(targets coqbyte-prelude)
(deps
%{bin:coqtop.byte}
- %{lib:coq.kernel:../../stublibs/dllbyterun_stubs.so}
+ %{lib:coq-core.kernel:../../stublibs/dllbyterun_stubs.so}
%{project_root}/theories/Init/Prelude.vo)
(action
(with-stdout-to %{targets}
diff --git a/dev/tools/coqdev.el b/dev/tools/coqdev.el
index 5f9f326750..d4f599484f 100644
--- a/dev/tools/coqdev.el
+++ b/dev/tools/coqdev.el
@@ -33,7 +33,7 @@
(defun coqdev-default-directory ()
"Return the Coq repository containing `default-directory'."
- (let ((dir (locate-dominating-file default-directory "META.coq.in")))
+ (let ((dir (locate-dominating-file default-directory "META.coq-core.in")))
(when dir (expand-file-name dir))))
(defun coqdev-setup-compile-command ()