diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-10-12 19:48:13 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-10-12 19:48:13 +0000 |
commit | 2a50f367328a9820e546d9ae0785984c60cedc32 (patch) | |
tree | 0a44b2836612f6cbf813b1a8bf1558e67f23d7ca /bindings/ocaml | |
parent | c801ffd850a31982aec57cacc63004bcc2dd4a6d (diff) | |
download | external_llvm-2a50f367328a9820e546d9ae0785984c60cedc32.zip external_llvm-2a50f367328a9820e546d9ae0785984c60cedc32.tar.gz external_llvm-2a50f367328a9820e546d9ae0785984c60cedc32.tar.bz2 |
Fix ocaml bindings for picky linkers. :)
Thanks to Török Edvin for helping to track this down.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42927 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/ocaml')
-rw-r--r-- | bindings/ocaml/Makefile.ocaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bindings/ocaml/Makefile.ocaml b/bindings/ocaml/Makefile.ocaml index fb03b1a..fa03c63 100644 --- a/bindings/ocaml/Makefile.ocaml +++ b/bindings/ocaml/Makefile.ocaml @@ -38,8 +38,9 @@ endif # Tools OCAMLCFLAGS += -I $(OcamlDir) -I $(ObjDir) OCAMLAFLAGS += $(patsubst %,-cclib %, \ - $(filter-out -L$(LibDir),$(shell $(LLVM_CONFIG) --ldflags)) \ - $(UsedLibs) -l$(LIBRARYNAME)) + $(filter-out -L$(LibDir),-l$(LIBRARYNAME) \ + $(shell $(LLVM_CONFIG) --ldflags)) \ + $(UsedLibs)) Compile.CMI := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) -o) Compile.CMO := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) -o) |