From owner-svn-src-all@freebsd.org Sat Dec 26 19:40:10 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A946BA53067 for ; Sat, 26 Dec 2015 19:40:10 +0000 (UTC) (envelope-from ed@nuxi.nl) Received: from mail-yk0-x230.google.com (mail-yk0-x230.google.com [IPv6:2607:f8b0:4002:c07::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6CAA012D6 for ; Sat, 26 Dec 2015 19:40:09 +0000 (UTC) (envelope-from ed@nuxi.nl) Received: by mail-yk0-x230.google.com with SMTP id x184so261719596yka.3 for ; Sat, 26 Dec 2015 11:40:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nuxi-nl.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=IXEayqHxeV/2UXZU3yIC/rQJCJ5ni9x3aok6M97XoVw=; b=ZPLDt3ZUzDzD2ltAajCepCSjTfwdnN5AhR+zxuna5B+OB3BjbcV3W6wKpav2QYKDS6 4XJgkghc+bls6wgt2jnmQdMPg53L4WScWjMnCGyiTN9ouYHl7GEby6MkbBYn6Oc3aEH8 TeratiX3uaQM8TOcjsuX+WNG40cDCfyfAZZ4X9x1bSj2sQcaFZsbtR5h00Gp0UHuW4zj 1GfPy5BHRBwO2NRJP88CFg2DkkNc00GEq4Gv81FqT4nHwlk+75wxoC71hzns0cYd4OLq u1GdQCdPYvEdGOmyrBsoKt927BZtlf9IAY5LpHlUz4iWZBpoOYuPm1+jNK1QOYmuVw4r Os9Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=IXEayqHxeV/2UXZU3yIC/rQJCJ5ni9x3aok6M97XoVw=; b=RfLHfs0k8RqVdjmT20kSjZMadKDsgtQSLQ5OQyATXxFL56P4eTCQXccrf7gen+Zy1k /Un3VjbxztBoCYRTaxxegsTfE4TZLm6+A8sbb0p72NUJBx0zku47NctmBf1MKxNm6bgk romY73HScNPNID9WNrFs9EH+CvqZuGpGAG76afFKNNrAGjAgEGjmGy2OPnRYmr1WFVs6 ANv20qIxSB3GY7tZbfhwg8gMs1Pw5PcW6oN1buV7qMaLHtAySOz7PFLyCkpdNFIzg5IT W53c0ogkz6m7y+o5ts40xqfVRdr7+Q+zBoS0D/wbUWf90LxK4c5XC20zq2MtTkOjfArl +M+g== X-Gm-Message-State: ALoCoQmkTTL+DVekpd6C97fzrAo44FcRPGsH8mKR51BVHR2alFKsZH7NxZZZzedT/zZdtMBjL9Ktuie3kgN7A/Rb7I8zZW+CLA== MIME-Version: 1.0 X-Received: by 10.129.133.2 with SMTP id v2mr39530375ywf.76.1451158808856; Sat, 26 Dec 2015 11:40:08 -0800 (PST) Received: by 10.13.211.71 with HTTP; Sat, 26 Dec 2015 11:40:08 -0800 (PST) In-Reply-To: <567DE180.3040601@freebsd.org> References: <201512251129.tBPBTIZp058825@repo.freebsd.org> <567DE180.3040601@freebsd.org> Date: Sat, 26 Dec 2015 20:40:08 +0100 Message-ID: Subject: Re: svn commit: r292723 - in head: lib/libc share/mk From: Ed Schouten To: Colin Percival Cc: Daniel Eischen , src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2015 19:40:10 -0000 Hi Colin, 2015-12-26 1:38 GMT+01:00 Colin Percival : > I just did some tests with one of my pthread-using tools, and it passes > all of my tests with -lc added before or after -lpthread. Can you > remember any details of how the problems showed up? Is it possible that > this has been fixed since then? I know there's a lot of tricks to make > sure that the right versions of functions get called. I think I ran into these issues back when I was using FreeBSD 5 or 6, and I forgot about all of the details. Kostik's email, though, does sound reassuring. Let's assume that the problem I ran into no longer exists. > Yes, adding a dummy library was my first thought, but kib pointed out > that a symlink was much simpler. Obviously it never occurred to me that > linking to a library which we were going to be linking to anyway would > cause problems... Well, they're both equally simple, right? An empty .a file is only a couple of bytes in size, likely not larger than a symlink. But I'm digressing. Thanks, -- Ed Schouten Nuxi, 's-Hertogenbosch, the Netherlands KvK-nr.: 62051717