Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Thu, 15 Nov 2012 18:37:25 -0500
From: Rich Felker <dalias@...ifal.cx>
To: musl@...ts.openwall.com
Subject: Re: A few issues on MIPS and now on ARMEL

On Fri, Nov 16, 2012 at 12:21:11AM +0200, Paul Schutte wrote:
> Hi guys,
> 
> I am now hitting a similar problem on armel.
> 
> I am cross-compiling "dnsmasq"
> 
> Glibc strace:
> 
> ---snip---
> socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP) = 5
> fcntl64(5, F_GETFL)                     = 0x2 (flags O_RDWR)
> fcntl64(5, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
> setsockopt(5, SOL_IP, IP_MTU_DISCOVER, [0], 4) = 0
> setsockopt(5, SOL_IP, IP_PKTINFO, [1], 4) = 0
> setsockopt(5, SOL_SOCKET, SO_BROADCAST, [1], 4) = 0
> setsockopt(5, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
> 
> 
> Musl strace:
> 
> socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP) = 5
> fcntl64(5, F_GETFL)                     = 0x2 (flags O_RDWR)
> fcntl64(5, F_SETFL, O_RDWR|O_NONBLOCK|O_LARGEFILE) = 0
> setsockopt(5, SOL_IP, IP_MTU_DISCOVER, [0], 4) = 0
> setsockopt(5, SOL_IP, IP_PKTINFO, [1], 4) = 0
> setsockopt(5, SOL_SOCKET, SO_BROADCAST, [1], 4) = 0
> setsockopt(5, SOL_SOCKET, *0xf /* SO_??? */*, [1], 4) = -1 ENOPROTOOPT
> (Protocol not available)

Thanks for the report. I'll check and see if ARM has unusual
definitions we're missing.

Rich

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.