mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 09:32:13 +02:00
meson: update to 0.50.1
None of the backported patches actually made it into this release. (From OE-Core rev: a443a765944797b2a62935fc7ea3a2dd827e3b1a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
796b9089c5
commit
9ddc7aa063
@@ -18,8 +18,8 @@ SRC_URI = "https://github.com/mesonbuild/meson/releases/download/${PV}/meson-${P
|
||||
file://0001-mesonbuild-environment.py-check-environment-for-vari.patch \
|
||||
file://0001-modules-python.py-do-not-substitute-python-s-install.patch \
|
||||
"
|
||||
SRC_URI[sha256sum] = "2a1bc42dda58206fb922cda5e1ca95cc03ad126321d26acc47d3493ec4e7021f"
|
||||
SRC_URI[md5sum] = "433483107fda4616eaf33de7e7083a84"
|
||||
SRC_URI[sha256sum] = "f68f56d60c80a77df8fc08fa1016bc5831605d4717b622c96212573271e14ecc"
|
||||
SRC_URI[md5sum] = "24a6527796115828d2ebc75880e18d62"
|
||||
|
||||
SRC_URI_append_class-native = " \
|
||||
file://0001-Make-CPU-family-warnings-fatal.patch \
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
From 1ec44c955f45f3787aaf92edd70dec5bcf03f665 Mon Sep 17 00:00:00 2001
|
||||
From 4b4b3d4932d928f05dbd74d730a3c8a5ac371e1d Mon Sep 17 00:00:00 2001
|
||||
From: Ross Burton <ross.burton@intel.com>
|
||||
Date: Tue, 3 Jul 2018 13:59:09 +0100
|
||||
Subject: [PATCH] Make CPU family warnings fatal
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
From c040f0dbace3259c80f3710bc019433b9c817940 Mon Sep 17 00:00:00 2001
|
||||
From d9da5e7a16a9397e22a8900fac4b60b40d7f00de Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
Date: Mon, 25 Mar 2019 18:18:33 +0100
|
||||
Subject: [PATCH] mesonbuild/environment.py: do not determine whether a build
|
||||
@@ -8,23 +8,21 @@ This can, and does, go wrong when our host architecture is same as the target on
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
|
||||
---
|
||||
mesonbuild/environment.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
|
||||
index 4c1c5ac..6e5d689 100644
|
||||
index d4f0630..c584fa4 100644
|
||||
--- a/mesonbuild/environment.py
|
||||
+++ b/mesonbuild/environment.py
|
||||
@@ -478,7 +478,7 @@ class Environment:
|
||||
@@ -483,7 +483,7 @@ class Environment:
|
||||
self.first_invocation = True
|
||||
|
||||
def is_cross_build(self):
|
||||
- return not self.machines.matches_build_machine(MachineChoice.HOST)
|
||||
- return self.coredata.cross_file is not None
|
||||
+ return self.need_exe_wrapper()
|
||||
|
||||
def dump_coredata(self):
|
||||
return coredata.save(self.coredata, self.get_build_dir())
|
||||
--
|
||||
2.17.1
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
From a4bce582c1f13f48b329526aa81710405c4c691e Mon Sep 17 00:00:00 2001
|
||||
From 2164655328ec4e47335fc9033813274365491ad8 Mon Sep 17 00:00:00 2001
|
||||
From: Peter Kjellerstedt <pkj@axis.com>
|
||||
Date: Thu, 26 Jul 2018 16:32:49 +0200
|
||||
Subject: [PATCH] Support building allarch recipes again
|
||||
|
||||
Reference in New Issue
Block a user