Skip to content

Commit 7044436

Browse files
committed
Set rv64gc as default --with-arch option.
1 parent c4e32b3 commit 7044436

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,7 +1398,7 @@ Optional Features:
13981398
Optional Packages:
13991399
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
14001400
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
1401-
--with-arch=rv64imafdc Sets the base RISC-V ISA, defaults to rv64imafdc
1401+
--with-arch=rv64gc Sets the base RISC-V ISA, defaults to rv64gc
14021402
--with-abi=lp64d Sets the base RISC-V ABI, defaults to lp64d
14031403
--with-tune=rocket Set the base RISC-V CPU, defaults to rocket
14041404
--with-isa-spec=20191213
@@ -3993,7 +3993,7 @@ if test ${with_arch+y}
39933993
then :
39943994
withval=$with_arch;
39953995
else $as_nop
3996-
with_arch=rv64imafdc
3996+
with_arch=rv64gc
39973997
39983998
fi
39993999

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ AS_IF([test "x$enable_default_pie" != xyes],
8080

8181

8282
AC_ARG_WITH(arch,
83-
[AS_HELP_STRING([--with-arch=rv64imafdc],
84-
[Sets the base RISC-V ISA, defaults to rv64imafdc])],
83+
[AS_HELP_STRING([--with-arch=rv64gc],
84+
[Sets the base RISC-V ISA, defaults to rv64gc])],
8585
[],
86-
[with_arch=rv64imafdc]
86+
[with_arch=rv64gc]
8787
)
8888

8989
AC_ARG_WITH(abi,

0 commit comments

Comments
 (0)