* [Buildroot] [PATCH] beecrypt: fix compile for coldfire
@ 2016-06-18 11:26 Waldemar Brodkorb
2016-06-18 21:38 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Waldemar Brodkorb @ 2016-06-18 11:26 UTC (permalink / raw)
To: buildroot
Package uses m68k optimization, which doesn't work with coldfire.
These optimizations are disabled with --enable-debug.
Fixes following autobuild failure:
http://autobuild.buildroot.net/results/bbe57a096de207b78e069591e21ac5a79eab069e/
http://autobuild.buildroot.net/results/ab702e6db382b1975d0cd61feaba9812830e81e8/
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
package/beecrypt/beecrypt.mk | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/package/beecrypt/beecrypt.mk b/package/beecrypt/beecrypt.mk
index e66cec1..c5721ea 100644
--- a/package/beecrypt/beecrypt.mk
+++ b/package/beecrypt/beecrypt.mk
@@ -17,6 +17,11 @@ BEECRYPT_CONF_OPTS = \
--without-python \
--disable-openmp
+# disable optmized m68k assembly as it doesn't compile for coldfire
+ifeq ($(BR2_m68k_cf),y)
+BEECRYPT_CONF_OPTS += --enable-debug
+endif
+
ifeq ($(BR2_PACKAGE_BEECRYPT_CPP),y)
BEECRYPT_DEPENDENCIES += icu
BEECRYPT_CONF_OPTS += --with-cplusplus
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] beecrypt: fix compile for coldfire
2016-06-18 11:26 [Buildroot] [PATCH] beecrypt: fix compile for coldfire Waldemar Brodkorb
@ 2016-06-18 21:38 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2016-06-18 21:38 UTC (permalink / raw)
To: buildroot
>>>>> "Waldemar" == Waldemar Brodkorb <wbx@openadk.org> writes:
> Package uses m68k optimization, which doesn't work with coldfire.
> These optimizations are disabled with --enable-debug.
> Fixes following autobuild failure:
> http://autobuild.buildroot.net/results/bbe57a096de207b78e069591e21ac5a79eab069e/
> http://autobuild.buildroot.net/results/ab702e6db382b1975d0cd61feaba9812830e81e8/
> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
> ---
> package/beecrypt/beecrypt.mk | 5 +++++
> 1 file changed, 5 insertions(+)
> diff --git a/package/beecrypt/beecrypt.mk b/package/beecrypt/beecrypt.mk
> index e66cec1..c5721ea 100644
> --- a/package/beecrypt/beecrypt.mk
> +++ b/package/beecrypt/beecrypt.mk
> @@ -17,6 +17,11 @@ BEECRYPT_CONF_OPTS = \
> --without-python \
> --disable-openmp
> +# disable optmized m68k assembly as it doesn't compile for coldfire
s/optmized/optimized/. Committed with that fixed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-06-18 21:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-18 11:26 [Buildroot] [PATCH] beecrypt: fix compile for coldfire Waldemar Brodkorb
2016-06-18 21:38 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox