summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJialing Zhang <zhangjialing@loongson.cn>2023-03-22 14:50:34 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-23 22:36:46 +0000
commit13c1529b70345b0446482e8952e0b4b452bce7b1 (patch)
tree66e73fcee2978cde6dc58ffe03a907c0ea82745c
parente7e1bc43ca5d2209edb927ec3840719bb27e0350 (diff)
downloadpoky-13c1529b70345b0446482e8952e0b4b452bce7b1.tar.gz
recipes: add support for loongarch64
glibc gcc vulkan add support for loongarch64 (From OE-Core rev: 526b9a8ebacf07690dfc5beb1788ab7a5bef8423) Signed-off-by: Jialing Zhang <zhangjialing@loongson.cn> Signed-off-by: Qizheng Zhu <zhuqizheng@loongson.cn> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/glibc/glibc-locale.inc2
-rw-r--r--meta/recipes-devtools/gcc/gcc-runtime.inc1
-rw-r--r--meta/recipes-graphics/vulkan/vulkan-samples_git.bb2
3 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-core/glibc/glibc-locale.inc b/meta/recipes-core/glibc/glibc-locale.inc
index 7f70b3ca4f..760de9437b 100644
--- a/meta/recipes-core/glibc/glibc-locale.inc
+++ b/meta/recipes-core/glibc/glibc-locale.inc
@@ -20,7 +20,7 @@ ENABLE_BINARY_LOCALE_GENERATION:pn-nativesdk-glibc-locale = "1"
20 20
21#enable locale generation on these arches 21#enable locale generation on these arches
22# BINARY_LOCALE_ARCHES is a space separated list of regular expressions 22# BINARY_LOCALE_ARCHES is a space separated list of regular expressions
23BINARY_LOCALE_ARCHES ?= "arc arm.* aarch64 i[3-6]86 x86_64 powerpc mips mips64 riscv32 riscv64" 23BINARY_LOCALE_ARCHES ?= "arc arm.* aarch64 i[3-6]86 x86_64 powerpc mips mips64 riscv32 riscv64 loongarch64"
24 24
25# set "1" to use cross-localedef for locale generation 25# set "1" to use cross-localedef for locale generation
26# set "0" for qemu emulation of native localedef for locale generation 26# set "0" for qemu emulation of native localedef for locale generation
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
index fa5b048dab..bccc8a5b89 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime.inc
+++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
@@ -38,6 +38,7 @@ RUNTIMELIBITM:nios2 = ""
38RUNTIMELIBITM:microblaze = "" 38RUNTIMELIBITM:microblaze = ""
39RUNTIMELIBITM:riscv32 = "" 39RUNTIMELIBITM:riscv32 = ""
40RUNTIMELIBITM:riscv64 = "" 40RUNTIMELIBITM:riscv64 = ""
41RUNTIMELIBITM:loongarch64 = ""
41RUNTIMELIBSSP ?= "" 42RUNTIMELIBSSP ?= ""
42RUNTIMELIBSSP:mingw32 ?= "libssp" 43RUNTIMELIBSSP:mingw32 ?= "libssp"
43 44
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb
index 20f39905b1..05babf4c91 100644
--- a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb
@@ -18,7 +18,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "These are not the releases you're looking for"
18S = "${WORKDIR}/git" 18S = "${WORKDIR}/git"
19 19
20REQUIRED_DISTRO_FEATURES = 'vulkan' 20REQUIRED_DISTRO_FEATURES = 'vulkan'
21COMPATIBLE_HOST = "(x86_64|aarch64|mips64|powerpc64|riscv64).*-linux" 21COMPATIBLE_HOST = "(x86_64|aarch64|mips64|powerpc64|riscv64|loongarch64).*-linux"
22 22
23inherit cmake features_check 23inherit cmake features_check
24 24