Chromium Code Reviews| Index: Makefile.standalone |
| diff --git a/Makefile.standalone b/Makefile.standalone |
| index 6c976e4f4b56c6eeaccffede1bdc760b73120bff..d0dadd2e1c772ee97b2d527aabbca4c62a970b59 100644 |
| --- a/Makefile.standalone |
| +++ b/Makefile.standalone |
| @@ -402,7 +402,7 @@ check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
| -i x8632,sandbox,sse4.1,Om1 \ |
| -e x8664,native,sse2 \ |
|
Jim Stichnoth
2015/12/22 15:36:16
This doesn't actually do any x8664 tests, since no
John
2015/12/22 16:20:01
I know. This is on purpose: if I enable them befor
Jim Stichnoth
2015/12/22 16:26:44
Not true. It's been common practice in Subzero to
|
| -e x8664,native,sse4.1,test_vector_ops \ |
| - -e x8664,native,sse2,test_global \ |
| + -e x8664,sandbox,sse4.1,Om1 \ |
| -i arm32,neon \ |
| -e arm32,neon,test_vector_ops \ |
| -e arm32,neon,test_select |
| @@ -426,6 +426,11 @@ ifeq ($(TARGET),x8632) |
| SETUP=SetupGccX8632Opt |
| SPEC := -O2 --filetype=obj |
| endif |
| +ifeq ($(TARGET),x8664) |
| + TARGETFLAG=x8664 |
| + SETUP=SetupGccX8664Opt |
| + SPEC := -O2 --filetype=obj |
| +endif |
| ifeq ($(TARGET),arm32) |
| TARGETFLAG=arm32 |
| SETUP=SetupGccArmOpt |