Browse Source

Update generated configure script

pull/575/head
Marcus Comstedt 6 years ago
parent
commit
ec2fd09fdb
  1. 9
      config.h.in
  2. 16
      configure

9
config.h.in

@ -15,6 +15,9 @@
/* Default value for --varch switch */
#undef DEFAULT_VARCH
/* Define if subproject MCPPBS_SPROJ_NORM is enabled */
#undef DISASM_ENABLED
/* Executable name of device-tree-compiler */
#undef DTC
@ -84,6 +87,9 @@
/* Enable hardware management of PTE accessed and dirty bits */
#undef RISCV_ENABLE_DIRTY
/* Enable support for running target in either endianness */
#undef RISCV_ENABLE_DUAL_ENDIAN
/* Enable PC histogram generation */
#undef RISCV_ENABLE_HISTOGRAM
@ -93,6 +99,9 @@
/* Define if subproject MCPPBS_SPROJ_NORM is enabled */
#undef SOFTFLOAT_ENABLED
/* Define if subproject MCPPBS_SPROJ_NORM is enabled */
#undef SPIKE_DASM_ENABLED
/* Define if subproject MCPPBS_SPROJ_NORM is enabled */
#undef SPIKE_MAIN_ENABLED

16
configure

@ -709,6 +709,7 @@ enable_commitlog
enable_histogram
enable_dirty
enable_misaligned
enable_dual_endian
'
ac_precious_vars='build_alias
host_alias
@ -1357,6 +1358,8 @@ Optional Features:
bits
--enable-misaligned Enable hardware support for misaligned loads and
stores
--enable-dual-endian Enable support for running target in either
endianness
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
@ -4960,6 +4963,19 @@ if test "x$enable_misaligned" = "xyes"; then :
$as_echo "#define RISCV_ENABLE_MISALIGNED /**/" >>confdefs.h
fi
# Check whether --enable-dual-endian was given.
if test "${enable_dual_endian+set}" = set; then :
enableval=$enable_dual_endian;
fi
if test "x$enable_dual_endian" = "xyes"; then :
$as_echo "#define RISCV_ENABLE_DUAL_ENDIAN /**/" >>confdefs.h
fi

Loading…
Cancel
Save