* [Buildroot] [PATCH 0/3] Enable packages for ARC external toolchain
@ 2018-06-28 10:56 Evgeniy Didin
2018-06-28 10:56 ` [Buildroot] [PATCH 1/3] mpd: enable " Evgeniy Didin
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Evgeniy Didin @ 2018-06-28 10:56 UTC (permalink / raw)
To: buildroot
With the latest ARC prebuilt toolchain arc-2018.03 mpv,mpd amd xterm
packages are building without any errors.
This patch is as a prerequisite for this series:
https://patchwork.ozlabs.org/patch/935666/
Evgeniy Didin (3):
mpd: enable for ARC external toolchain
mpv: enable for ARC external toolchain
xterm: enable for ARC external toolchain
package/mpd/Config.in | 3 ---
package/mpv/Config.in | 3 ---
package/xterm/Config.in | 2 --
3 files changed, 8 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/3] mpd: enable for ARC external toolchain
2018-06-28 10:56 [Buildroot] [PATCH 0/3] Enable packages for ARC external toolchain Evgeniy Didin
@ 2018-06-28 10:56 ` Evgeniy Didin
2018-06-28 10:56 ` [Buildroot] [PATCH 2/3] mpv: " Evgeniy Didin
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Evgeniy Didin @ 2018-06-28 10:56 UTC (permalink / raw)
To: buildroot
With the latest prebuilt ARC toolchain this package is building
without any errors.
Signed-off-by: Evgeniy Didin <didin@synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: arc-buildroot at synopsys.com
---
package/mpd/Config.in | 3 ---
1 file changed, 3 deletions(-)
diff --git a/package/mpd/Config.in b/package/mpd/Config.in
index 857f212477..1d50c7bf44 100644
--- a/package/mpd/Config.in
+++ b/package/mpd/Config.in
@@ -7,8 +7,6 @@ menuconfig BR2_PACKAGE_MPD
depends on BR2_TOOLCHAIN_HAS_ATOMIC
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
- # ARC toolchain issue
- depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC
select BR2_PACKAGE_BOOST
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
select BR2_PACKAGE_MPD_TREMOR if !(BR2_PACKAGE_MPD_MAD || BR2_PACKAGE_MPD_MPG123 || BR2_PACKAGE_MPD_VORBIS || BR2_PACKAGE_MPD_WAVPACK || BR2_PACKAGE_MPD_FLAC || BR2_PACKAGE_MPD_MUSEPACK || BR2_PACKAGE_MPD_FFMPEG)
@@ -338,7 +336,6 @@ comment "mpd needs a toolchain w/ C++, threads, wchar, gcc >= 4.9"
depends on BR2_TOOLCHAIN_HAS_ATOMIC
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
- depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC
comment "mpd needs a toolchain not affected by GCC bug 64735"
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/3] mpv: enable for ARC external toolchain
2018-06-28 10:56 [Buildroot] [PATCH 0/3] Enable packages for ARC external toolchain Evgeniy Didin
2018-06-28 10:56 ` [Buildroot] [PATCH 1/3] mpd: enable " Evgeniy Didin
@ 2018-06-28 10:56 ` Evgeniy Didin
2018-06-28 10:57 ` [Buildroot] [PATCH 3/3] xterm: " Evgeniy Didin
2018-06-28 20:02 ` [Buildroot] [PATCH 0/3] Enable packages " Thomas Petazzoni
3 siblings, 0 replies; 5+ messages in thread
From: Evgeniy Didin @ 2018-06-28 10:56 UTC (permalink / raw)
To: buildroot
With the latest prebuilt ARC toolchain this package is building
without any errors.
Signed-off-by: Evgeniy Didin <didin@synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: arc-buildroot at synopsys.com
---
package/mpv/Config.in | 3 ---
1 file changed, 3 deletions(-)
diff --git a/package/mpv/Config.in b/package/mpv/Config.in
index ce6f367d72..69810038f1 100644
--- a/package/mpv/Config.in
+++ b/package/mpv/Config.in
@@ -4,8 +4,6 @@ config BR2_PACKAGE_MPV
depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_5
depends on BR2_TOOLCHAIN_HAS_ATOMIC || BR2_TOOLCHAIN_HAS_SYNC_8
- # ARC toolchain issue
- depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
select BR2_PACKAGE_FFMPEG
select BR2_PACKAGE_FFMPEG_SWSCALE
@@ -29,4 +27,3 @@ comment "mpv needs a toolchain w/ threads, gcc >= 4.5"
depends on BR2_TOOLCHAIN_HAS_ATOMIC || BR2_TOOLCHAIN_HAS_SYNC_8
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_5
- depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 3/3] xterm: enable for ARC external toolchain
2018-06-28 10:56 [Buildroot] [PATCH 0/3] Enable packages for ARC external toolchain Evgeniy Didin
2018-06-28 10:56 ` [Buildroot] [PATCH 1/3] mpd: enable " Evgeniy Didin
2018-06-28 10:56 ` [Buildroot] [PATCH 2/3] mpv: " Evgeniy Didin
@ 2018-06-28 10:57 ` Evgeniy Didin
2018-06-28 20:02 ` [Buildroot] [PATCH 0/3] Enable packages " Thomas Petazzoni
3 siblings, 0 replies; 5+ messages in thread
From: Evgeniy Didin @ 2018-06-28 10:57 UTC (permalink / raw)
To: buildroot
With the latest prebuilt ARC toolchain this package is building
without any errors.
Signed-off-by: Evgeniy Didin <didin@synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: arc-buildroot at synopsys.com
---
package/xterm/Config.in | 2 --
1 file changed, 2 deletions(-)
diff --git a/package/xterm/Config.in b/package/xterm/Config.in
index f3bc4500a8..eaa756a441 100644
--- a/package/xterm/Config.in
+++ b/package/xterm/Config.in
@@ -2,8 +2,6 @@ config BR2_PACKAGE_XTERM
bool "xterm"
depends on BR2_PACKAGE_XORG7
depends on BR2_USE_MMU # fork()
- # ARC toolchain issue
- depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_XLIB_LIBXAW
help
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 0/3] Enable packages for ARC external toolchain
2018-06-28 10:56 [Buildroot] [PATCH 0/3] Enable packages for ARC external toolchain Evgeniy Didin
` (2 preceding siblings ...)
2018-06-28 10:57 ` [Buildroot] [PATCH 3/3] xterm: " Evgeniy Didin
@ 2018-06-28 20:02 ` Thomas Petazzoni
3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2018-06-28 20:02 UTC (permalink / raw)
To: buildroot
Hello,
On Thu, 28 Jun 2018 13:56:57 +0300, Evgeniy Didin wrote:
> Evgeniy Didin (3):
> mpd: enable for ARC external toolchain
> mpv: enable for ARC external toolchain
> xterm: enable for ARC external toolchain
Applied, thanks! Thanks for following up on these issues.
Thomas
--
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-06-28 20:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-28 10:56 [Buildroot] [PATCH 0/3] Enable packages for ARC external toolchain Evgeniy Didin
2018-06-28 10:56 ` [Buildroot] [PATCH 1/3] mpd: enable " Evgeniy Didin
2018-06-28 10:56 ` [Buildroot] [PATCH 2/3] mpv: " Evgeniy Didin
2018-06-28 10:57 ` [Buildroot] [PATCH 3/3] xterm: " Evgeniy Didin
2018-06-28 20:02 ` [Buildroot] [PATCH 0/3] Enable packages " Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox