File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,37 @@ This work is heavily derived and derived entirely from Saleem Abdulrasool's
1111(@compnerd )
1212[ gist] ( https://gist.github.com/compnerd/ebbc625a359d1d3e292e1fd2007ecb52 ) .
1313
14+ ### Sysroot
15+
16+ Builds a sysroot that looks like:
17+ ```
18+ sysroot
19+ └── usr
20+ └── local
21+ ├── include
22+ │ ├── asm
23+ │ ├── asm-generic
24+ │ ├── drm
25+ │ ├── linux
26+ │ ├── misc
27+ │ ├── mtd
28+ │ ├── rdma
29+ │ ├── scsi
30+ │ ├── sound
31+ │ ├── video
32+ │ └── xen
33+ └── lib
34+ ├── crtbeginS.o -> linux/clang_rt.crtbegin-x86_64.o
35+ ├── crtendS.o -> linux/clang_rt.crtend-x86_64.o
36+ ├── libunwind.so -> libunwind.so.1
37+ ├── libunwind.so.1 -> libunwind.so.1.0
38+ ├── libunwind.so.1.0
39+ └── linux
40+ ├── clang_rt.crtbegin-x86_64.o
41+ ├── clang_rt.crtend-x86_64.o
42+ └── libclang_rt.builtins-x86_64.a
43+ ```
44+
1445### License
1546```
1647Copyright 2021 The ClangBuiltLinux project contributors
You can’t perform that action at this time.
0 commit comments