https://github.com/EasyCrypt/easycrypt
Revision aae9601c9cb5165ea20483bab12852fb969dfff7 authored by Francois Dupressoir on 20 May 2021, 16:48:40 UTC, committed by GitHub on 20 May 2021, 16:48:40 UTC
Soft-merge chachapoly proof and its stdlib changes

We'll want to consider shifting the generic arguments on SKE (EUF-CMA + IND-CPA ⇒ IND-CCA) into standard libraries.
2 parent s ba45bb5 + f30e424
Raw File
Tip revision: aae9601c9cb5165ea20483bab12852fb969dfff7 authored by Francois Dupressoir on 20 May 2021, 16:48:40 UTC
Merge pull request #67 from EasyCrypt/merge-chachapoly
Tip revision: aae9601
Makefile.system
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAML    := $(shell ocamlbuild -which ocamlc 2>/dev/null || echo false)
CC       := gcc
TAR      := tar
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 Darwin,$(UNAME)))
  TAR := gtar
endif

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

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