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

Side by Side Diff: tests/spec2k/Makefile.common

Issue 1698523003: Subzero: Add x86-64 to the bots. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Disable Subzero x86-64 translator tests for now Created 4 years, 10 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 | « buildbot/buildbot_spec2k.sh ('k') | tests/spec2k/run_all.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 ###################################################################### 5 ######################################################################
6 # CONFIG 6 # CONFIG
7 ###################################################################### 7 ######################################################################
8 8
9 # NOTE: we assume you have a symlink "CLIENT" in this directory pointing 9 # NOTE: we assume you have a symlink "CLIENT" in this directory pointing
10 # to your .../native_client directory 10 # to your .../native_client directory
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 # BITCODE - BACKEND - X8664 (sandboxed and non-sandboxed translators) 449 # BITCODE - BACKEND - X8664 (sandboxed and non-sandboxed translators)
450 450
451 $(IT).pnacl.x8664: $(IT).unopt.stripped.pexe 451 $(IT).pnacl.x8664: $(IT).unopt.stripped.pexe
452 $(PNACL_TRANSLATOR) $(PNACL_FLAGS) $^ -o $@ -arch x86-64 452 $(PNACL_TRANSLATOR) $(PNACL_FLAGS) $^ -o $@ -arch x86-64
453 @$(call LOG_TIME_AND_SIZE,$@,$(IT)) 453 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
454 454
455 $(IT).pnacl.opt.x8664: $(IT).opt.stripped.pexe 455 $(IT).pnacl.opt.x8664: $(IT).opt.stripped.pexe
456 $(PNACL_TRANSLATOR) $(PNACL_FLAGS) $^ -o $@ -arch x86-64 456 $(PNACL_TRANSLATOR) $(PNACL_FLAGS) $^ -o $@ -arch x86-64
457 @$(call LOG_TIME_AND_SIZE,$@,$(IT)) 457 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
458 458
459 $(IT).pnacl.opt.sz.x8664: $(IT).opt.stripped.pexe
460 $(PNACL_TRANSLATOR) $(PNACL_FLAGS) $(PNACL_SZ_FLAGS) $^ \
461 -o $@ -arch x86-64
462 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
463
459 $(IT).pnacl_translator.x8664: $(IT).unopt.stripped.pexe 464 $(IT).pnacl_translator.x8664: $(IT).unopt.stripped.pexe
460 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-64 465 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-64
461 @$(call LOG_TIME_AND_SIZE,$@,$(IT)) 466 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
462 467
463 $(IT).pnacl_translator.opt.x8664: $(IT).opt.stripped.pexe 468 $(IT).pnacl_translator.opt.x8664: $(IT).opt.stripped.pexe
464 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-64 469 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-64
465 @$(call LOG_TIME_AND_SIZE,$@,$(IT)) 470 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
466 471
467 $(IT).pnacl_translator_fast.opt.x8664: $(IT).opt.stripped.pexe 472 $(IT).pnacl_translator_fast.opt.x8664: $(IT).opt.stripped.pexe
468 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \ 473 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
469 $^ -o $@ -arch x86-64 474 $^ -o $@ -arch x86-64
470 @$(call LOG_TIME_AND_SIZE,$@,$(IT)) 475 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
471 476
477 $(IT).pnacl_translator_fast.opt.sz.x8664: $(IT).opt.stripped.pexe
478 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
479 $(PNACL_SZ_FLAGS) $^ -o $@ -arch x86-64
480 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
481
472 $(IT).pnacl_translator_1thread.opt.x8664: $(IT).opt.stripped.pexe 482 $(IT).pnacl_translator_1thread.opt.x8664: $(IT).opt.stripped.pexe
473 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-64 \ 483 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-64 \
474 -threads=seq 484 -threads=seq
475 @$(call LOG_TIME_AND_SIZE,$@,$(IT)) 485 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
476 486
477 $(IT).pnacl_translator_fast_1thread.opt.x8664: $(IT).opt.stripped.pexe 487 $(IT).pnacl_translator_fast_1thread.opt.x8664: $(IT).opt.stripped.pexe
478 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \ 488 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
479 $^ -o $@ -arch x86-64 -threads=seq 489 $^ -o $@ -arch x86-64 -threads=seq
480 @$(call LOG_TIME_AND_SIZE,$@,$(IT)) 490 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
491
492 $(IT).pnacl_translator_fast_1thread.opt.sz.x8664: $(IT).opt.stripped.pexe
493 $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_SZ_FLAGS) \
494 $^ -o $@ -arch x86-64 -threads=seq
495 @$(call LOG_TIME_AND_SIZE,$@,$(IT))
OLDNEW
« no previous file with comments | « buildbot/buildbot_spec2k.sh ('k') | tests/spec2k/run_all.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698