Skip to content

Commit d07ed8b

Browse files
committed
fixup! Use "default" instead of "rocket" for a default mtune
Use --with-tune="" instead of --with-tune=default for a default mtune. Value "default" must not be used for this option. Signed-off-by: Yuriy Kolerov <[email protected]>
1 parent 40c5a47 commit d07ed8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1421,7 +1421,7 @@ Optional Packages:
14211421
Sets the vendor part of the triplet alias
14221422
--with-arch=rv64gc Sets the base RISC-V ISA, defaults to rv64gc
14231423
--with-abi=lp64d Sets the base RISC-V ABI, defaults to lp64d
1424-
--with-tune=default Set the base RISC-V CPU, defaults to rocket
1424+
--with-tune=rocket Set the base RISC-V CPU, defaults to rocket
14251425
--with-isa-spec=20191213
14261426
Set the default ISA spec version, default to
14271427
20191213, available options: 2.2, 20190608, 20191213
@@ -4103,7 +4103,7 @@ if test ${with_tune+y}
41034103
then :
41044104
withval=$with_tune;
41054105
else $as_nop
4106-
with_tune=default
4106+
with_tune=
41074107
41084108
fi
41094109

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,10 @@ AC_ARG_WITH(abi,
130130
)
131131

132132
AC_ARG_WITH(tune,
133-
[AS_HELP_STRING([--with-tune=default],
133+
[AS_HELP_STRING([--with-tune=rocket],
134134
[Set the base RISC-V CPU, defaults to rocket])],
135135
[],
136-
[with_tune=default]
136+
[with_tune=]
137137
)
138138

139139
AC_ARG_WITH(isa-spec,

0 commit comments

Comments
 (0)