DESCRIPTION = "This is a cross development C compiler, assembler and linker environment for the production of 8086 executables (Optionally MSDOS COM)" HOMEPAGE = "http://www.debath.co.uk/dev86/" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" SECTION = "console/tools" BASE_PV="0.16.21" PV = "${BASE_PV}+git${SRCPV}" SRCREV = "e254e0b19651d3b8a20225b40281c9974a95dec4" SRC_URI = "git://github.com/jbruchon/${BPN}.git;protocol=https;branch=master \ file://0001-cpp-Makefile-respect-LDFLAGS-when-building-bcc-cpp.patch \ file://0003-cpp-update-token1.tok-to-make-new-gperf-happy-regen..patch \ file://0004-regen-token2.h-token1.h-with-gperf-3.1.patch \ file://cross.patch \ file://0001-cpp-fix-race-writing-token.h-files.patch \ " S = "${WORKDIR}/git" DEPENDS = "gperf-native" BBCLASSEXTEND = "native nativesdk" EXTRA_OEMAKE = "VERSION=${BASE_PV} PREFIX=${prefix} DIST=${D} LDFLAGS='${LDFLAGS}' INEXE=''" do_compile() { # always regenerate token1.h, token2.h for deterministic behavior rm -f ${S}/cpp/token1.h ${S}/cpp/token2.h oe_runmake make.fil oe_runmake -f make.fil bcc86 as86 ld86 } do_install() { if [ "${prefix}"=="" ] ; then export prefix=/usr fi oe_runmake install-bcc ln -s ../lib/bcc/bcc-cpp ${D}${prefix}/bin/bcc-cpp ln -s ../lib/bcc/bcc-cc1 ${D}${prefix}/bin/bcc-cc1 } FILES:${PN} += "${libdir}/bcc"