From owner-freebsd-questions@freebsd.org Sat Apr 23 14:41:31 2016 Return-Path: Delivered-To: freebsd-questions@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 8EB3EB1A006 for ; Sat, 23 Apr 2016 14:41:31 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-wm0-x233.google.com (mail-wm0-x233.google.com [IPv6:2a00:1450:400c:c09::233]) (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 DDE721E69; Sat, 23 Apr 2016 14:41:28 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: by mail-wm0-x233.google.com with SMTP id v188so50799667wme.1; Sat, 23 Apr 2016 07:41:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=hoSy2O4ZdEsTGu9ibUZ2XFaciBQh5sG6jR+suCjB3N0=; b=tfHXnMS90CJUrjFrxVE7QUcWnSx2sWAuI8/0Shbjy4xxhJlNohzw4RAvCkMgU0avG7 tSNC4OfO9Oc9egi7uOcwv3Jj3RLexMkYnixgeWsxxHnpaDRQg6dfSPqv75RZILZiy6UG 22fJDEjYb+k0cvuEzLylsFRMBFoMlHKbiPMDnrwA36ZOQa2gGnWKfhZeXPC5Jj9brK72 Of0Fz0CGDIxeWFQuzip5Uxtaca/Aq1bW1DrmXT1T3A4QFhTosK3i9Nyfns8Zo0gdtFhW 0Q1R86T2SIXX1V7X6WmHsf2icwnmLLqBiz/x9STPvHjgs0XWKkVJZD2GOt7oW65oSERa Kxiw== 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:from:date :message-id:subject:to:cc; bh=hoSy2O4ZdEsTGu9ibUZ2XFaciBQh5sG6jR+suCjB3N0=; b=ea1QCbxGt7WWN8cUM14DuUY0EEkiE09eEaBZmZK/Nk385iuYF3ThRYU7RV8lIm1AFM oLGM1txI856SweI8aa3cp1PP+9dZYv/vWHrgqqlfpQTecmn7HH+YvlFi7RmwPciCj1xC kse7982A8c7pgZbuCx7aOtNS1qqjx6SDxfRkRBlUnsT5R8mYPU3Tgg7mhNJKZb+g2T6O 0ZxQn11cuy6M5JvOF8Kc0As5ykGcKwc8r3fRvMJYfOD17v2W2pPw+C1fYx6wyjOWMQxH VXL7mJlGzP7hJwmoA0a2RABwG8uG33Zf917tVMyfSl/i5iZfl3MypPn736NLrG2K+j9u A3fw== X-Gm-Message-State: AOPr4FVLiz+f/svSetwEhifkYFbg2+Te4dfuiE2BTRvXQD6jOxzah0Cuj7NwGnZyycSNPCX8ql6oyYRGIzho9Q== X-Received: by 10.194.61.19 with SMTP id l19mr25099434wjr.4.1461422486948; Sat, 23 Apr 2016 07:41:26 -0700 (PDT) MIME-Version: 1.0 Received: by 10.194.103.233 with HTTP; Sat, 23 Apr 2016 07:40:47 -0700 (PDT) In-Reply-To: <571B85AE.1000003@FreeBSD.org> References: <571B7694.5050006@FreeBSD.org> <571B85AE.1000003@FreeBSD.org> From: Odhiambo Washington Date: Sat, 23 Apr 2016 17:40:47 +0300 Message-ID: Subject: Re: About different ABI between gcc and clang To: Matthew Seaman Cc: User Questions Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Apr 2016 14:41:31 -0000 On 23 April 2016 at 17:24, Matthew Seaman wrote: > On 23/04/2016 14:59, Odhiambo Washington wrote: > > On my box, I have: > > > > root@gw:/usr/home/wash # `which clang` --version > > FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 > > Target: i386-unknown-freebsd9.3 > > Thread model: posix > > root@gw:/usr/home/wash # clang --version > > FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 > > Target: i386-unknown-freebsd9.3 > > Thread model: posix > > > > root@gw:/usr/home/wash # gcc --version > > gcc (GCC) 4.2.1 20070831 patched [FreeBSD] > > Copyright (C) 2007 Free Software Foundation, Inc. > > This is free software; see the source for copying conditions. There is > NO > > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR > PURPOSE. > > > > root@gw:/usr/home/wash # which gcc > > /usr/bin/gcc > > root@gw:/usr/home/wash # /usr/bin/gcc --version > > gcc (GCC) 4.2.1 20070831 patched [FreeBSD] > > Copyright (C) 2007 Free Software Foundation, Inc. > > This is free software; see the source for copying conditions. There is > NO > > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR > PURPOSE. > > > > Any suggestion on what I should do? > > Those are the compilers that come with the base system. Try installing > something more recent from ports. > > > I am trying to compile squid-4.0.9 which isn't in the ports. > > > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203860 > > Not sure why that hasn't been committed yet. > > Cheers, > > Matthew > > Heheee, I knew with you I can never go wrong! Now I am smiling from cheek to cheek!! Have a blessed one, and may you live long!!!! -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft."