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

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: Fixes naming bug in IceInstX8632.h 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') | src/IceTargetLoweringX8632.h » ('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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 IceCompileServer.cpp \ 176 IceCompileServer.cpp \
177 IceELFObjectWriter.cpp \ 177 IceELFObjectWriter.cpp \
178 IceELFSection.cpp \ 178 IceELFSection.cpp \
179 IceFixups.cpp \ 179 IceFixups.cpp \
180 IceGlobalContext.cpp \ 180 IceGlobalContext.cpp \
181 IceGlobalInits.cpp \ 181 IceGlobalInits.cpp \
182 IceInst.cpp \ 182 IceInst.cpp \
183 IceInstARM32.cpp \ 183 IceInstARM32.cpp \
184 IceInstMIPS32.cpp \ 184 IceInstMIPS32.cpp \
185 IceInstX8632.cpp \ 185 IceInstX8632.cpp \
186 IceInstX8664.cpp \
186 IceIntrinsics.cpp \ 187 IceIntrinsics.cpp \
187 IceLiveness.cpp \ 188 IceLiveness.cpp \
188 IceOperand.cpp \ 189 IceOperand.cpp \
189 IceRegAlloc.cpp \ 190 IceRegAlloc.cpp \
190 IceRNG.cpp \ 191 IceRNG.cpp \
191 IceSwitchLowering.cpp \ 192 IceSwitchLowering.cpp \
192 IceTargetLowering.cpp \ 193 IceTargetLowering.cpp \
193 IceTargetLoweringARM32.cpp \ 194 IceTargetLoweringARM32.cpp \
194 IceTargetLoweringMIPS32.cpp \ 195 IceTargetLoweringMIPS32.cpp \
195 IceTargetLoweringX8632.cpp \ 196 IceTargetLoweringX8632.cpp \
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 373
373 docs: 374 docs:
374 doxygen Doxyfile 375 doxygen Doxyfile
375 @echo See file://`pwd`/docs/html/index.html 376 @echo See file://`pwd`/docs/html/index.html
376 377
377 clean: 378 clean:
378 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 379 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
379 380
380 clean-all: clean 381 clean-all: clean
381 rm -rf build/ docs/ 382 rm -rf build/ docs/
OLDNEW
« no previous file with comments | « no previous file | src/IceAssemblerX86Base.h » ('j') | src/IceTargetLoweringX8632.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698