Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROSA - Formally Proven Schedulability Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
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
RT-PROOFS
PROSA - Formally Proven Schedulability Analysis
Merge requests
!162
Adding an esy package
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding an esy package
esy
into
master
Overview
3
Commits
5
Pipelines
6
Changes
4
All threads resolved!
Hide all comments
Merged
Martin Constantino–Bodin
requested to merge
esy
into
master
3 years ago
Overview
3
Commits
5
Pipelines
6
Changes
4
All threads resolved!
Hide all comments
Expand
See discussion in
#80
.
1
0
Merge request reports
Compare
master
version 4
73ed28e9
3 years ago
version 3
a0d8f6bf
3 years ago
version 2
2b04812c
3 years ago
version 1
f735aa4b
3 years ago
master (base)
and
latest version
latest version
5ff68aa0
5 commits,
3 years ago
version 4
73ed28e9
4 commits,
3 years ago
version 3
a0d8f6bf
4 commits,
3 years ago
version 2
2b04812c
4 commits,
3 years ago
version 1
f735aa4b
3 commits,
3 years ago
4 files
+
101
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
scripts/Makefile.patch
+
19
−
7
Options
--- Makefile.orig 2019-10-15 22:37:51.000000000 +0200
+++ Makefile 2019-10-15 22:33:50.000000000 +0200
@@ -179,7 +179,7 @@
--- Makefile.orig 2021-10-04 11:15:22.592822933 +0200
+++ Makefile 2021-10-04 11:17:18.684584261 +0200
@@ -15,6 +15,11 @@
SELF := $(lastword $(MAKEFILE_LIST))
PARENT := $(firstword $(MAKEFILE_LIST))
+# In the esy container, $HOME is hidden, but this causes Coq to complain.
+# We thus include a dummy $HOME value.
+HOME ?= $(DESTDIR)
+export HOME
+
# This file is generated by coq_makefile and contains many variable
# definitions, like the list of .v files or the path to Coq
include Makefile.conf
@@ -211,7 +216,7 @@
# these flags do NOT contain the libraries, to make them easier to overwrite
COQFLAGS?=-q $(OTHERFLAGS) $(COQEXTRAFLAGS)
COQCHKFLAGS?=-silent -o $(COQCHKEXTRAFLAGS)
@@ -9,7 +21,7 @@
COQDOCLIBS?=$(COQLIBS_NOML)
@@ -4
22
,6 +4
22
,9 @@
@@ -4
80
,6 +4
85
,9 @@
$(HIDE)mkdir -p html
$(HIDE)$(COQDOC) \
-toc $(COQDOCFLAGS) -html $(GAL) $(COQDOCLIBS) -d html $(VFILES)
@@ -19,7 +31,7 @@
mlihtml: $(MLIFILES:.mli=.cmi)
$(SHOW)'CAMLDOC -d $@'
@@ -
446
,6 +
449
,10 @@
@@ -
504
,6 +
512
,10 @@
-toc $(COQDOCFLAGS) -pdf $(GAL) $(COQDOCLIBS) \
-o $@ `$(COQDEP) -sort -suffix .v $(VFILES)`
@@ -30,7 +42,7 @@
# FIXME: not quite right, since the output name is different
gallinahtml: GAL=-g
gallinahtml: html
@@ -
585
,6 +
591
,17 @@
@@ -
646
,6 +
658
,17 @@
$(HIDE)rm -f $(CMOFILES:%.cmo=%.cmx)
.PHONY: archclean
@@ -45,6 +57,6 @@
+
+spell::
+ ./scripts/flag-typos-in-comments.sh `find . -iname '*.v' ! -path './classic/*'`
# Compilation rules ###########################################################
Loading