summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-12-20 00:36:59 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-12-20 00:36:59 +0000
commitda031f7bd92d3a12464e26c59b52e5eef132b298 (patch)
treeb25fb17ae5c6b006715889679df484cc25c34c58 /bindings
parentbaf8c08693d2086cd8e45b31645812b51984b926 (diff)
downloadllvm-da031f7bd92d3a12464e26c59b52e5eef132b298.tar.gz
llvm-da031f7bd92d3a12464e26c59b52e5eef132b298.tar.bz2
llvm-da031f7bd92d3a12464e26c59b52e5eef132b298.tar.xz
Makefile.ocaml: Tweak to use --system-libs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/ocaml/Makefile.ocaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ocaml/Makefile.ocaml b/bindings/ocaml/Makefile.ocaml
index f8ed841d66..1b964eec06 100644
--- a/bindings/ocaml/Makefile.ocaml
+++ b/bindings/ocaml/Makefile.ocaml
@@ -37,7 +37,7 @@ OcamlDir := $(LibDir)/ocaml
# Info from llvm-config and similar
ifndef IS_CLEANING_TARGET
ifdef UsedComponents
-UsedLibs = $(shell $(LLVM_CONFIG) --libs $(UsedComponents))
+UsedLibs = $(shell $(LLVM_CONFIG) --libs --system-libs $(UsedComponents))
UsedLibNames = $(shell $(LLVM_CONFIG) --libnames $(UsedComponents))
endif
endif