Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shining1984/llvm-examples
The repo is to keep some examples of the LLVM. Some of them are moved from llvm/examples, and others are writen by myself.
https://github.com/shining1984/llvm-examples
Last synced: about 2 months ago
JSON representation
The repo is to keep some examples of the LLVM. Some of them are moved from llvm/examples, and others are writen by myself.
- Host: GitHub
- URL: https://github.com/shining1984/llvm-examples
- Owner: shining1984
- Created: 2014-11-24T07:47:26.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-24T08:19:38.000Z (about 10 years ago)
- Last Synced: 2024-03-14T23:09:16.381Z (10 months ago)
- Language: C++
- Size: 145 KB
- Stars: 7
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
llvm-examples
=============The repo is to keep some examples of the LLVM.
Some of them are moved from llvm/examples, and others are writen by myself.--------------------------------------------------------------------------
Example 1:
ModuleMaker
-----------
This example is moved from the llvm3.5 release version. I just wrote a make file
for it, let it can be run on the outside of the llvm.
Before you run this example, you must make sure you have install llvm on your
computer. If you use the source code to install llvm, please don't forget to use
the command "make install" after you build llvm.
I also add a dump version of this example on the branch: ModuleMaker_dump. The
dump version can direct dump the IR to the std out.---------------------------------------------------------------------------