Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Side by Side Diff: Makefile.standalone

Issue 1176133004: implement the null function for the Mips32 subzero compiler (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixing patch per review comments Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pydir/run-pnacl-sz.py » ('j') | tests_lit/llvm2ice_tests/function_aligned.ll » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 IceClFlags.cpp \ 182 IceClFlags.cpp \
183 IceCompiler.cpp \ 183 IceCompiler.cpp \
184 IceCompileServer.cpp \ 184 IceCompileServer.cpp \
185 IceELFObjectWriter.cpp \ 185 IceELFObjectWriter.cpp \
186 IceELFSection.cpp \ 186 IceELFSection.cpp \
187 IceFixups.cpp \ 187 IceFixups.cpp \
188 IceGlobalContext.cpp \ 188 IceGlobalContext.cpp \
189 IceGlobalInits.cpp \ 189 IceGlobalInits.cpp \
190 IceInst.cpp \ 190 IceInst.cpp \
191 IceInstARM32.cpp \ 191 IceInstARM32.cpp \
192 IceInstMIPS32.cpp \
192 IceInstX8632.cpp \ 193 IceInstX8632.cpp \
193 IceIntrinsics.cpp \ 194 IceIntrinsics.cpp \
194 IceLiveness.cpp \ 195 IceLiveness.cpp \
195 IceOperand.cpp \ 196 IceOperand.cpp \
196 IceRegAlloc.cpp \ 197 IceRegAlloc.cpp \
197 IceRNG.cpp \ 198 IceRNG.cpp \
198 IceTargetLowering.cpp \ 199 IceTargetLowering.cpp \
199 IceTargetLoweringARM32.cpp \ 200 IceTargetLoweringARM32.cpp \
200 IceTargetLoweringMIPS32.cpp \ 201 IceTargetLoweringMIPS32.cpp \
201 IceTargetLoweringX8632.cpp \ 202 IceTargetLoweringX8632.cpp \
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 358
358 docs: 359 docs:
359 doxygen Doxyfile 360 doxygen Doxyfile
360 @echo See file://`pwd`/docs/html/index.html 361 @echo See file://`pwd`/docs/html/index.html
361 362
362 clean: 363 clean:
363 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 364 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
364 365
365 clean-all: clean 366 clean-all: clean
366 rm -rf build/ docs/ 367 rm -rf build/ docs/
OLDNEW
« no previous file with comments | « no previous file | pydir/run-pnacl-sz.py » ('j') | tests_lit/llvm2ice_tests/function_aligned.ll » ('J')

Powered by Google App Engine
This is Rietveld 408576698