- Apr 01, 2016
-
-
Jeroen Ketema authored
Expose LLVMCreateTargetMachineData as data_layout. As r263530 did for go. From that commit: "LLVMGetTargetDataLayout was removed from the C API, and then TargetMachine.TargetData was removed. Later, LLVMCreateTargetMachineData was added to the C API" Differential Revision: http://reviews.llvm.org/D18677 llvm-svn: 265115
-
- Mar 31, 2016
-
-
Jeroen Ketema authored
* LLVMDisposeMessage lives in llvm-c/Core.h, include this file where necessary * LLVMAddTargetData has been removed, follow suit in the bindings Differential Revision: http://reviews.llvm.org/D18633 llvm-svn: 265001
-
- Feb 12, 2016
-
-
Benjamin Kramer authored
llvm-svn: 260720
-
- Jan 26, 2016
-
-
Chris Bieneman authored
Summary: This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html "I felt a great disturbance in the [build system], as if millions of [makefiles] suddenly cried out in terror and were suddenly silenced. I fear something [amazing] has happened." - Obi Wan Kenobi Reviewers: chandlerc, grosbach, bob.wilson, tstellarAMD, echristo, whitequark Subscribers: chfast, simoncook, emaste, jholewinski, tberghammer, jfb, danalbert, srhines, arsenm, dschuff, jyknight, dsanders, joker.eph, llvm-commits Differential Revision: http://reviews.llvm.org/D16471 llvm-svn: 258861
-
- Dec 19, 2015
-
-
Rafael Espindola authored
This deprecates: * LLVMParseBitcode * LLVMParseBitcodeInContext * LLVMGetBitcodeModuleInContext * LLVMGetBitcodeModule They are replaced with the functions with a 2 suffix which do not record a diagnostic. llvm-svn: 256065
-
- Dec 17, 2015
-
-
Rafael Espindola authored
Passing in a std::unique_ptr should help find errors when the module is used after being linked into another module. llvm-svn: 255842
-
- Nov 10, 2015
-
-
Richard Diamond authored
Summary: This patch does a couple of things: - Adds a new argument `--shared-mode` which accepts a list of components and prints whether or not the provided components need to be linked statically or shared. - Fixes `--libnames` when CMake BUILD_SHARED_LIBS is used. - Fixes `--libnames`, `--libs`, and `--libfiles` for dylib when static components aren't installed. - Fixes `--libnames`, `--libs`, `--libfiles`, and `--components` to use LLVM_DYLIB_COMPONENTS as the component manifest for dylib linking. - Uses the host platform's usual convention for filename extensions and such, instead of always defaulting to Unix-izms. Because I don't own a Mac, I am not able to test the Mac platform dependent stuff locally. If someone would be willing to run a build for me on their machine (unless there's a better option), I'd appreciate it. Reviewers: jfb, brad.king, whitequark, beanz Subscribers: beanz, jauhien, llvm-commits Differential Revision: http://reviews.llvm.org/D13198 llvm-svn: 252532
-
- Oct 21, 2015
-
-
Peter Zotov authored
Patch by Jacques-Pascal Deplaix <jp.deplaix@gmail.com> llvm-svn: 250912
-
- Aug 05, 2015
-
-
Richard Diamond authored
Revert "Fix `llvm-config` to emit the linker flag for the combined shared object built by autoconfig/make instead of the individual components." It seems I was wrong thinking `autoconf`/`make` only installed shared libraries if configured with `--enable-shared`, even if `--disable-static` is present. I'll re-address with a followup patch. This reverts commit r243297 for causing PR#24154. llvm-svn: 244108
-
- Jul 27, 2015
-
-
JF Bastien authored
Fix `llvm-config` to emit the linker flag for the combined shared object built by autoconfig/make instead of the individual components. Summary: When LLVM is configured to build shared libraries, CMake builds each component as it's own shared object, while autoconfig/make builds them statically and then links them all together to create a single shared object. This change adds compile time config flags to `llvm-config` so it can know whether LLVM's components are separated or not and act accordingly. This fixes `llvm-config` instead of fixing the makefiles to behave like CMake because, AIUI, LLVM's autoconfig/make build system is on the way out anyway. This change only affects `llvm-config` from builds that use autoconfig/make. Reviewers: jfb Subscribers: echristo, dschuff, llvm-commits Differential Revision: http://reviews.llvm.org/D11392 llvm-svn: 243297
-
- Jul 16, 2015
-
-
Reid Kleckner authored
Revert the changes to the C API LLVMBuildLandingPad that were part of the personality function move. We now set the personality on the parent function when the C API attempts to construct a landingpad with a personality. This reverts commit r240010. llvm-svn: 242372
-
- Jun 27, 2015
-
-
Peter Zotov authored
ctypes 0.3 and earlier contains an interface-definig bug: its ptr_of_raw_address accepts Int64 and not Nativeint. ctypes 0.4 was not released during the 3.6 cycle, and because of that, LLVM 3.6 was released with ctypes 0.3 as a dependency, which now breaks the build on modern ctypes. Unbreak. llvm-svn: 240882
-
- Jun 18, 2015
-
-
Daniel Jasper authored
any tests and I even don't know how to run the tests. This seems like a minimal change to make them work again, although I can't really verify at this point. Additionally, it probably makes sense to propagate the personality parameter removal further. llvm-svn: 240010
-
- Feb 06, 2015
-
-
Peter Zotov authored
llvm-svn: 228395
-
- Jan 13, 2015
-
-
Peter Zotov authored
In order to use this feature, configure LLVM as usual, but then build and install it as: make all install SYSTEM_LLVM_CONFIG=llvm-config where llvm-config is the llvm-config binary installed on your system (possibly llvm-config-VERSION on e.g. Debian). llvm-svn: 225787
-
Peter Zotov authored
As a result, installations of LLVM in non-standard locations will not require passing custom -ccopt -L flags when building the binary, nor absolute paths would be embedded in the cma/cmxa files. Additionally, the executables will not require changes to LD_LIBRARY_PATH, although CAML_LD_LIBRARY_PATH still has to be set for ocamlc without -custom. See http://caml.inria.fr/mantis/view.php?id=6642. Note that the patch is approved, but not merged yet. It will be released in 4.03 and likely 4.02. llvm-svn: 225778
-
- Dec 30, 2014
-
-
Peter Zotov authored
The latter variable is internal. Original patch by Ramkumar Ramachandra <artagnon@gmail.com> llvm-svn: 224977
-
- Dec 24, 2014
-
-
Peter Zotov authored
Patch by Ramkumar Ramachandra <artagnon@gmail.com>. Also remove Llvm_executionengine.get_pointer_to_global, as it is actually deprecated and didn't appear in a stable release. llvm-svn: 224801
-
- Dec 23, 2014
-
-
Rafael Espindola authored
Fixes pr21901. llvm-svn: 224782
-
Peter Zotov authored
Patch by Evangelos Foutras <evangelos@foutrelis.com>. llvm-svn: 224766
-
- Dec 02, 2014
-
-
Peter Zotov authored
Patch by Gideon Smeding <gideon.smeding@3ds.com>. llvm-svn: 223129
-
- Dec 01, 2014
-
-
Peter Zotov authored
This way most code won't link this (substantially large) library, if compiled statically with LLVM. llvm-svn: 223072
-
Peter Zotov authored
Closes PR15325. llvm-svn: 223071
-
- Nov 03, 2014
-
-
Peter Zotov authored
Also, revert r221142--it was an incorrect fix to this bug which fixed tests by accident. llvm-svn: 221149
-
Peter Zotov authored
Thanks echristo for pointing this out. llvm-svn: 221145
-
Peter Zotov authored
llvm-svn: 221143
-
Peter Zotov authored
On 4.02, the OCaml unwinder otherwise gets confused and segfaults. llvm-svn: 221142
-
Peter Zotov authored
llvm-svn: 221141
-
Peter Zotov authored
llvm-svn: 221140
-
Peter Zotov authored
Bindings built out-of-tree, e.g. via OPAM, should append a line to META.llvm like the following: linkopts = "-cclib -L$libdir -cclib -Wl,-rpath,$libdir" where $libdir is the lib/ directory where LLVM libraries are installed. llvm-svn: 221139
-
Peter Zotov authored
The default Makefile.rules BUILD_ARCHIVE machinery was unintentionally enabled. llvm-svn: 221138
-
Peter Zotov authored
ocamlfind ignores the predicates in this case, making the package unavailable for batch compilation as well. llvm-svn: 221136
-
Peter Zotov authored
Interpreter support was removed in r220957. llvm-svn: 221135
-
- Oct 31, 2014
-
-
Peter Zotov authored
Specifically: * Directories match module names. * Test names match module names. * The language is called "OCaml", not "Ocaml". llvm-svn: 220958
-
Peter Zotov authored
Since JIT->MCJIT migration, most of the ExecutionEngine interface became deprecated and/or broken. This especially affected the OCaml bindings, as runFunction is no longer available, and unlike in C, it is not possible to coerce a pointer to a function and call it in OCaml. In practice, LLVM 3.5 shipped completely unusable Llvm_executionengine. The GenericValue interface and runFunction were essentially a poor man's FFI. As such, this interface was removed and instead a dependency on ctypes >=0.3 added, which handled platform-specific aspects of accessing data and calling functions. The new interface does not expose JIT (which is a shim around MCJIT), as well as the interpreter (which can't handle a lot of valid IR). Llvm_executionengine.add_global_mapping is currently unusable due to PR20656. llvm-svn: 220957
-
- Oct 30, 2014
-
-
Peter Zotov authored
llvm-svn: 220903
-
Peter Zotov authored
llvm-svn: 220902
-
Peter Zotov authored
This commit updates the OCaml bindings and tests to use ocamlfind. The bindings are migrated in order to use ctypes, which are now required for MCJIT-backed Llvm_executionengine. The tests are migrated in order to use OUnit and to verify that the distributed META.llvm allows to build working executables. Every OCaml toolchain invocation is now chained through ocamlfind, which (in theory) allows to cross-compile the OCaml bindings. The configure script now checks for ctypes (>= 0.2.3) and OUnit (>= 2). The code depending on these libraries will be added later. The configure script does not check the package versions in order to keep changes less invasive. Additionally, OCaml bindings will now be automatically enabled if ocamlfind is detected on the system, rather than ocamlc, as it was before. llvm-svn: 220899
-
Peter Zotov authored
llvm-svn: 220898
-
- Oct 29, 2014
-
-
Peter Zotov authored
llvm-svn: 220847
-