mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 14:20:17 +00:00
5d71fc5d7b
This fixes most references to the paths: llvm.org/svn/ llvm.org/git/ llvm.org/viewvc/ github.com/llvm-mirror/ github.com/llvm-project/ reviews.llvm.org/diffusion/ to instead point to https://github.com/llvm/llvm-project. This is *not* a trivial substitution, because additionally, all the checkout instructions had to be migrated to instruct users on how to use the monorepo layout, setting LLVM_ENABLE_PROJECTS instead of checking out various projects into various subdirectories. I've attempted to not change any scripts here, only documentation. The scripts will have to be addressed separately. Additionally, I've deleted one document which appeared to be outdated and unneeded: lldb/docs/building-with-debug-llvm.txt Differential Revision: https://reviews.llvm.org/D57330 llvm-svn: 352514
75 lines
2.7 KiB
Plaintext
75 lines
2.7 KiB
Plaintext
llgo
|
|
====
|
|
|
|
llgo is a Go (http://golang.org) frontend for LLVM, written in Go.
|
|
|
|
llgo is under active development. It compiles and passes most of the
|
|
standard library test suite and a substantial portion of the gc test suite,
|
|
but there are some corner cases that are known not to be handled correctly
|
|
yet. Nevertheless it can compile modestly substantial programs (including
|
|
itself; it is self hosting on x86-64 Linux).
|
|
|
|
Mailing list: https://groups.google.com/d/forum/llgo-dev
|
|
|
|
Supported platforms
|
|
-------------------
|
|
|
|
llgo is currently only supported on the x86-64 Linux platform. Contributions
|
|
that add support for other platforms are welcome.
|
|
|
|
There are two components which would need to be ported to new platforms: the
|
|
compiler and the runtime library. The compiler has little platform-specific
|
|
code; the most significant is in irgen/cabi.go. The main limiting factor
|
|
for new platforms is the runtime library in third_party/gofrontend/libgo,
|
|
which inherits some support for other platforms from the gc compiler's
|
|
runtime library, but this support tends to be incomplete.
|
|
|
|
Installation
|
|
------------
|
|
|
|
llgo requires:
|
|
* Go 1.3 or later.
|
|
* CMake 2.8.8 or later (to build LLVM).
|
|
* A modern C++ toolchain (to build LLVM).
|
|
http://llvm.org/docs/GettingStarted.html#getting-a-modern-host-c-toolchain
|
|
|
|
Note that Ubuntu Precise is one Linux distribution which does not package
|
|
a sufficiently new CMake or C++ toolchain.
|
|
|
|
To build and install llgo:
|
|
|
|
# Checkout llvm project.
|
|
git clone https://github.com/llvm/llvm-project.git
|
|
|
|
# Build LLVM, Clang and llgo: (see also http://llvm.org/docs/CMake.html)
|
|
cd llvm-project
|
|
mkdir build
|
|
cd build
|
|
cmake ../llvm -DLLVM_ENABLE_PROJECTS='clang;llgo' -DCMAKE_INSTALL_PREFIX=/path/to/llvm-inst
|
|
make install
|
|
|
|
Running
|
|
-------
|
|
|
|
llgo-go is llgo's version of the "go" command. It has the same command line
|
|
interface as go, and works the same way, but it uses llgo to compile.
|
|
|
|
llgoi is an interactive REPL for Go. It supports expressions, statements, most
|
|
declarations and imports, including binary imports from the standard library
|
|
and source imports from $GOPATH. See docs/llgoi.rst for more information.
|
|
|
|
llgo is the compiler binary. It has a command line interface that is intended
|
|
to be compatible to a large extent with gccgo.
|
|
|
|
Contributing
|
|
------------
|
|
|
|
Changes to code outside the third_party directory should be contributed in
|
|
the normal way by sending patches to <llvm-commits@lists.llvm.org>.
|
|
|
|
Changes to code in the third_party directory must first be made in the
|
|
respective upstream project, from which they will be mirrored into the llgo
|
|
repository. See the script update_third_party.sh for the locations of the
|
|
upstream projects and details of how the mirroring works.
|
|
|