mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

These changes are the result of running the convert-spdx-licenses.py oe-core script. There's no impact to the build, but we will avoid issues when interacting with core QA by the alignment. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
43 lines
1.3 KiB
BlitzBasic
43 lines
1.3 KiB
BlitzBasic
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 = "GPL-2.0-only"
|
|
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 \
|
|
"
|
|
|
|
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"
|