From 0849aad0c23f24ed7728128873fc852839e988b1 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Mon, 18 Jul 2016 17:43:15 -0700 Subject: [PATCH] Default to XLEN=64 when building in-place --- benchmarks/Makefile | 2 ++ isa/Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/benchmarks/Makefile b/benchmarks/Makefile index 965246e..ce9d4f9 100644 --- a/benchmarks/Makefile +++ b/benchmarks/Makefile @@ -4,6 +4,8 @@ # Yunsup Lee (yunsup@cs.berkeley.edu) # +XLEN ?= 64 + default: all src_dir = . diff --git a/isa/Makefile b/isa/Makefile index facc611..95092e8 100644 --- a/isa/Makefile +++ b/isa/Makefile @@ -2,6 +2,8 @@ # Makefile for riscv-tests/isa #----------------------------------------------------------------------- +XLEN ?= 64 + src_dir := . include $(src_dir)/rv64ui/Makefrag -- 2.30.2