From 51f54cc6883cbb44067fee5387462e7ac83dad1c Mon Sep 17 00:00:00 2001 From: Stefano Zacchiroli Date: Fri, 6 Feb 2004 12:29:30 +0000 Subject: [PATCH] added -g flag to ocamlc per default --- helm/ocaml/Makefile.common.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/helm/ocaml/Makefile.common.in b/helm/ocaml/Makefile.common.in index 39c99255b..cefbf646d 100644 --- a/helm/ocaml/Makefile.common.in +++ b/helm/ocaml/Makefile.common.in @@ -13,9 +13,11 @@ OCAMLFIND_DEST_DIR = @OCAMLFIND_DEST_DIR@ PREPROCOPTIONS = -pp camlp4o PREREQ = OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)" -OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS) $(PREPROCOPTIONS) -OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS) $(PREPROCOPTIONS) -OCAMLDEP = ocamlfind ocamldep $(PREPROCOPTIONS) +OCAMLDEBUGOPTIONS = -g +OCAMLFIND = ocamlfind +OCAMLC = $(OCAMLFIND) ocamlc $(OCAMLDEBUGOPTIONS) $(OCAMLOPTIONS) $(PREPROCOPTIONS) +OCAMLOPT = $(OCAMLFIND) opt $(OCAMLOPTIONS) $(PREPROCOPTIONS) +OCAMLDEP = $(OCAMLFIND) ocamldep $(PREPROCOPTIONS) OCAMLLEX = ocamllex OCAMLYACC = ocamlyacc -- 2.39.2