Skip to content

Commit cc3263a

Browse files
authored
Merge pull request #1229 from pz9115/master
Update --with-isa-spec default option.
2 parents 29da22c + 0ae36fc commit cc3263a

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

configure

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,8 @@ LIBOBJS
587587
qemu_targets
588588
enable_libsanitizer
589589
with_linux_headers_src
590-
with_pk_src
591590
with_dejagnu_src
591+
with_pk_src
592592
with_spike_src
593593
with_qemu_src
594594
with_gdb_src
@@ -1350,8 +1350,9 @@ Optional Packages:
13501350
--with-arch=rv64imafdc Sets the base RISC-V ISA, defaults to rv64imafdc
13511351
--with-abi=lp64d Sets the base RISC-V ABI, defaults to lp64d
13521352
--with-tune=rocket Set the base RISC-V CPU, defaults to rocket
1353-
--with-isa-spec=2.2 Set the default ISA spec version, default to 2.2,
1354-
available options: 2.2, 20190608, 20191213
1353+
--with-isa-spec=20191213
1354+
Set the default ISA spec version, default to
1355+
20191213, available options: 2.2, 20190608, 20191213
13551356
--with-sim=qemu Sets the base RISC-V Simulator, defaults to qemu
13561357
--with-multilib-generator
13571358
Multi-libs configuration string, only supported for
@@ -1377,6 +1378,8 @@ Optional Packages:
13771378
--with-qemu-src Set qemu source path, use builtin source by default
13781379
--with-spike-src Set spike source path, use builtin source by default
13791380
--with-pk-src Set pk source path, use builtin source by default
1381+
--with-dejagnu-src Set dejagnu source path, use builtin source by
1382+
default
13801383
--with-linux-headers-src
13811384
Set linux-headers source path, use builtin source by
13821385
default
@@ -3328,7 +3331,7 @@ fi
33283331
if test "${with_isa_spec+set}" = set; then :
33293332
withval=$with_isa_spec;
33303333
else
3331-
with_isa_spec=2.2
3334+
with_isa_spec=20191213
33323335
33333336
fi
33343337
@@ -3731,7 +3734,6 @@ else
37313734
fi
37323735
37333736
}
3734-
37353737
{
37363738
37373739
# Check whether --with-dejagnu-src was given.

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ AC_ARG_WITH(tune,
7272
)
7373

7474
AC_ARG_WITH(isa-spec,
75-
[AS_HELP_STRING([--with-isa-spec=2.2],
76-
[Set the default ISA spec version, default to 2.2, available options: 2.2, 20190608, 20191213])],
75+
[AS_HELP_STRING([--with-isa-spec=20191213],
76+
[Set the default ISA spec version, default to 20191213, available options: 2.2, 20190608, 20191213])],
7777
[],
78-
[with_isa_spec=2.2]
78+
[with_isa_spec=20191213]
7979
)
8080

8181
AC_ARG_WITH(sim,

0 commit comments

Comments
 (0)