Skip to content

Commit

Permalink
Merge pull request #840 from herd/7.57-release
Browse files Browse the repository at this point in the history
[all] Release branch 7.57

This branch `7.57-release` will not be deleted.
  • Loading branch information
maranget authored May 2, 2024
2 parents 8decb88 + 7bec98b commit 60a9222
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ all: build
Version.ml:
sh ./version-gen.sh $(PREFIX)

build: Version.ml | check-deps
just-build: Version.ml
dune build -j $(J) --profile $(DUNE_PROFILE)

build: check-deps | just-build

$(BENTO): Version.ml | check-deps
dune build -j $(J) --profile $(DUNE_PROFILE) $@

Expand Down
3 changes: 2 additions & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
7.56+03
7.57+1

4 changes: 2 additions & 2 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ clean::

#version
version.tex: ../herdtools7.opam
/bin/echo '\def\version{'`grep "^version:" ../herdtools7.opam | cut -d ":" -f 2 | cut -d '"' -f 2`'}' > $@
/bin/echo '\def\version{'$$(cat ../VERSION.txt)'}' > $@

clean::
/bin/rm -f version.tex
Expand Down Expand Up @@ -327,7 +327,7 @@ clean::
LATEX ?= $(if $(shell which rubber),\
rubber -f,\
$(if $(shell which latexmk),\
latexmk -dvi,\
latexmk -dvi -ps- -pdf-,\
$(error "Could not find either rubber or latexmk in PATH")))
DVIPS=dvips
PS2PDF=ps2pdf
Expand Down
1 change: 0 additions & 1 deletion herd/AArch64Sem.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2412,7 +2412,6 @@ module Make

let get_link_addr test ii =
let lbl =
let open BranchTarget in
let a = ii.A.addr + 4 in
let lbls = test.Test_herd.entry_points a in
Label.norm lbls in
Expand Down
16 changes: 8 additions & 8 deletions herdtools7.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
opam-version: "2.0"
name: "herdtools7"
version: "7.56+04~dev"
synopsis: "The herdtools suite for simulating and studying weak memory models"
maintainer: "Luc Maranget <[email protected]>"
authors: [
Expand All @@ -12,20 +10,22 @@ bug-reports: "http://github.com/herd/herdtools7/issues/"
doc: "http://diy.inria.fr/doc/index.html"
dev-repo: "git+https://github.com/herd/herdtools7.git"
license: "CECILL-B"
build: [make "build" "PREFIX=%{prefix}%"]
build: [make "just-build" "PREFIX=%{prefix}%"]
install: [make "install" "PREFIX=%{prefix}%"]
# @todo Add "build-doc" field
# @todo Add "build-test" field
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.7" }
"menhir" {>= "20200123"}
"zarith"
]
depopts: [
"js_of_ocaml-ppx"
"zarith" {>= "1.10"}
"conf-which"
]
conflicts: ["ocaml-option-bytecode-only"]
url {
src: "https://github.com/herd/herdtools7/"
src: "https://github.com/herd/herdtools7/archive/refs/tags/7.57.tar.gz"
checksum: [
"md5=94f321f138662ba84f519376b6a9ec44"
"sha512=08c6d99e8bcd1774f40daed2965f286401404dbf42c4871246edd5b64ce4fd89ead1f36d2c6d7bfc534d769888cf61b0c8cd6decca9434272c32cbef1bcd29ba"
]
}

0 comments on commit 60a9222

Please sign in to comment.