Lines Matching full:arch
1103 result.add_option("--arch", help='The architecture to run tests for',
1137 # Simulator argument was set. Make sure arch and simulator agree.
1138 if options.simulator != options.arch:
1139 if options.arch == 'none':
1140 options.arch = options.simulator
1142 print "Architecture %s does not match sim %s" %(options.arch, options.simulator)
1147 # If options.arch is not set by the command line and no simulator setting
1148 # was found, set the arch to the guess.
1149 if options.arch == 'none':
1150 options.arch = ARCH_GUESS
1151 options.scons_flags.append("arch=" + options.arch)
1301 'arch': options.arch,