https://github.com/EasyCrypt/easycrypt
Revision 9f6601d975c2a690bf4ab417368e0f173025a99f authored by Pierre-Yves Strub on 13 July 2015, 10:28:18 UTC, committed by Pierre-Yves Strub on 13 July 2015, 10:28:18 UTC
This dumps the full environment, no hypothesis selection is done,
and the `nosmt` flag is ignored.

[close #17196]
1 parent 25d7504
Raw File
Tip revision: 9f6601d975c2a690bf4ab417368e0f173025a99f authored by Pierre-Yves Strub on 13 July 2015, 10:28:18 UTC
Add a command to dump the full Why3 task
Tip revision: 9f6601d
Makefile.system
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAML    := $(shell ocamlbuild -which ocamlc 2>/dev/null || echo false)
CC       := gcc
MACHINE  := $(shell $(OCAML) -ccopt -dumpmachine dummy.c 2>/dev/null)
UNAME    := $(shell uname -s)
EXE      :=

ifneq (,$(findstring CYGWIN,$(UNAME)))
  CC = $(MACHINE)-gcc
endif

ifneq (,$(findstring mingw,$(MACHINE)))
EXE := .exe
endif

ifneq (,$(findstring cygwin,$(MACHINE)))
EXE := .exe
endif
back to top