Lines Matching refs:arch
1213 result.add_option("--arch", help='The architecture to run tests for',
1234 result.add_option("--mips-arch-variant", help="mips architecture variant: mips32r1/mips32r2", default="mips32r2");
1272 # Simulator argument was set. Make sure arch and simulator agree.
1273 if options.simulator != options.arch:
1274 if options.arch == 'none':
1275 options.arch = options.simulator
1277 print "Architecture %s does not match sim %s" %(options.arch, options.simulator)
1282 # If options.arch is not set by the command line and no simulator setting
1283 # was found, set the arch to the guess.
1284 if options.arch == 'none':
1285 options.arch = ARCH_GUESS
1286 options.scons_flags.append("arch=" + options.arch)
1289 if options.arch == 'arm' or options.arch == 'mips':
1494 'arch': options.arch,