From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,RDNS_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Received: (qmail 12555 invoked from network); 10 Mar 2020 14:05:13 -0000 Received-SPF: pass (mother.openwall.net: domain of lists.openwall.com designates 195.42.179.200 as permitted sender) receiver=inbox.vuxu.org; client-ip=195.42.179.200 envelope-from= Received: from unknown (HELO mother.openwall.net) (195.42.179.200) by inbox.vuxu.org with ESMTP; 10 Mar 2020 14:05:13 -0000 Received: (qmail 11502 invoked by uid 550); 10 Mar 2020 14:05:11 -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 11484 invoked from network); 10 Mar 2020 14:05:11 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=avast.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :content-transfer-encoding; bh=fGT/0aCB3OSSI+lJ9GWp4hloJ4VrLB6UWUQjbd/KHHo=; b=ejz0IGflQgrCCuS62PV9iQH+/sDdNbOK8Wt2WsmBNfojXkXjP7E9nW9r7hnNMGxE8C DN2vNnLBy/BNLKzVvP8zJuHrHszzUz/gc0fdOWy4aR3shnaaUMgd/HmJeK5Q4DGQ9nHJ W6GgSk3EDbX9fpocrAgqgij1kUaBmGh7CKTPc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:content-transfer-encoding; bh=fGT/0aCB3OSSI+lJ9GWp4hloJ4VrLB6UWUQjbd/KHHo=; b=Idf/9z9YECJIe6i1ngCbizxB7gjEFidKnyyyX22AT4w6g/ceK4jb7wX9xnIeePGFog g6cco5Kj9LY1qTZ4zJsPFovCb4ugknI+4HGom7R2H1oDvmsmtvzN++QMMI3tQNqS3JYy OugTVZhyQxxthYx0eog7rz9j8YFHk3BOPqp9Nrlfyu1DnhKPbMoDdXVBOXPhZKHDZFtm ZGkFYcaTL0CxZiR8zA7xhiZiuL2ooQe7XLQgx5BRNYQM8gmyNvW6SDqd4au6a5RIqZtj KnEfxNnxNmpH7ApugjX6sELNPW1ZEvJRaroi4G6NAjRxNR4gi0MZqBaJ/el6+JwNDqXS MR+Q== X-Gm-Message-State: ANhLgQ1gfznGV/Pcd9O17IJpZQAGhnci0pKZri7ficOuyOcK8kO27LL9 AyEOvgnZei5Uon1EIvpDD6bL7cjwpwCtpy0+wti9LkCKjB3zTA== X-Google-Smtp-Source: ADFU+vtLHmdY98/zncHyMJPVxdJnI/pMz+fFGPO7zYgy6MaRtjXO9vh1uNr+k036vmAG7zjvjR35yvcKMDKaK8pfwzA= X-Received: by 2002:a19:7b18:: with SMTP id w24mr12839218lfc.188.1583849099438; Tue, 10 Mar 2020 07:04:59 -0700 (PDT) MIME-Version: 1.0 References: <20200310095949.GJ14278@port70.net> <20200310134113.GZ11469@brightrain.aerifal.cx> In-Reply-To: <20200310134113.GZ11469@brightrain.aerifal.cx> From: =?UTF-8?B?S2Fpc3Jsw61rLCBKYW4=?= Date: Tue, 10 Mar 2020 15:04:48 +0100 Message-ID: To: musl@lists.openwall.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [musl] musl and jemalloc support On Tue, Mar 10, 2020 at 2:41 PM Rich Felker wrote: > > On Tue, Mar 10, 2020 at 12:08:57PM +0100, Kaisrl=C3=ADk, Jan wrote: > > > the fact that you have libpthread.so means it's not a musl system > > > and preloading a libpthread.so from another libc is expected to > > > crash. (even on other systems you should not just preload libpthread, > > > but libjemalloc should have it in its dependencies if needed.) > > > > > > > Sorry, I kept libpthread from one of my previous tests which is slightl= y > > misleading in this case. My system has only one libpthread library comi= ng > > from musl. > > musl has no libpthread.so, only libpthread.a (which is empty). If you > have a libpthread.so, something probably went badly wrong in setting > up your system. Thank you for pointing this. Fortunately, it is symlink to libc. ls -la usr/lib/libpthread.so lrwxrwxrwx 1 X X 7 Mar 5 15:02 usr/lib/libpthread.so -> libc.so > > Rich