mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-12 04:15:24 +01:00
Fixes build issues with clang
In file included from TMPDIR/work/core2-32-yoe-linux/python3-lief/0.16.2/git/src/MachO/ChainedPointerAnalysis.cpp:19:
TMPDIR/work/core2-32-yoe-linux/python3-lief/0.16.2/git/include/LIEF/MachO/ChainedPointerAnalysis.hpp:390:17: error: static assertion failed due to requirement 'sizeof(LIEF::MachO::ChainedPointerAnalysis::union_pointer_t) == 16'
390 | static_assert(sizeof(union_pointer_t) == 16);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
883 B
BlitzBasic
31 lines
883 B
BlitzBasic
SUMMARY = "Library to instrument executable formats"
|
|
DESCRIPTION = "LIEF: Library to Instrument Executable Formats"
|
|
HOMEPAGE = "https://github.com/lief-project/LIEF"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=9ab5db472ff936b441055522f5000547"
|
|
SECTION = "libs"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/lief-project/LIEF.git;protocol=https;branch=main \
|
|
file://0001-build-requirements.txt-Allow-newer-versions.patch \
|
|
file://0002-api-python-config-default.toml-Debug.patch \
|
|
"
|
|
SRCREV = "e2ef1ea6594738d4461e75717a61ae05fb0541d6"
|
|
PV .= "+git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
PEP517_SOURCE_PATH = "${S}/api/python"
|
|
|
|
inherit python_setuptools_build_meta
|
|
|
|
DEPENDS += "\
|
|
python3-scikit-build-native \
|
|
python3-scikit-build-core-native \
|
|
python3-tomli-native \
|
|
python3-pydantic-native \
|
|
ninja-native \
|
|
ccache-native \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|