aboutsummaryrefslogtreecommitdiff
path: root/riscv/riscv.ac
diff options
context:
space:
mode:
authorChristopher Celio <celio@eecs.berkeley.edu>2013-09-27 02:17:19 -0700
committerChristopher Celio <celio@eecs.berkeley.edu>2013-09-27 02:17:19 -0700
commitb9dc340b7567404c76b6a7e042c2fa3c59787515 (patch)
treec689b4e1194bd9fdeda6837f3cba8b2b3255b5e4 /riscv/riscv.ac
parentc8a8c07ec296ce36dc04f2448faf48fe1c502a2d (diff)
downloadspike-b9dc340b7567404c76b6a7e042c2fa3c59787515.zip
spike-b9dc340b7567404c76b6a7e042c2fa3c59787515.tar.gz
spike-b9dc340b7567404c76b6a7e042c2fa3c59787515.tar.bz2
Added commit logging (--enable-commitlog). Also fixed disasm bug.
Diffstat (limited to 'riscv/riscv.ac')
-rw-r--r--riscv/riscv.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/riscv/riscv.ac b/riscv/riscv.ac
index 335a0bf..cfb9d71 100644
--- a/riscv/riscv.ac
+++ b/riscv/riscv.ac
@@ -20,3 +20,8 @@ AC_ARG_ENABLE([64bit], AS_HELP_STRING([--disable-64bit], [Disable 64-bit mode]))
AS_IF([test "x$enable_64bit" != "xno"], [
AC_DEFINE([RISCV_ENABLE_64BIT],,[Define if 64-bit mode is supported])
])
+
+AC_ARG_ENABLE([commitlog], AS_HELP_STRING([--enable-commitlog], [Enable commit log generation]))
+AS_IF([test "x$enable_commitlog" = "xyes"], [
+ AC_DEFINE([RISCV_ENABLE_COMMITLOG],,[Enable commit log generation])
+])