Revision de0e2402092bf115a0e548ed4bcc0d5e0d351cb6 authored by Pierre-Yves Strub on 20 April 2018, 05:14:36 UTC, committed by Pierre-Yves Strub on 21 April 2018, 20:20:39 UTC
This option expects an integer argument. It indicates the number
of smt provers that must solve a goal before being accepted.

A value of 0 set the quorum to its default value (1).

Note that if provers do not agree while waiting to reach a
quorum, the goal is rejected.

[closes #17371]
1 parent 6ffe960
Raw File
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