aboutsummaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2013-07-26 15:31:27 +0300
committerSaul Wold <sgw@linux.intel.com>2013-07-30 07:25:40 -0700
commit0023188ec27404b8109ea92d7f7f23748aa62a46 (patch)
tree87c359080abef47660cfc3a897ed4c6f00273c58 /meta/conf
parent1d709d61da99f0e8a897f40a9d2a14bfaa1ee77e (diff)
downloadopenembedded-core-0023188ec27404b8109ea92d7f7f23748aa62a46.tar.gz
csl-versions.inc: instruct user to check local.conf
In case the compiler version cannot be extracted instruct user to check that the toolchain supports MACHINE's architecture and that the latter is set correctly in local.conf. [YOCTO #4901] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/distro/include/csl-versions.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/conf/distro/include/csl-versions.inc b/meta/conf/distro/include/csl-versions.inc
index f3b491cb16..3938bf7ed2 100644
--- a/meta/conf/distro/include/csl-versions.inc
+++ b/meta/conf/distro/include/csl-versions.inc
@@ -18,6 +18,7 @@ def csl_get_version(d):
stdout, stderr = csl_run(d, 'gcc', '-v')
except bb.process.CmdError as exc:
bb.error('Failed to obtain CodeSourcery toolchain version: %s' % exc)
+ bb.error('Make sure that MACHINE is set correctly in your local.conf and the toolchain supports %s.' % d.getVar("TARGET_ARCH", True))
return 'UNKNOWN'
else:
last_line = stderr.splitlines()[-1]