浏览代码

Update Coq.gitignore

Coq now uses .mlg rather than .ml4 (since https://github.com/coq/coq/pull/8763), so we have to ignore its generated dependency files.  The `native_compute_profile_*.data` files are generated by `Set NativeCompute Profiling` (see https://github.com/coq/coq/pull/950).  Finally `.coq-native` is a directory that may be generated in any subdirectory, not only at top level, so we should not use absolute paths for it.
pull/3701/head
Jason Gross 3 年前
父节点
当前提交
68f4c9a5a9
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      Coq.gitignore

+ 3
- 1
Coq.gitignore 查看文件

@@ -10,6 +10,7 @@
*.glob
*.ml.d
*.ml4.d
*.mlg.d
*.mli.d
*.mllib.d
*.mlpack.d
@@ -20,7 +21,7 @@
*.vo
*.vok
*.vos
.coq-native/
.coq-native
.csdp.cache
.lia.cache
.nia.cache
@@ -31,6 +32,7 @@ lia.cache
nia.cache
nlia.cache
nra.cache
native_compute_profile_*.data

# generated timing files
*.timing.diff

正在加载...
取消
保存