https://github.com/boxdot/amazonlinux-clang
Docker image base on amazonlinux containing standalone llvm, clang, libcxx, and runtime
https://github.com/boxdot/amazonlinux-clang
Last synced: about 1 year ago
JSON representation
Docker image base on amazonlinux containing standalone llvm, clang, libcxx, and runtime
- Host: GitHub
- URL: https://github.com/boxdot/amazonlinux-clang
- Owner: boxdot
- Created: 2017-01-15T14:33:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-17T18:02:31.000Z (over 9 years ago)
- Last Synced: 2025-02-04T15:48:45.620Z (over 1 year ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clang toolchain based on amazonlinux
Contains
* git (amazonlinux version)
* cmake (3.7.2)
* llvm (3.9)
* clang
* compiler-rt
* libc++
* libc++abi
* libunwind
Compile with:
```(bash)
$ clang++ --stdlib=libc++ main.cpp -o main -lc++abi -lunwind -rtlib=compiler-rt
```
TODO:
* Remove dependency on GCC (staging needed)