[OCaml] Enable -g for debug builds.
authorPeter Zotov <whitequark@whitequark.org>
Tue, 28 Oct 2014 06:15:41 +0000 (06:15 +0000)
committerPeter Zotov <whitequark@whitequark.org>
Tue, 28 Oct 2014 06:15:41 +0000 (06:15 +0000)
We don't care about pre-3.12.1 anymore.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220767 91177308-0d34-0410-b5e6-96231b3b80d8

bindings/ocaml/Makefile.ocaml

index 78901b5de97e429eeebad5a7271af0346a6bff4f..7b26caf6bb633bb5cf97476593ba1f34434508e3 100644 (file)
@@ -69,10 +69,9 @@ OCAMLAFLAGS += $(patsubst %,-cclib %, \
 endif
 endif
 
-# -g was introduced in 3.10.0.
-#ifneq ($(ENABLE_OPTIMIZED),1)
-#  OCAMLDEBUGFLAG := -g
-#endif
+ifneq ($(ENABLE_OPTIMIZED),1)
+  OCAMLDEBUGFLAG := -g
+endif
 
 Compile.CMI  := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
 Compile.CMO  := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)