changeset 0fd64ccb4c93 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=0fd64ccb4c93 description: ARM: Fix the compiler and platform identification for building on ARM.
diffstat: util/m5/Makefile.arm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diffs (14 lines): diff -r 54423643dd88 -r 0fd64ccb4c93 util/m5/Makefile.arm --- a/util/m5/Makefile.arm Fri Sep 07 14:20:53 2012 -0500 +++ b/util/m5/Makefile.arm Fri Sep 07 14:20:53 2012 -0500 @@ -40,8 +40,8 @@ # Ali Saidi ### If we are not compiling on an arm, we must use cross tools ### -ifneq ($(shell uname -m), arm) -CROSS_COMPILE?=arm-none-linux-gnueabi- +ifneq ($(shell uname -m), armv7l) +CROSS_COMPILE?=arm-linux-gnueabi- endif CC=$(CROSS_COMPILE)gcc AS=$(CROSS_COMPILE)as _______________________________________________ gem5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/gem5-dev
