-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCONFIGURE
42 lines (34 loc) · 1.1 KB
/
CONFIGURE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# Build configuration
#
# This file gets included into `Makefile` and overrides any defaults
# set there.
#
# These settings can also be specified at the command-line. For example,
#
# $ make VAR_1=VAL_1 ... VAR_N=VAL_N target
#
# Note that values specified at the command-line take precedence over
# the defaults found in `Makefile` and the values found in this file.
#
# Controls the number of jobs to run in parallel (ala `make -j`)
#
# J=4
# Controls the build target. Two values are supported:
# 32, which corresponds to CompCert's `x86_32-linux` target
# 64, which corresponds to CompCert's `x86_64-linux` target
# opam, which corresponds to the `coq-compcert` package in opam.
#
# This value must be aligned with your CompCert and VST installation.
#
# BITSIZE=opam
# Path to CompCert.
# If you leave this unset, `Makefile` will use `BITSIZE` and `coqc -where`
# to attempt to locate compcert automatically.
#
# COMPCERT_DIR=../VST/compcert
# Path to VST.
# If you leave this unset, `Makefile` will use `BITSIZE` and `coqc -where`
# to attempt to locate VST automatically.
#
# VST_DIR=../VST