Files
meta-riscv/recipes-devtools/riscv-tools/riscv-fesvr.bb
pino-kim a561914f3d riscv-fesvr : Update to the latest version
Update to the latest version of the RISC-V Front-end Server

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

28 lines
762 B
BlitzBasic

SUMMARY = "RISC-V Front-end Server"
DESCRIPTION = "RISC-V Front-end Server"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe"
SRCREV = "8d108a0a647901550d95925549337c2c3aec9ac8"
SRC_URI = "git://github.com/riscv/riscv-fesvr.git \
file://fesvr-makefile.patch"
inherit autotools gettext cross-canadian
BBCLASSEXTEND = "native nativesdk"
S = "${WORKDIR}/git"
do_configure_prepend () {
if [ ! -e ${S}/acinclude.m4 ]; then
cp ${S}/aclocal.m4 ${S}/acinclude.m4
fi
}
do_install_append () {
# Make install doesn't properly install these
oe_libinstall -so libfesvr ${D}${libdir}
}
COMPATIBLE_HOST_class-target = "(riscv64|riscv32).*-linux"