From: Tim Newsome Date: Thu, 8 Dec 2016 03:52:00 +0000 (-0800) Subject: We *do* need the FPU to compile 64-bit code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0949ce92a07ee76ad15907b0021addd8a9b053e5;p=riscv-tests.git We *do* need the FPU to compile 64-bit code. --- diff --git a/debug/targets.py b/debug/targets.py index 538caaf..d1ba964 100644 --- a/debug/targets.py +++ b/debug/targets.py @@ -64,6 +64,7 @@ class SpikeTarget(Target): class Spike64Target(SpikeTarget): name = "spike64" xlen = 64 + use_fpu = True def server(self): return testlib.Spike(self.cmd, halted=True)