| 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 IceMemory.cpp \ | 319 IceMemory.cpp \ |
| 320 IceOperand.cpp \ | 320 IceOperand.cpp \ |
| 321 IceRangeSpec.cpp \ | 321 IceRangeSpec.cpp \ |
| 322 IceRegAlloc.cpp \ | 322 IceRegAlloc.cpp \ |
| 323 IceRNG.cpp \ | 323 IceRNG.cpp \ |
| 324 IceSwitchLowering.cpp \ | 324 IceSwitchLowering.cpp \ |
| 325 IceThreading.cpp \ | 325 IceThreading.cpp \ |
| 326 IceTimerTree.cpp \ | 326 IceTimerTree.cpp \ |
| 327 IceTranslator.cpp \ | 327 IceTranslator.cpp \ |
| 328 IceTypes.cpp \ | 328 IceTypes.cpp \ |
| 329 IceVariableSplitting.cpp \ |
| 329 LinuxMallocProfiling.cpp \ | 330 LinuxMallocProfiling.cpp \ |
| 330 main.cpp \ | 331 main.cpp \ |
| 331 PNaClTranslator.cpp | 332 PNaClTranslator.cpp |
| 332 | 333 |
| 333 ifndef MINIMAL | 334 ifndef MINIMAL |
| 334 SRCS += \ | 335 SRCS += \ |
| 335 IceASanInstrumentation.cpp \ | 336 IceASanInstrumentation.cpp \ |
| 336 IceConverter.cpp \ | 337 IceConverter.cpp \ |
| 337 IceInstrumentation.cpp \ | 338 IceInstrumentation.cpp \ |
| 338 IceTypeConverter.cpp | 339 IceTypeConverter.cpp |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 | 789 |
| 789 help-check-xtest: | 790 help-check-xtest: |
| 790 @cat Makefile.standalone-help/check-xtest.txt | 791 @cat Makefile.standalone-help/check-xtest.txt |
| 791 | 792 |
| 792 clean: | 793 clean: |
| 793 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ | 794 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ |
| 794 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json | 795 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json |
| 795 | 796 |
| 796 clean-all: clean | 797 clean-all: clean |
| 797 rm -rf build/ crosstest/Output/ | 798 rm -rf build/ crosstest/Output/ |
| OLD | NEW |