From 653a9e4c7fb99819496c6b62773721863efd47be Mon Sep 17 00:00:00 2001 From: Gordon Henriksen Date: Tue, 25 Dec 2007 08:37:43 +0000 Subject: [PATCH] Disabling -g for ocaml builds; it's not downwards compatible. llvm-svn: 45352 --- bindings/ocaml/Makefile.ocaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bindings/ocaml/Makefile.ocaml b/bindings/ocaml/Makefile.ocaml index 6008c3a0831..9466c2361ab 100644 --- a/bindings/ocaml/Makefile.ocaml +++ b/bindings/ocaml/Makefile.ocaml @@ -42,9 +42,10 @@ OCAMLAFLAGS += $(patsubst %,-cclib %, \ $(shell $(LLVM_CONFIG) --ldflags)) \ $(UsedLibs)) -ifneq ($(ENABLE_OPTIMIZED),1) - OCAMLDEBUGFLAG := -g -endif +# -g was introduced in 3.10.0. +#ifneq ($(ENABLE_OPTIMIZED),1) +# OCAMLDEBUGFLAG := -g +#endif Compile.CMI := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o) Compile.CMO := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)