aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-09-28 16:49:50 +0100
committerYann Herklotz <git@yannherklotz.com>2020-09-28 16:49:50 +0100
commit5b53cb7b539420e869cc243ee4e94f81b1ed0bf4 (patch)
tree3f3b2a0d6a31f53bc5e0e3cbf8720ec2a53b2bf1 /Makefile
parente7cafecf3f8c43ed3302f09e000d4f8775356876 (diff)
downloadvericert-5b53cb7b539420e869cc243ee4e94f81b1ed0bf4.tar.gz
vericert-5b53cb7b539420e869cc243ee4e94f81b1ed0bf4.zip
Fix compilation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e1a93f6..e036d6f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,20 @@
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
- ARCH := x86_32-linux
+ ARCH := x86_64-linux
endif
ifeq ($(UNAME_S),Darwin)
- ARCH := x86_32-macosx
+ ARCH := x86_64-macosx
endif
-COMPCERTRECDIRS := lib common x86_32 x86 backend cfrontend driver flocq exportclight \
- MenhirLib cparser
+COMPCERTRECDIRS := lib common x86_64 x86 backend cfrontend driver exportclight cparser
COQINCLUDES := -R src/common vericert.common \
-R src/extraction vericert.extraction \
-R src/hls vericert.hls \
-R src vericert \
- $(foreach d, $(COMPCERTRECDIRS), -R lib/CompCert/$(d) compcert.$(d))
+ $(foreach d, $(COMPCERTRECDIRS), -R lib/CompCert/$(d) compcert.$(d)) \
+ -R lib/CompCert/flocq Flocq \
+ -R lib/CompCert/MenhirLib MenhirLib
COQEXEC := $(COQBIN)coqtop $(COQINCLUDES) -batch -load-vernac-source
COQMAKE := $(COQBIN)coq_makefile