Skip to content

Commit

Permalink
Makefile: Set OPAMCLI to 2.0
Browse files Browse the repository at this point in the history
This removes the warning about `opam config var`. Setting OPAMCLI in
this way is the correct thing to do if we want to continue supporting
opam 2.0.

If we decide to require opam 2.1+ then all `opam var` invocations should
become `opam --cli=2.1 var`, as per the opam CLI versioning spec:

https://github.com/ocaml/opam/wiki/Spec-for-opam-CLI-versioning
  • Loading branch information
Alasdair authored and billmcspadden-riscv committed Dec 6, 2023
1 parent 28fb465 commit f7163af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ else ifeq ($(ARCH),64)
override ARCH := RV64
endif

# Set OPAMCLI to 2.0 to supress warnings about opam config var
export OPAMCLI := 2.0

ifeq ($(ARCH),RV32)
SAIL_XLEN := riscv_xlen32.sail
else ifeq ($(ARCH),RV64)
Expand Down

0 comments on commit f7163af

Please sign in to comment.