Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # The following variables will likely need to be modified, depending on where | 1 # The following variables will likely need to be modified, depending on where |
| 2 # and how you built LLVM & Clang. They can be overridden in a command-line | 2 # and how you built LLVM & Clang. They can be overridden in a command-line |
| 3 # invocation of make, like: | 3 # invocation of make, like: |
| 4 # | 4 # |
| 5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ | 5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ |
| 6 # PNACL_BIN_PATH=<path> ... | 6 # PNACL_BIN_PATH=<path> ... |
| 7 # | 7 # |
| 8 | 8 |
| 9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This | 9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This |
| 10 # directory should contain the configure script, the include/ and lib/ | 10 # directory should contain the configure script, the include/ and lib/ |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 503 PATH=$(PNACL_BIN_PATH):$(PATH) \ | 503 PATH=$(PNACL_BIN_PATH):$(PATH) \ |
| 504 $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \ | 504 $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \ |
| 505 -p1 -style=LLVM -i | 505 -p1 -style=LLVM -i |
| 506 | 506 |
| 507 bloat: make_symlink | 507 bloat: make_symlink |
| 508 nm -C -S -l pnacl-sz | \ | 508 nm -C -S -l pnacl-sz | \ |
| 509 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json | 509 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json |
| 510 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html | 510 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
| 511 | 511 |
| 512 docs: | 512 docs: |
| 513 » doxygen Doxyfile | 513 » make -C docs -f Makefile.standalone |
| 514 » @echo See file://`pwd`/docs/html/index.html | |
| 515 | 514 |
| 516 clean: | 515 clean: |
| 517 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 516 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 518 | 517 |
| 519 clean-all: clean | 518 clean-all: clean |
| 520 » rm -rf build/ docs/html | 519 » rm -rf build/ |
|
Jim Stichnoth
2016/01/07 02:00:39
I think docs/html still needs to be removed under
rkotlerimgtec
2016/01/07 04:47:53
I've made the changes. There is no docs/html any l
| |
| OLD | NEW |