From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SUBJ_OBFU_PUNCT_FEW autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 27087 invoked from network); 19 Dec 2020 07:23:47 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 19 Dec 2020 07:23:47 -0000 Received: (qmail 7451 invoked by uid 550); 19 Dec 2020 07:23:44 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 7413 invoked from network); 19 Dec 2020 07:23:43 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=schoepfer.info; s=mail; t=1608362612; bh=qFJGGk6gIHTLmgcS89RJ6aYps1CAIblfvMuiLSACOKg=; h=Date:From:To:Subject:From:Subject; b=e7IKrE2BuslW7KRhpSkrE7p6GLXJhFiKU5L6s1NJY74tZvxLnoZv0vlsXdGcFgacU CBJAyKS+zxkiMKDeARzkQKH5Oc5u7wLI1VrOCDraovFni7yb0uV3M7QHKiFXOp1TTF ylvHmXXE1GS/aWnNiob51q/8VIZxQhc7o1Ooqxgw= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Sat, 19 Dec 2020 08:23:31 +0100 From: musl@schoepfer.info To: musl@lists.openwall.com Message-ID: <741a27c05e04c27e2796abbe33fc22e5@schoepfer.info> X-Sender: musl@schoepfer.info User-Agent: Roundcube Webmail/1.1.5 X-Virus-Scanned: clamav-milter 0.102.2 at mail2 X-Virus-Status: Clean Subject: [musl] pthread_getname_np implementation Hi all, i'm new to this list. I'm trying to compile qt5-5.15.2 with gcc10.2 and musl-1.2.1, and after some hours compiling i get: platform/default/thread.cpp: In function ‘std::string mbgl::platform::getCurrentThreadName()’: platform/default/thread.cpp:14:5: error: ‘pthread_getname_np’ was not declared in this scope; did you mean ‘pthread_setname_np’? 14 | pthread_getname_np(pthread_self(), name, sizeof(name)); | ^~~~~~~~~~~~~~~~~~ | pthread_setname_np I found this thread about musl/pthread_getname_np https://www.openwall.com/lists/musl/2019/07/09/2 , which says "Based on the previous discussion of this and others' comments, I think adding it[pthread_getname_np] is probably the right thing to do. I'll look at it after rolling the release. Ping the list again if I don't get around to it soon." So here is the ping :-) If there's another way around to get qt5 to compile, that's of course also ok for me. Thanks, Johannes