blob: 8cb11879f4da67ab105b1128807e70026a172646 [file] [log] [blame]
Brad Bishop08902b02019-08-20 09:16:51 -04001From ec9c4a22424a5d55fcf213a55d03f096ec24bcae Mon Sep 17 00:00:00 2001
Brad Bishopc342db32019-05-15 21:57:59 -04002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Mon, 25 Mar 2019 18:18:33 +0100
4Subject: [PATCH] mesonbuild/environment.py: do not determine whether a build
5 is cross by comparing architectures
6
7This can, and does, go wrong when our host architecture is same as the target one(e.g. x86_64).
8
9Upstream-Status: Pending
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11
12---
13 mesonbuild/environment.py | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
Brad Bishop08902b02019-08-20 09:16:51 -040017index 84a7596..9a029f4 100644
Brad Bishopc342db32019-05-15 21:57:59 -040018--- a/mesonbuild/environment.py
19+++ b/mesonbuild/environment.py
Brad Bishop08902b02019-08-20 09:16:51 -040020@@ -520,7 +520,7 @@ class Environment:
Brad Bishopc342db32019-05-15 21:57:59 -040021 self.first_invocation = True
22
Brad Bishop08902b02019-08-20 09:16:51 -040023 def is_cross_build(self) -> bool:
24- return not self.machines.matches_build_machine(MachineChoice.HOST)
Brad Bishopc342db32019-05-15 21:57:59 -040025+ return self.need_exe_wrapper()
26
27 def dump_coredata(self):
28 return coredata.save(self.coredata, self.get_build_dir())