Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RefinedC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iris
RefinedC
Commits
e15f8db2
Commit
e15f8db2
authored
4 years ago
by
Michael Sammler
Browse files
Options
Downloads
Patches
Plain Diff
added emacs setup to readme
parent
b4c72e88
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#38601
passed
4 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+25
-1
25 additions, 1 deletion
README.md
with
25 additions
and
1 deletion
README.md
+
25
−
1
View file @
e15f8db2
...
...
@@ -367,7 +367,10 @@ the `dune` environment one should not call `dune`.
# !!!INVALID!!!
dune
exec
--
refinedc check examples/queue.c
# Equivalent valid command sequence.
# Alternative
./build.sh examples/queue.c
# Equivalent to the following valid command sequence.
dune
exec
--
refinedc check
--no-build
examples/queue.c
cd
examples/proofs/queue
dune build
...
...
@@ -378,6 +381,27 @@ To generate the Coq code for all the examples of the repository you can run
`make generate_all`
. You can also force the generation of all the generated
code using
`make -B generate_all`
.
## Emacs setup
The following elisp function enables direct execution of the
`build.sh`
script in this repo from emacs.
It searches for a
`build.sh`
file in parent directories of the current file and executes it with the name
of the current file. A similar functionallity should be easy to add to other editors as well.
This script binds
`build`
to the keys
`C-c c`
. Use at your own risk!
```
elisp
(
setq
build-file-name
"build.sh"
)
(
defun
build
()
"Search in the current and parent directories for a file with the name of variable `build-file-name' and execute the first file it find."
(
interactive
)
(
save-some-buffers
t
)
; save all buffers
(
let
((
buildfile
(
locate-dominating-file
default-directory
build-file-name
)))
(
unless
buildfile
(
error
"No build file found!"
))
(
let
((
default-directory
buildfile
))
(
compile
(
concat
buildfile
build-file-name
" "
(
buffer-file-name
))))
(
select-window
(
get-buffer-window
"*compilation*"
))))
(
global-set-key
(
kbd
"C-c c"
)
'build
)
```
## Structure of the repository
```
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment