From 3429eb68637ff9e25d678d7e2b5f636ab409543c Mon Sep 17 00:00:00 2001 From: Megan Wachs Date: Fri, 14 Apr 2017 10:26:11 -0700 Subject: [PATCH] debug: checkpoint trying to get 64 bit programs to compile as well. --- debug/testlib.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debug/testlib.py b/debug/testlib.py index b0a625b..9889bad 100644 --- a/debug/testlib.py +++ b/debug/testlib.py @@ -24,6 +24,9 @@ def compile(args, xlen=32): # pylint: disable=redefined-builtin if (xlen == 32): cmd.append("-march=rv32imac") cmd.append("-mabi=ilp32") + else: + cmd.append("-march=rv64imac") + cmd.append("-mabi=lp64") for arg in args: found = find_file(arg) if found: -- 2.30.2