Skip to content

Commit

Permalink
Update --with-isa-spec default option.
Browse files Browse the repository at this point in the history
  • Loading branch information
pz9115 committed Apr 17, 2023
1 parent 170a9a3 commit a696416
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
66 changes: 33 additions & 33 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1345,41 +1345,41 @@ Optional Features:
--enable-qemu-system Build qemu with system-mode emulation
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-arch=rv64imafdc Sets the base RISC-V ISA, defaults to rv64imafdc
--with-abi=lp64d Sets the base RISC-V ABI, defaults to lp64d
--with-tune=rocket Set the base RISC-V CPU, defaults to rocket
--with-isa-spec=2.2 Set the default ISA spec version, default to 2.2,
available options: 2.2, 20190608, 20191213
--with-sim=qemu Sets the base RISC-V Simulator, defaults to qemu
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-arch=rv64imafdc Sets the base RISC-V ISA, defaults to rv64imafdc
--with-abi=lp64d Sets the base RISC-V ABI, defaults to lp64d
--with-tune=rocket Set the base RISC-V CPU, defaults to rocket
--with-isa-spec=20191213 Set the default ISA spec version, default to 20191213,
available options: 2.2, 20190608, 20191213
--with-sim=qemu Sets the base RISC-V Simulator, defaults to qemu
--with-multilib-generator
Multi-libs configuration string, only supported for
bare-metal/elf toolchain, this option implied
--enable-multilib
--with-cmodel Select the code model to use when building libc and
libgcc [--with-cmodel=medlow]
--with-target-cflags Add extra target flags for C for library code
--with-target-cxxflags Add extra target flags for C++ for library code
Multi-libs configuration string, only supported for
bare-metal/elf toolchain, this option implied
--enable-multilib
--with-cmodel Select the code model to use when building libc and
libgcc [--with-cmodel=medlow]
--with-target-cflags Add extra target flags for C for library code
--with-target-cxxflags Add extra target flags for C++ for library code
--with-host=x86_64-w64-mingw32
Sets the host for the tools, you probably want
nothing
--without-system-zlib use the builtin copy of zlib from GCC
--with-guile Set which guile to use, if any
--with-gcc-src Set gcc source path, use builtin source by default
--with-binutils-src Set binutils source path, use builtin source by
default
--with-newlib-src Set newlib source path, use builtin source by
default
--with-glibc-src Set glibc source path, use builtin source by default
--with-musl-src Set musl source path, use builtin source by default
--with-gdb-src Set gdb source path, use builtin source by default
--with-qemu-src Set qemu source path, use builtin source by default
--with-spike-src Set spike source path, use builtin source by default
--with-pk-src Set pk source path, use builtin source by default
Sets the host for the tools, you probably want
nothing
--without-system-zlib use the builtin copy of zlib from GCC
--with-guile Set which guile to use, if any
--with-gcc-src Set gcc source path, use builtin source by default
--with-binutils-src Set binutils source path, use builtin source by
default
--with-newlib-src Set newlib source path, use builtin source by
default
--with-glibc-src Set glibc source path, use builtin source by default
--with-musl-src Set musl source path, use builtin source by default
--with-gdb-src Set gdb source path, use builtin source by default
--with-qemu-src Set qemu source path, use builtin source by default
--with-spike-src Set spike source path, use builtin source by default
--with-pk-src Set pk source path, use builtin source by default
--with-linux-headers-src
Set linux-headers source path, use builtin source by
default
Set linux-headers source path, use builtin source by
default
Some influential environment variables:
CC C compiler command
Expand Down Expand Up @@ -3328,7 +3328,7 @@ fi
if test "${with_isa_spec+set}" = set; then :
withval=$with_isa_spec;
else
with_isa_spec=2.2
with_isa_spec=20191213
fi
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ AC_ARG_WITH(tune,
)

AC_ARG_WITH(isa-spec,
[AS_HELP_STRING([--with-isa-spec=2.2],
[Set the default ISA spec version, default to 2.2, available options: 2.2, 20190608, 20191213])],
[AS_HELP_STRING([--with-isa-spec=20191213],
[Set the default ISA spec version, default to 20191213, available options: 2.2, 20190608, 20191213])],
[],
[with_isa_spec=2.2]
[with_isa_spec=20191213]
)

AC_ARG_WITH(sim,
Expand Down

0 comments on commit a696416

Please sign in to comment.