* [Buildroot] [autobuild] autobuild-run: add br-sh4-full-2015.05/opencv exception
@ 2015-06-25 20:03 Samuel Martin
2015-07-04 13:55 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Samuel Martin @ 2015-06-25 20:03 UTC (permalink / raw)
To: buildroot
Avoid the following build failures:
/tmp/ccCR4s15.s: Assembler messages:
/tmp/ccCR4s15.s:19880: Error: pcrel too far
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
---
This patch is related to this series:
http://lists.busybox.net/pipermail/buildroot/2015-June/130838.html
---
scripts/autobuild-run | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index 340cb63..9388795 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -475,6 +475,10 @@ def fixup_config(**kwargs):
if 'BR2_PACKAGE_WESTON=y\n' in configlines and \
'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/mipsel-ctng-linux-uclibc.tar.xz"\n' in configlines:
return False
+ # This sh4 toolchain fails to build opencv package
+ if 'BR2_PACKAGE_OPENCV=y\n' in configlines and \
+ 'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-sh4-full-2015.05.tar.bz2"\n' in configlines:
+ return False
with open(os.path.join(outputdir, ".config"), "w+") as configf:
configf.writelines(configlines)
--
2.4.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-07-04 13:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-25 20:03 [Buildroot] [autobuild] autobuild-run: add br-sh4-full-2015.05/opencv exception Samuel Martin
2015-07-04 13:55 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox