Files
meta-riscv/recipes-devtools/riscv-tools/riscv-spike.bb
Khem Raj 831a056c89 cv-tools: Update to latest
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-05-05 00:52:30 -07: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 = "d48f107dba6a96fb827cb47fdf290261feadeb35"
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"