mirror of
https://git.yoctoproject.org/poky
synced 2026-03-08 08:19:40 +01:00
License-Update: Copyright years changed [1]
aarch64 implements simd register save/restore
loongarch64 supported added
[1] 9943d4f5fc
(From OE-Core rev: d51592e4eb2bc951f0c33a6e69be22aa8ea84d6f)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
53 lines
1.9 KiB
BlitzBasic
53 lines
1.9 KiB
BlitzBasic
# Copyright (C) 2019 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "ucontext implementation featuring glibc-compatible ABI"
|
|
HOMEPAGE = "https://github.com/kaniini/libucontext"
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=ebea527af0602d509b7f4c49533fb1bd"
|
|
SECTION = "libs"
|
|
DEPENDS = ""
|
|
|
|
SRCREV = "4dde3417b4bb4b1b1545bd913be337680b5e28c3"
|
|
SRC_URI = "git://github.com/kaniini/libucontext;branch=master;protocol=https \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
COMPATIBLE_HOST = ".*-musl.*"
|
|
|
|
valid_archs = " \
|
|
x86 x86_64 \
|
|
ppc ppc64 \
|
|
mips mips64 \
|
|
arm aarch64 \
|
|
s390x \
|
|
"
|
|
|
|
def map_kernel_arch(a, d):
|
|
import re
|
|
|
|
valid_archs = d.getVar('valid_archs').split()
|
|
|
|
if a in valid_archs: return a
|
|
elif re.match('(i.86|athlon)$', a): return 'x86'
|
|
elif re.match('x86.64$', a): return 'x86_64'
|
|
elif re.match('armeb$', a): return 'arm'
|
|
elif re.match('aarch64$', a): return 'aarch64'
|
|
elif re.match('aarch64_be$', a): return 'aarch64'
|
|
elif re.match('aarch64_ilp32$', a): return 'aarch64'
|
|
elif re.match('aarch64_be_ilp32$', a): return 'aarch64'
|
|
elif re.match('mips(isa|)(32|)(r6|)(el|)$', a): return 'mips'
|
|
elif re.match('mips(isa|)64(r6|)(el|)$', a): return 'mips64'
|
|
elif re.match('p(pc64|owerpc64)(le)', a): return 'ppc64'
|
|
elif re.match('p(pc|owerpc)', a): return 'ppc'
|
|
elif re.match('riscv64$', a): return 'riscv64'
|
|
elif re.match('riscv32$', a): return 'riscv32'
|
|
else:
|
|
if not d.getVar("TARGET_OS").startswith("linux"):
|
|
return a
|
|
bb.error("cannot map '%s' to a linux kernel architecture" % a)
|
|
|
|
EXTRA_OEMESON = "-Dcpu=${@map_kernel_arch(d.getVar('TARGET_ARCH'), d)}"
|
|
inherit meson
|