diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-05 17:34:43 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-05 17:35:31 +0200 |
| commit | 6b8e4a7f4a1d7460485374ff6efda0bcb2ec5aa7 (patch) | |
| tree | 11c457abc441f8dc7417b7c16d23fe8cde08ca12 | |
| parent | e339f7eb39ccab8128e945927bbb99af065a0df2 (diff) | |
| download | buildroot-6b8e4a7f4a1d7460485374ff6efda0bcb2ec5aa7.tar.gz buildroot-6b8e4a7f4a1d7460485374ff6efda0bcb2ec5aa7.zip | |
wvstreams: disable with the ARC external toolchain
This toolchain lacks program_invocation_* in the uClibc configuration.
Fixes:
http://autobuild.buildroot.org/results/653/6531009b2eae64b4e79f66a625cf2a3f9ffc2ac6/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/wvdial/Config.in | 2 | ||||
| -rw-r--r-- | package/wvstreams/Config.in | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/package/wvdial/Config.in b/package/wvdial/Config.in index e57f9755f7..14befcf809 100644 --- a/package/wvdial/Config.in +++ b/package/wvdial/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_WVDIAL bool "wvdial" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_MMU # wvstreams + depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_2014_12 # wvstreams select BR2_PACKAGE_WVSTREAMS help wvdial is an intelligent Point-to-Point Protocol dialer @@ -11,3 +12,4 @@ config BR2_PACKAGE_WVDIAL comment "wvdial needs a toolchain w/ C++" depends on BR2_USE_MMU depends on !BR2_INSTALL_LIBSTDCPP + depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_2014_12 diff --git a/package/wvstreams/Config.in b/package/wvstreams/Config.in index 3080dc71ef..0580516b3f 100644 --- a/package/wvstreams/Config.in +++ b/package/wvstreams/Config.in @@ -2,6 +2,8 @@ config BR2_PACKAGE_WVSTREAMS bool "wvstreams" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_MMU # fork() + # toolchain lacks program_invocation_* + depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_2014_12 select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_ZLIB help @@ -12,3 +14,4 @@ config BR2_PACKAGE_WVSTREAMS comment "wvstreams needs a toolchain w/ C++" depends on BR2_USE_MMU depends on !BR2_INSTALL_LIBSTDCPP + depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_2014_12 |

