Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,17 @@
# SUCH DAMAGE.
#

all: vengines riscv-implementations
all: tool-version-check vengines riscv-implementations

clean: clean-vengines clean-riscv-implementations

.PHONY: tool-version-check
tool-version-check:
echo "Expected version of cabal is 3.4.0.0 or higher; your version is `cabal --numeric-version`"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How does this actually check the cabal version?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does not check the version, it only does printing.


# Verification Engines
################################################################################
vengines: QCVEngine
vengines: tool-version-check QCVEngine

QCVENGINE_BIN_DIR=$(CURDIR)/vengines/QuickCheckVEngine/bin
QCVEngine: Makefile
Expand Down