mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
There are latent issues in function detection which were succeeding due to compiler being lenient, but this is fast changing e.g. clang-15 has turned the -Wimplicit-function-declaration into error which ends up failing these tests and rightly so. Therefore try to improve the tests to have proper prototypes known during compilation (From OE-Core rev: 330163295f14d1b29260059b65f7ec14e8a41e23) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
1.5 KiB
BlitzBasic
42 lines
1.5 KiB
BlitzBasic
SUMMARY = "Perl-cross build system"
|
|
HOMEPAGE = "https://github.com/arsv/perl-cross"
|
|
DESCRIPTION = "perl-cross provides configure script, top-level Makefile and some auxiliary files for perl, \
|
|
with the primary emphasis on cross-compiling the source."
|
|
SECTION = "devel"
|
|
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
|
# README.md is taken from https://github.com/arsv/perl-cross/blob/master/README.md
|
|
# but is not provided inside the release tarballs
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/README.md;md5=252fcce2026b765fee1ad74d2fb07a3b"
|
|
|
|
inherit allarch
|
|
|
|
SRC_URI = "https://github.com/arsv/perl-cross/releases/download/${PV}/perl-cross-${PV}.tar.gz;name=perl-cross \
|
|
file://README.md \
|
|
file://0001-perl-cross-add-LDFLAGS-when-linking-libperl.patch \
|
|
file://determinism.patch \
|
|
file://0001-Makefile-check-the-file-if-patched-or-not.patch \
|
|
file://0001-Makefile-correctly-list-modules-when-cleaning-them.patch \
|
|
file://0001-Makefile-do-not-clean-config.h-xconfig.h.patch \
|
|
file://0001-configure_func.sh-Add-_GNU_SOURCE-define-and-functio.patch \
|
|
"
|
|
UPSTREAM_CHECK_URI = "https://github.com/arsv/perl-cross/releases/"
|
|
|
|
SRC_URI[perl-cross.sha256sum] = "be9d9f9f7148edff7a2f9695ba3cb7e3975eff6b25a9a81dd311725fd757aa91"
|
|
|
|
S = "${WORKDIR}/perl-cross-${PV}"
|
|
|
|
do_configure () {
|
|
}
|
|
|
|
do_compile () {
|
|
}
|
|
|
|
do_install:class-native() {
|
|
mkdir -p ${D}/${datadir}/perl-cross/
|
|
cp -rf ${S}/* ${D}/${datadir}/perl-cross/
|
|
rm -rf ${D}/${datadir}/perl-cross/patches/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|