Skip to content

Commit

Permalink
Update Coq.gitignore
Browse files Browse the repository at this point in the history
Coq now uses .mlg rather than .ml4 (since coq/coq#8763), so we have to ignore its generated dependency files.  The `native_compute_profile_*.data` files are generated by `Set NativeCompute Profiling` (see coq/coq#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.
  • Loading branch information
JasonGross authored Apr 13, 2021
1 parent 218a941 commit 68f4c9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Coq.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*.glob
*.ml.d
*.ml4.d
*.mlg.d
*.mli.d
*.mllib.d
*.mlpack.d
Expand All @@ -20,7 +21,7 @@
*.vo
*.vok
*.vos
.coq-native/
.coq-native
.csdp.cache
.lia.cache
.nia.cache
Expand All @@ -31,6 +32,7 @@ lia.cache
nia.cache
nlia.cache
nra.cache
native_compute_profile_*.data

# generated timing files
*.timing.diff
Expand Down

0 comments on commit 68f4c9a

Please sign in to comment.