From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/13408 Path: news.gmane.org!.POSTED!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: Problems with pthreads from a shared object? Date: Wed, 7 Nov 2018 19:43:12 -0500 Message-ID: <20181108004312.GX5150@brightrain.aerifal.cx> References: <20181107233142.GV5150@brightrain.aerifal.cx> <20181107234526.GW5150@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1541637681 18056 195.159.176.226 (8 Nov 2018 00:41:21 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 8 Nov 2018 00:41:21 +0000 (UTC) User-Agent: Mutt/1.5.21 (2010-09-15) To: musl@lists.openwall.com Original-X-From: musl-return-13424-gllmg-musl=m.gmane.org@lists.openwall.com Thu Nov 08 01:41:17 2018 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1gKYNo-0004co-RP for gllmg-musl@m.gmane.org; Thu, 08 Nov 2018 01:41:16 +0100 Original-Received: (qmail 23855 invoked by uid 550); 8 Nov 2018 00:43:25 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 23834 invoked from network); 8 Nov 2018 00:43:25 -0000 Content-Disposition: inline In-Reply-To: Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:13408 Archived-At: On Wed, Nov 07, 2018 at 06:53:33PM -0500, Barry Flartus wrote: > > > > OK. Can you run strace -f ./launch (or whatever the launch program > > executable is called) and post the output? > > > > Rich > > > > Here you go! > > $ strace -f ./launch > execve("./launch", ["./launch"], [/* 22 vars */]) = 0 > brk(NULL) = 0xe44000 > access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or OK, this is a glibc program, not a musl one. That's your problem. How did you compile/link it? Rich