|
1 | 1 | # ClangIR (CIR)
|
2 | 2 |
|
3 |
| -For more information see https://clangir.org. The rest of this document |
4 |
| -fallbacks to llvm-project's default `README.md`. |
5 |
| - |
6 |
| ---- |
7 |
| - |
8 |
| -# The LLVM Compiler Infrastructure |
9 |
| - |
10 |
| -Welcome to the LLVM project! |
11 |
| - |
12 |
| -This repository contains the source code for LLVM, a toolkit for the |
13 |
| -construction of highly optimized compilers, optimizers, and run-time |
14 |
| -environments. |
15 |
| - |
16 |
| -The LLVM project has multiple components. The core of the project is |
17 |
| -itself called "LLVM". This contains all of the tools, libraries, and header |
18 |
| -files needed to process intermediate representations and convert them into |
19 |
| -object files. Tools include an assembler, disassembler, bitcode analyzer, and |
20 |
| -bitcode optimizer. |
21 |
| - |
22 |
| -C-like languages use the [Clang](http://clang.llvm.org/) frontend. This |
23 |
| -component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode |
24 |
| --- and from there into object files, using LLVM. |
25 |
| - |
26 |
| -Other components include: |
27 |
| -the [libc++ C++ standard library](https://libcxx.llvm.org), |
28 |
| -the [LLD linker](https://lld.llvm.org), and more. |
29 |
| - |
30 |
| -## Getting the Source Code and Building LLVM |
31 |
| - |
32 |
| -Consult the |
33 |
| -[Getting Started with LLVM](https://llvm.org/docs/GettingStarted.html#getting-the-source-code-and-building-llvm) |
34 |
| -page for information on building and running LLVM. |
35 |
| - |
36 |
| -For information on how to contribute to the LLVM project, please take a look at |
37 |
| -the [Contributing to LLVM](https://llvm.org/docs/Contributing.html) guide. |
38 |
| - |
39 |
| -## Getting in touch |
40 |
| - |
41 |
| -Join the [LLVM Discourse forums](https://discourse.llvm.org/), [Discord |
42 |
| -chat](https://discord.gg/xS7Z362), or #llvm IRC channel on |
43 |
| -[OFTC](https://oftc.net/). |
44 |
| - |
45 |
| -The LLVM project has adopted a [code of conduct](https://llvm.org/docs/CodeOfConduct.html) for |
46 |
| -participants to all modes of communication within the project. |
47 |
| - |
48 |
| -### License |
49 |
| - |
50 |
| -ClangIR is based off https://github.com/llvm/llvm-project and uses the same |
51 |
| -license. This ClangIR project is under the Apache License v2.0 with LLVM |
52 |
| -Exceptions. Please see the `LICENSE.TXT` for the full details. |
53 |
| - |
54 |
| -## Contributing |
55 |
| - |
56 |
| -Check our [contributing guide](CONTRIBUTING.md) to learn about how to |
57 |
| -contribute to the project. |
58 |
| - |
59 |
| -## Code Of Confuct |
60 |
| - |
61 |
| -Check our [Code Of Conduct](CODE_OF_CONDUCT.md) to learn more about our |
62 |
| -contributor standards and expectations. |
63 |
| - |
| 3 | +Check https://clangir.org for general information, build instructions and documentation. |
0 commit comments