Initial version of Go bindings.
authorPeter Collingbourne <peter@pcc.me.uk>
Thu, 16 Oct 2014 22:48:02 +0000 (22:48 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Thu, 16 Oct 2014 22:48:02 +0000 (22:48 +0000)
commit798ace2e58a4bbe607d907a9efc7388e221dc431
tree6fafb2dce3e57f677ce08d18bdf5792325402b7b
parent86b3d8eb4387d6c896b5d2c811b817c735f55cbf
Initial version of Go bindings.

This code is based on the existing LLVM Go bindings project hosted at:
https://github.com/go-llvm/llvm

Note that all contributors to the gollvm project have agreed to relicense
their changes under the LLVM license and submit them to the LLVM project.

Differential Revision: http://reviews.llvm.org/D5684

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219976 91177308-0d34-0410-b5e6-96231b3b80d8
45 files changed:
.gitignore
Makefile.config.in
autoconf/configure.ac
bindings/Makefile
bindings/go/README.txt [new file with mode: 0644]
bindings/go/build.sh [new file with mode: 0755]
bindings/go/conftest.go [new file with mode: 0644]
bindings/go/llvm/DIBuilderBindings.cpp [new file with mode: 0644]
bindings/go/llvm/DIBuilderBindings.h [new file with mode: 0644]
bindings/go/llvm/IRBindings.cpp [new file with mode: 0644]
bindings/go/llvm/IRBindings.h [new file with mode: 0644]
bindings/go/llvm/InstrumentationBindings.cpp [new file with mode: 0644]
bindings/go/llvm/InstrumentationBindings.h [new file with mode: 0644]
bindings/go/llvm/SupportBindings.cpp [new file with mode: 0644]
bindings/go/llvm/SupportBindings.h [new file with mode: 0644]
bindings/go/llvm/analysis.go [new file with mode: 0644]
bindings/go/llvm/bitreader.go [new file with mode: 0644]
bindings/go/llvm/bitwriter.go [new file with mode: 0644]
bindings/go/llvm/dibuilder.go [new file with mode: 0644]
bindings/go/llvm/executionengine.go [new file with mode: 0644]
bindings/go/llvm/executionengine_test.go [new file with mode: 0644]
bindings/go/llvm/ir.go [new file with mode: 0644]
bindings/go/llvm/ir_test.go [new file with mode: 0644]
bindings/go/llvm/linker.go [new file with mode: 0644]
bindings/go/llvm/llvm_config.go.in [new file with mode: 0644]
bindings/go/llvm/llvm_dep.go [new file with mode: 0644]
bindings/go/llvm/string.go [new file with mode: 0644]
bindings/go/llvm/string_test.go [new file with mode: 0644]
bindings/go/llvm/support.go [new file with mode: 0644]
bindings/go/llvm/target.go [new file with mode: 0644]
bindings/go/llvm/transforms_instrumentation.go [new file with mode: 0644]
bindings/go/llvm/transforms_ipo.go [new file with mode: 0644]
bindings/go/llvm/transforms_pmbuilder.go [new file with mode: 0644]
bindings/go/llvm/transforms_scalar.go [new file with mode: 0644]
bindings/go/llvm/version.go [new file with mode: 0644]
cmake/config-ix.cmake
cmake/modules/AddLLVM.cmake
configure
test/Bindings/Go/go.test [new file with mode: 0644]
test/Bindings/Go/lit.local.cfg [new file with mode: 0644]
test/Bindings/Ocaml/lit.local.cfg
test/Makefile
test/lit.cfg
test/lit.site.cfg.in
utils/lit/lit/discovery.py