util: Convert the other architecture's m5 utility builds to scons.
authorGabe Black <gabeblack@google.com>
Wed, 25 Mar 2020 05:20:43 +0000 (22:20 -0700)
committerGabe Black <gabeblack@google.com>
Mon, 27 Apr 2020 21:03:28 +0000 (21:03 +0000)
commitd0d29805f636a87a97ee90810209672cd8d0f3f6
treefaef1795abec230784db706a5cde083938acfc07
parent9bcfb78ec42bd7406fd320ca59f8f43878efa23f
util: Convert the other architecture's m5 utility builds to scons.

Because I don't have a canonical toolchain to set SPARC's defaults to,
it will by default build for Linux instead of Solaris like it used to.
This will make it hard to test, but without a compiler there's not much
I can do.

This also coincidentally brings the SPARC version more in line with the
other variants which all target Linux.

Change-Id: Ie19217e988782da124306160920f40ef168840e4
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/27219
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
15 files changed:
util/m5/src/Makefile.arm [deleted file]
util/m5/src/Makefile.sparc [deleted file]
util/m5/src/Makefile.thumb [deleted file]
util/m5/src/Makefile.x86 [deleted file]
util/m5/src/arm/SConsopts [new file with mode: 0644]
util/m5/src/arm/m5op.S [new file with mode: 0644]
util/m5/src/m5op_arm.S [deleted file]
util/m5/src/m5op_sparc.S [deleted file]
util/m5/src/m5op_x86.S [deleted file]
util/m5/src/sparc/SConsopts [new file with mode: 0644]
util/m5/src/sparc/m5op.S [new file with mode: 0644]
util/m5/src/thumb/SConsopts [new file with mode: 0644]
util/m5/src/thumb/m5op.S [new file with mode: 0644]
util/m5/src/x86/SConsopts [new file with mode: 0644]
util/m5/src/x86/m5op.S [new file with mode: 0644]