mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
The fix to make this work with GCC15/C23 caused problems with older gcc versions. Add a fix for that. (From OE-Core rev: 237085506a454fb927389d681f30c8c995bc7b2b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
56 lines
1.6 KiB
BlitzBasic
56 lines
1.6 KiB
BlitzBasic
require gmp.inc
|
|
|
|
LICENSE = "GPL-2.0-or-later | LGPL-3.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "\
|
|
file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://COPYING.LESSERv3;md5=6a6a8e020838b23406c81b19c1d46df6 \
|
|
file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://COPYINGv3;md5=11cc2d3ee574f9d6b7ee797bdce4d423 \
|
|
"
|
|
|
|
REVISION = ""
|
|
SRC_URI = "https://gmplib.org/download/${BPN}/${BP}${REVISION}.tar.bz2 \
|
|
file://use-includedir.patch \
|
|
file://0001-Append-the-user-provided-flags-to-the-auto-detected-.patch \
|
|
file://0001-confiure.ac-Believe-the-cflags-from-environment.patch \
|
|
file://0001-Complete-function-prototype-in-acinclude.m4-for-C23-.patch \
|
|
file://0001-acinclude.m4-Add-parameter-names-in-prototype-for-g.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "ac28211a7cfb609bae2e2c8d6058d66c8fe96434f740cf6fe2e47b000d1c20cb"
|
|
|
|
acpaths = ""
|
|
|
|
EXTRA_OECONF += " --enable-cxx=detect"
|
|
EXTRA_OECONF:append:mipsarchr6 = " --disable-assembly"
|
|
|
|
PACKAGES =+ "libgmpxx"
|
|
FILES:libgmpxx = "${libdir}/libgmpxx${SOLIBS}"
|
|
|
|
do_install:append() {
|
|
oe_multilib_header gmp.h
|
|
}
|
|
|
|
fix_absolute_paths () {
|
|
sed -i \
|
|
-e "s|--sysroot=${STAGING_DIR_HOST}||g" \
|
|
-e "s|${DEBUG_PREFIX_MAP}||g" \
|
|
${B}/gmp.h
|
|
}
|
|
|
|
do_install:prepend:class-target() {
|
|
fix_absolute_paths
|
|
}
|
|
|
|
do_install:prepend:class-nativesdk() {
|
|
fix_absolute_paths
|
|
}
|
|
|
|
SSTATE_SCAN_FILES += "gmp.h"
|
|
|
|
# Doesn't compile in MIPS16e mode due to use of hand-written
|
|
# assembly
|
|
MIPS_INSTRUCTION_SET = "mips"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|