Codebase list coq / d57f8a9
disable native compiler on non-mainstream arches Enrico Tassi 8 years ago
2 changed file(s) with 15 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
0 coq (8.5~beta2+dfsg-2) experimental; urgency=medium
1
2 * Enable native compiler only on amd64 and i386
3
4 -- Enrico Tassi <gareuselesinge@debian.org> Mon, 20 Jul 2015 09:51:21 +0200
5
06 coq (8.5~beta2+dfsg-1) experimental; urgency=medium
17
28 * New upstream release
2424 COQ_VERSION := 8.5beta2
2525 COQ_ABI := $(COQ_VERSION)+$(OCAML_ABI)
2626
27 ARCH := $(shell dpkg-architecture -q DEB_TARGET_ARCH)
28 ifeq ($(ARCH),$(filter $(ARCH),amd64 i386))
29 NATIVE_COMPUTE :=
30 else
31 NATIVE_COMPUTE := -no-native-compiler
32 endif
33
2734 CONFIGUREOPTS := -arch Linux -prefix /usr -mandir /usr/share/man \
2835 -configdir /etc/xdg/coq \
2936 -emacslib /usr/share/emacs/site-lisp/coq \
3037 -browser "/usr/bin/x-www-browser %s &" \
3138 -with-doc no \
32 -debug
39 -debug \
40 $(NATIVE_COMPUTE)
3341
3442 export OCAMLINIT_SED += \
3543 -e 's%@CoqVersion@%$(COQ_VERSION)%' \