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

Unified Diff: Makefile.standalone

Issue 1506653002: Subzero: Add Non-SFI support for x86-32. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | crosstest/crosstest.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 89e8d8471ed5c0932f743b521c831bbe0e100903..d84e928e91f4d5ce7bda5efab5555b82bf80a59c 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -367,10 +367,15 @@ $(OBJDIR)/unittest/AssemblerX8632: $(OBJDIR)/unittest
$(OBJDIR)/unittest/AssemblerX8664: $(OBJDIR)/unittest
@mkdir -p $@
-RT_SRC := runtime/szrt.c runtime/szrt_ll.ll runtime/szrt_profiler.c
+RT_SRC := runtime/szrt.c runtime/szrt_ll.ll runtime/szrt_profiler.c \
+ runtime/szrt_asm_x8632.s runtime/szrt_asm_x8664.s \
+ runtime/szrt_asm_arm32.s
RT_OBJ := build/runtime/szrt_native_x8632.o build/runtime/szrt_sb_x8632.o \
+ build/runtime/szrt_nonsfi_x8632.o \
build/runtime/szrt_native_x8664.o build/runtime/szrt_sb_x8664.o \
- build/runtime/szrt_native_arm32.o build/runtime/szrt_sb_arm32.o
+ build/runtime/szrt_nonsfi_x8664.o \
+ build/runtime/szrt_native_arm32.o build/runtime/szrt_sb_arm32.o \
+ build/runtime/szrt_nonsfi_arm32.o
runtime: $(RT_OBJ)
@@ -400,10 +405,12 @@ check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime
-i x8632,native,sse2 \
-i x8632,native,sse4.1,test_vector_ops \
-i x8632,sandbox,sse4.1,Om1 \
+ -i x8632,nonsfi,sse2,O2 -e x8632,nonsfi,test_select \
-i x8664,native,sse2 \
-i x8664,native,sse4.1,test_vector_ops \
-e x8664,sandbox,sse4.1,Om1 \
-i arm32,neon \
+ -e arm32,nonsfi \
-e arm32,neon,test_vector_ops \
-e arm32,neon,test_select
PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
« no previous file with comments | « no previous file | crosstest/crosstest.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698