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

Side by Side Diff: Makefile.standalone

Issue 1257643004: Subzero. Buildable, non-functional TargetLoweringX8664. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: git pull Created 5 years, 4 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 | src/IceAssemblerX86Base.h » ('j') | no next file with comments »
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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 IceCompileServer.cpp \ 185 IceCompileServer.cpp \
186 IceELFObjectWriter.cpp \ 186 IceELFObjectWriter.cpp \
187 IceELFSection.cpp \ 187 IceELFSection.cpp \
188 IceFixups.cpp \ 188 IceFixups.cpp \
189 IceGlobalContext.cpp \ 189 IceGlobalContext.cpp \
190 IceGlobalInits.cpp \ 190 IceGlobalInits.cpp \
191 IceInst.cpp \ 191 IceInst.cpp \
192 IceInstARM32.cpp \ 192 IceInstARM32.cpp \
193 IceInstMIPS32.cpp \ 193 IceInstMIPS32.cpp \
194 IceInstX8632.cpp \ 194 IceInstX8632.cpp \
195 IceInstX8664.cpp \
195 IceIntrinsics.cpp \ 196 IceIntrinsics.cpp \
196 IceLiveness.cpp \ 197 IceLiveness.cpp \
197 IceOperand.cpp \ 198 IceOperand.cpp \
198 IceRegAlloc.cpp \ 199 IceRegAlloc.cpp \
199 IceRNG.cpp \ 200 IceRNG.cpp \
200 IceSwitchLowering.cpp \ 201 IceSwitchLowering.cpp \
201 IceTargetLowering.cpp \ 202 IceTargetLowering.cpp \
202 IceTargetLoweringARM32.cpp \ 203 IceTargetLoweringARM32.cpp \
203 IceTargetLoweringMIPS32.cpp \ 204 IceTargetLoweringMIPS32.cpp \
204 IceTargetLoweringX8632.cpp \ 205 IceTargetLoweringX8632.cpp \
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 387
387 docs: 388 docs:
388 doxygen Doxyfile 389 doxygen Doxyfile
389 @echo See file://`pwd`/docs/html/index.html 390 @echo See file://`pwd`/docs/html/index.html
390 391
391 clean: 392 clean:
392 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 393 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
393 394
394 clean-all: clean 395 clean-all: clean
395 rm -rf build/ docs/ 396 rm -rf build/ docs/
OLDNEW
« no previous file with comments | « no previous file | src/IceAssemblerX86Base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698