projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e13821
)
Disabling -g for ocaml builds; it's not downwards compatible.
author
Gordon Henriksen
<gordonhenriksen@mac.com>
Tue, 25 Dec 2007 08:37:43 +0000
(08:37 +0000)
committer
Gordon Henriksen
<gordonhenriksen@mac.com>
Tue, 25 Dec 2007 08:37:43 +0000
(08:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45352
91177308
-0d34-0410-b5e6-
96231b3b80d8
bindings/ocaml/Makefile.ocaml
patch
|
blob
|
history
diff --git
a/bindings/ocaml/Makefile.ocaml
b/bindings/ocaml/Makefile.ocaml
index 6008c3a083121a1b232aad13c865bc4ebd26f4e9..9466c2361ab6a2187af8494cbdba5eeabc18ad59 100644
(file)
--- 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)