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

Side by Side Diff: Makefile.standalone

Issue 1231903002: Adds tests to the AssemblerX8632. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses 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 | 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 ifndef MINIMAL 210 ifndef MINIMAL
211 SRCS += IceConverter.cpp \ 211 SRCS += IceConverter.cpp \
212 IceTypeConverter.cpp 212 IceTypeConverter.cpp
213 endif 213 endif
214 214
215 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) 215 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS))
216 SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS)) 216 SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS))
217 217
218 UNITTEST_SRCS = \ 218 UNITTEST_SRCS = \
219 BitcodeMunge.cpp \ 219 BitcodeMunge.cpp \
220 IceAssemblerX8632Test.cpp \
220 IceELFSectionTest.cpp \ 221 IceELFSectionTest.cpp \
221 IceParseInstsTest.cpp 222 IceParseInstsTest.cpp
222 223
223 UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS)) 224 UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS))
224 UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/main.o,$(OBJS)) 225 UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/main.o,$(OBJS))
225 226
226 # Keep all the first target so it's the default. 227 # Keep all the first target so it's the default.
227 all: $(OBJDIR)/pnacl-sz make_symlink runtime 228 all: $(OBJDIR)/pnacl-sz make_symlink runtime
228 229
229 ifdef TSAN 230 ifdef TSAN
(...skipping 127 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 | src/IceAssemblerX86Base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698