aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.extr
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-01-20 16:50:07 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2015-01-20 16:50:07 +0100
commitb0c09b32f3e559ca22afc4dc40fdd60964cb3292 (patch)
tree84d35a635567f7d348abd29f5688e29daee2f449 /Makefile.extr
parent860e340b9a383964773d9c4523fb02a1de407e7f (diff)
downloadcompcert-b0c09b32f3e559ca22afc4dc40fdd60964cb3292.tar.gz
compcert-b0c09b32f3e559ca22afc4dc40fdd60964cb3292.zip
Removed the linker flag again.
Diffstat (limited to 'Makefile.extr')
-rw-r--r--Makefile.extr4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.extr b/Makefile.extr
index 2afd6e31..5f02bf38 100644
--- a/Makefile.extr
+++ b/Makefile.extr
@@ -90,11 +90,11 @@ CCOMP_OBJS:=$(shell $(MODORDER) driver/Driver.cmx)
ccomp: $(CCOMP_OBJS)
@echo "Linking $@"
- @$(OCAMLOPT) -o $@ $(LIBS) $+ $(LINKERSPEC)
+ @$(OCAMLOPT) -o $@ $(LIBS) $+
ccomp.byte: $(CCOMP_OBJS:.cmx=.cmo)
@echo "Linking $@"
- @$(OCAMLC) -o $@ $(LIBS:.cmxa=.cma) $+ $(LINKERSPEC)
+ @$(OCAMLC) -o $@ $(LIBS:.cmxa=.cma) $+
ifeq ($(CCHECKLINK),true)