From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 04/14] package: remove CodeSourcery sh dependencies
Date: Sun, 18 Jun 2017 11:12:17 +0200 [thread overview]
Message-ID: <20170618091217.GD2918@scaer> (raw)
In-Reply-To: <b09ce2c6f232b9b936e11d581c9e04071b59d371.1497583686.git.baruch@tkos.co.il>
Baruch, All,
On 2017-06-16 06:32 +0300, Baruch Siach spake thusly:
> The CodeSourcery sh toolchain has been removed. Drop negative dependencies on
> that toolchain.
>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/domoticz/Config.in | 3 ---
> package/liquid-dsp/Config.in | 1 -
> package/prboom/Config.in | 2 --
> package/qt/Config.in | 7 ++-----
> 4 files changed, 2 insertions(+), 11 deletions(-)
>
> diff --git a/package/domoticz/Config.in b/package/domoticz/Config.in
> index c6550d2ad07c..c03f84ae44bc 100644
> --- a/package/domoticz/Config.in
> +++ b/package/domoticz/Config.in
> @@ -7,8 +7,6 @@ config BR2_PACKAGE_DOMOTICZ
> depends on BR2_INSTALL_LIBSTDCPP
> depends on BR2_USE_WCHAR
> depends on BR2_PACKAGE_LUA_5_2 || BR2_PACKAGE_LUA_5_3
> - # These result in internal compiler error
> - depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
> select BR2_PACKAGE_BOOST
> select BR2_PACKAGE_BOOST_DATE_TIME
> select BR2_PACKAGE_BOOST_SYSTEM
> @@ -30,7 +28,6 @@ config BR2_PACKAGE_DOMOTICZ
> comment "domoticz needs lua >= 5.2 and a toolchain w/ C++, threads, wchar, dynamic library"
> depends on BR2_USE_MMU
> depends on BR2_TOOLCHAIN_HAS_SYNC_4
> - depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
> depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
> !BR2_USE_WCHAR || BR2_STATIC_LIBS || \
> !(BR2_PACKAGE_LUA_5_2 || BR2_PACKAGE_LUA_5_3)
> diff --git a/package/liquid-dsp/Config.in b/package/liquid-dsp/Config.in
> index dca39153bb07..59ee7edb523f 100644
> --- a/package/liquid-dsp/Config.in
> +++ b/package/liquid-dsp/Config.in
> @@ -18,7 +18,6 @@ if BR2_PACKAGE_LIQUID_DSP
>
> config BR2_PACKAGE_LIQUID_DSP_FAST
> bool "optimize for speed over accuracy"
> - depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
> help
> Optimize for speed over accuracy.
>
> diff --git a/package/prboom/Config.in b/package/prboom/Config.in
> index 6884f31e4635..8e445e98b85f 100644
> --- a/package/prboom/Config.in
> +++ b/package/prboom/Config.in
> @@ -1,7 +1,5 @@
> config BR2_PACKAGE_PRBOOM
> bool "prboom"
> - # These result in internal compiler error
> - depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
> select BR2_PACKAGE_SDL
> select BR2_PACKAGE_SDL_MIXER
> select BR2_PACKAGE_SDL_NET
> diff --git a/package/qt/Config.in b/package/qt/Config.in
> index fe0b0e978780..7710b09d29e1 100644
> --- a/package/qt/Config.in
> +++ b/package/qt/Config.in
> @@ -444,11 +444,8 @@ config BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
> default y if BR2_arc || BR2_arm || BR2_armeb || BR2_i386 || BR2_microblazeel || \
> BR2_microblazebe || BR2_mips || BR2_mipsel || \
> (BR2_mips64 || BR2_mips64el) && !BR2_MIPS_NABI32 || BR2_powerpc || \
> - BR2_powerpc64 || BR2_powerpc64le || BR2_x86_64
> - # The CodeSourcery SuperH toolchain fails to build Webkit,
> - # with an assertion failure in binutils.
> - default y if (BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb) && \
> - !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
> + BR2_powerpc64 || BR2_powerpc64le || BR2_x86_64 || \
> + BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb
> depends on BR2_TOOLCHAIN_HAS_SYNC_4
>
> config BR2_PACKAGE_QT_WEBKIT
> --
> 2.11.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2017-06-18 9:12 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-16 3:32 [Buildroot] [PATCH 00/14] toolchain-external: remove support for glibc before 2.17 Baruch Siach
2017-06-16 3:32 ` [Buildroot] [PATCH 01/14] docs/manual: update external toolchain advantages list Baruch Siach
2017-06-18 9:02 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 02/14] toolchain: remove CodeSourcery x86 toolchain Baruch Siach
2017-06-18 9:08 ` Yann E. MORIN
2017-06-18 9:14 ` Baruch Siach
2017-06-18 9:19 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 03/14] toolchain: remove CodeSourcery sh toolchain Baruch Siach
2017-06-18 9:09 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 04/14] package: remove CodeSourcery sh dependencies Baruch Siach
2017-06-18 9:12 ` Yann E. MORIN [this message]
2017-06-16 3:32 ` [Buildroot] [PATCH 05/14] toolchain-external: update list of toolchains Baruch Siach
2017-06-18 9:21 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 06/14] docs/manual: drop mention of removed external toolchains Baruch Siach
2017-06-18 9:23 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 07/14] swupdate: don't link with librt Baruch Siach
2017-06-18 9:26 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 08/14] aiccu: " Baruch Siach
2017-06-18 9:27 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 09/14] libv4l: " Baruch Siach
2017-06-18 9:31 ` Yann E. MORIN
2017-06-18 9:34 ` Baruch Siach
2017-06-18 9:36 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 10/14] e2fsprogs: " Baruch Siach
2017-06-18 9:33 ` Yann E. MORIN
2017-06-18 10:13 ` Baruch Siach
2017-06-18 11:55 ` Yann E. MORIN
2017-06-19 19:14 ` Baruch Siach
2017-06-16 3:32 ` [Buildroot] [PATCH 11/14] liboping: no need to check for clock_gettime Baruch Siach
2017-06-18 9:37 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 12/14] openipmi: " Baruch Siach
2017-06-18 9:42 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 13/14] lirc-tools: " Baruch Siach
2017-06-18 9:45 ` Yann E. MORIN
2017-06-16 3:32 ` [Buildroot] [PATCH 14/14] softether: " Baruch Siach
2017-06-18 9:47 ` Yann E. MORIN
2017-06-20 20:23 ` [Buildroot] [PATCH 00/14] toolchain-external: remove support for glibc before 2.17 Thomas Petazzoni
2017-06-22 7:57 ` Arnout Vandecappelle
2017-06-22 17:01 ` Baruch Siach
2017-06-23 21:33 ` Waldemar Brodkorb
2017-06-25 4:57 ` Baruch Siach
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170618091217.GD2918@scaer \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.