Chromium Code Reviews| Index: pnacl/README |
| diff --git a/pnacl/README b/pnacl/README |
| index 6da78298e01b2d68c06d5388d6534ad2befdcf25..bd6f02eea89ed7b58784baafeb22629a0431793f 100644 |
| --- a/pnacl/README |
| +++ b/pnacl/README |
| @@ -6,35 +6,25 @@ the bin/ directory. The location (and existence) of everything else is subject |
| to change. |
| bin/ |
| - User-facing toolchain programs (pnacl-clang, pnacl-translate, etc). |
| - Currently these are OS-specific wrapper scripts. |
| -host_x86_32/ |
| - Executable toolchain binaries for x86-32 hosts. These are not intended to be |
| - run directly; use the wrapper scripts in bin/ |
| -host_x86_32/ |
| - Executable toolchain binaries for x86-64 hosts. These are not intended to be |
| - run directly; use the wrapper scripts in bin/ |
| -lib-arm/ |
| - Native NaCl object files and/or libraries linked into ARM nexes after |
| - offline translation. |
| -lib-mips32/ |
| - Native NaCl object files and/or libraries linked into MIPS nexes after |
| - offline translation. |
| -lib-x86-32/ |
| - Native NaCl object files and/or libraries linked into x86-32 nexes after |
| - offline translation. |
| -lib-x86-64/ |
| - Native NaCl object files and/or libraries linked into x86-64 nexes after |
| - offline translation. |
| + User-facing PNaCl toolchain programs (pnacl-clang, pnacl-translate, etc; |
| + currently these are OS-specific wrapper scripts). |
| + Standard LLVM tools such as llvm-nm, opt etc** |
| + Nonstandard LLVM tools such as pnacl-llc** |
| + Standard GNU binutils ELF tools |
| +include/ |
| + Headers for linking against our build of LLVM** |
| lib/ |
| - Bitcode object files and/or libraries linked into user-generated pexes |
| -sdk/ |
| - Libraries and headers provided by the NaCl SDK which are not packaged with |
| - the toolchain itself |
| -usr/ |
| - Libraries and headers packaged with the toolchain (e.g. libc, libm, libstdc++) |
| - Naclports also installs its libraries and headers here. |
| + Host libraries used by our build of LLVM** |
| +le32-nacl/ |
| + Bitcode libraries and headers for building PNaCl modules |
| tools-arm/ |
|
jvoung (off chromium)
2014/09/18 17:24:45
Could remove tools-arm and tools-x86 now as well.
Derek Schuff
2014/09/18 17:29:13
Done.
|
| Native ARM binaries used for testing (e.g. the standalone NaCl loader) |
| tools-x86/ |
| Native x86 binaries used for testing (e.g. x86 version of the ARM validator) |
| +translator/ |
| + Native NaCl object files and/or libraries linked into nexes after |
| + offline translation. |
| + |
| +**These are not generally needed directly by developers of PNaCl modules |
| + in Chrome, but may be useful for others, e.g. those who want to build tools |
| + which target PNaCl as a platform |