diff options
-rw-r--r-- | meta/recipes-devtools/meson/meson.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/meson/meson/0001-mesonbuild-Recognise-risc-v-architecture.patch | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/meson/meson.inc b/meta/recipes-devtools/meson/meson.inc index b278d33b72..a650469e93 100644 --- a/meta/recipes-devtools/meson/meson.inc +++ b/meta/recipes-devtools/meson/meson.inc | |||
@@ -12,6 +12,7 @@ SRC_URI = "https://github.com/mesonbuild/meson/releases/download/${PV}/meson-${P | |||
12 | file://0004-Prettifying-some-output-with-pathlib.patch \ | 12 | file://0004-Prettifying-some-output-with-pathlib.patch \ |
13 | file://0005-Set-the-meson-command-to-use-when-we-know-what-it-is.patch \ | 13 | file://0005-Set-the-meson-command-to-use-when-we-know-what-it-is.patch \ |
14 | file://validate-cpu.patch \ | 14 | file://validate-cpu.patch \ |
15 | file://0001-mesonbuild-Recognise-risc-v-architecture.patch \ | ||
15 | " | 16 | " |
16 | 17 | ||
17 | SRC_URI[md5sum] = "1698f6526574839de5dcdc45e3f7d582" | 18 | SRC_URI[md5sum] = "1698f6526574839de5dcdc45e3f7d582" |
diff --git a/meta/recipes-devtools/meson/meson/0001-mesonbuild-Recognise-risc-v-architecture.patch b/meta/recipes-devtools/meson/meson/0001-mesonbuild-Recognise-risc-v-architecture.patch new file mode 100644 index 0000000000..a983bd7a9b --- /dev/null +++ b/meta/recipes-devtools/meson/meson/0001-mesonbuild-Recognise-risc-v-architecture.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From 85bb96909d2024769d8e758538a7e8e2004dbb4d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 14 Jul 2018 13:03:39 -0700 | ||
4 | Subject: [PATCH] mesonbuild: Recognise risc-v architecture | ||
5 | |||
6 | Upstream-Status: Backport [https://github.com/mesonbuild/meson/commit/6fafbad6d5ba591075a72e4726af647cece7020d] | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | mesonbuild/environment.py | 2 ++ | ||
10 | 1 file changed, 2 insertions(+) | ||
11 | |||
12 | diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py | ||
13 | index a0580a21..b2041424 100644 | ||
14 | --- a/mesonbuild/environment.py | ||
15 | +++ b/mesonbuild/environment.py | ||
16 | @@ -83,6 +83,8 @@ known_cpu_families = ( | ||
17 | 'ppc', | ||
18 | 'ppc64', | ||
19 | 'ppc64le', | ||
20 | + 'riscv32', | ||
21 | + 'riscv64', | ||
22 | 'sparc64', | ||
23 | 'x86', | ||
24 | 'x86_64' | ||
25 | -- | ||
26 | 2.18.0 | ||
27 | |||