From: Simon Glass Date: Fri, 10 Mar 2023 20:48:51 +0000 (-0800) Subject: buildman: Fix CROSS_COMPILE output for sandbox X-Git-Tag: v2023.07~72^2~32^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3cea95fd21937ce82be3dbd1062dde8fb0e6114;p=platform%2Fkernel%2Fu-boot.git buildman: Fix CROSS_COMPILE output for sandbox The previous attempt at fixing this broke the normal usage of the -A flag. At present, 'buildman -A sandbox' adds the path containing the toolchain. We can assume that this is in the path and we don't want to set CROSS_COMPILE=/bin/ Change this to align with what MakeEnvironment() does, but only for sandbox boards. Signed-off-by: Simon Glass --- diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index 688f2e2..241e8e6 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -156,9 +156,10 @@ class Toolchain: Returns: Value of that environment variable or arguments """ - wrapper = self.GetWrapper() if which == VAR_CROSS_COMPILE: - return wrapper + os.path.join(self.path, self.cross) + wrapper = self.GetWrapper() + base = '' if self.arch == 'sandbox' else self.path + return wrapper + os.path.join(base, self.cross) elif which == VAR_PATH: return self.path elif which == VAR_ARCH: