Files
meta-riscv/recipes-devtools/riscv-tools/riscv-spike.bb
sungwon.pino d6be7444f5 riscv-spike : Update to the latest version
Update to the latest version of the RISC-V Spike ISA Simulator.

Signed-off-by: pino-kim <sungwon.pino@gmail.com>
2018-11-13 06:50:21 -08:00

26 lines
760 B
BlitzBasic

SUMMARY = "RISC-V Spike ISA Simulator"
DESCRIPTION = "RISC-V Spike ISA Simulator"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe"
SRCREV = "65c8ac48af16235097084b413c10c7bff576b331"
SRC_URI = "git://github.com/riscv/riscv-isa-sim.git \
file://spike-makefile.patch"
DEPENDS = "riscv-fesvr dtc-native"
RDEPENDS_nativesdk-riscv-spike = "nativesdk-riscv-fesvr"
inherit autotools cross-canadian
S = "${WORKDIR}/git"
do_configure_prepend () {
touch ${S}/softfloat/softfloat.ac
if [ ! -e ${S}/acinclude.m4 ]; then
cp ${S}/aclocal.m4 ${S}/acinclude.m4
fi
}
BBCLASSEXTEND = "native nativesdk"
COMPATIBLE_HOST_class-target = "(riscv64|riscv32).*-linux"