diff mbox

[buildroot-test,1/2] autobuild-run: do not build strongswan using an incompatible toolchain

Message ID 1441965048-30856-1-git-send-email-Vincent.Riera@imgtec.com
State Accepted
Headers show

Commit Message

Vicente Olivert Riera Sept. 11, 2015, 9:50 a.m. UTC
This external MIPS toolchain uses eglibc-2.18 which lacks the definition
of the SYS_getdents64 macro for MIPS64 n64. Because of that, strongswan
package fails to build and shows this error message:

utils/utils.c: In function 'closefrom':
utils/utils.c:151:25: error: 'SYS_getdents64' undeclared (first use in
this function)
   while ((len = syscall(SYS_getdents64, dir_fd, buffer,

Fixes:

  http://autobuild.buildroot.net/results/ea2/ea2be188b88ceb1cad4314bdaf00184cb74b9e26/

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 scripts/autobuild-run |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

Comments

Thomas Petazzoni Oct. 4, 2015, 9:49 a.m. UTC | #1
Dear Vicente Olivert Riera,

On Fri, 11 Sep 2015 10:50:47 +0100, Vicente Olivert Riera wrote:
> This external MIPS toolchain uses eglibc-2.18 which lacks the definition
> of the SYS_getdents64 macro for MIPS64 n64. Because of that, strongswan
> package fails to build and shows this error message:
> 
> utils/utils.c: In function 'closefrom':
> utils/utils.c:151:25: error: 'SYS_getdents64' undeclared (first use in
> this function)
>    while ((len = syscall(SYS_getdents64, dir_fd, buffer,
> 
> Fixes:
> 
>   http://autobuild.buildroot.net/results/ea2/ea2be188b88ceb1cad4314bdaf00184cb74b9e26/
> 
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
>  scripts/autobuild-run |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)

Both patches applied to buildroot-test, thanks!

Thomas
diff mbox

Patch

diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index ae28165..6e98b2c 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -389,6 +389,10 @@  def fixup_config(**kwargs):
     if 'BR2_PACKAGE_LIBMPEG2=y\n' in configlines and \
        'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/powerpc-ctng-linux-uclibc.tar.xz"\n' in configlines:
         return False
+    # This MIPS toolchain uses eglibc-2.18 which lacks SYS_getdents64
+    if 'BR2_PACKAGE_STRONGSWAN=y\n' in configlines and \
+       'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/mips64el-ctng_n64-linux-gnu.tar.xz"\n' in configlines:
+        return False
     # The ctng toolchain has a too old glibc version, which lacks SYS_getdents64
     if 'BR2_PACKAGE_PYTHON3=y\n' in configlines and \
        'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/mips64el-ctng_n64-linux-gnu.tar.xz"\n' in configlines: