From owner-freebsd-questions@freebsd.org Sat Apr 23 14:06:43 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 30185B12F52 for ; Sat, 23 Apr 2016 14:06:43 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-oi0-x230.google.com (mail-oi0-x230.google.com [IPv6:2607:f8b0:4003:c06::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 DCEEF16A0 for ; Sat, 23 Apr 2016 14:06:42 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: by mail-oi0-x230.google.com with SMTP id x201so140736107oif.3 for ; Sat, 23 Apr 2016 07:06:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=HvN2lj1sFmzrmrp0TO6mPk3UYpg5wPcJhWMVdhIOec8=; b=0OtGSEDYsWYM5Mk77t82Mm/5QHIXgIXpb88SnsyGXsm5N0DIoEbrGHw9uGZUtH6/Vm oxBhcYlimEIruMr/VodyVzXq7fpoJ1qusrC1ckqD6nTNTL6Vv4df7xCb/sV4ObO2yUtp /KdZ/SRY6GlDWaNUuT0I8aGbd1EAG24Zaz11MuQB1aJEDx6b5UqTpieEB49X869je/NI +Bn0xuhin7Ny8Ep5mJI3lQ0H4tIaiYq6+WjUEHrGOQEEKsx16LKIzETz63j5OcJZf17E MJi0XLWm6cTmmB/2VNPJEA7k5d8v34VXa8/lGOOin43aV9mmwHsEflzJXWPRBzbt3woh H1XA== 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; bh=HvN2lj1sFmzrmrp0TO6mPk3UYpg5wPcJhWMVdhIOec8=; b=RlgzJZ02cCbODVCbdMMaNN4Fekk3TA8xTlUlCRS2+GBjv1z8MKV+CE1V8WXXk8dOBZ gQakSVMcYvL22qn2E31/c2gdNMIsAXQak1j3x7sQtc1pIjCLLhVsOuJ84f7i0S6k1yMl ZlASCXL+j29ATUFLVZwm6Z3RK8epvpMh1Rp7ytQ2oBZgJV+sHm/3viWG50Qks4G3bc8W 6HILSMK/QyJY1vmq+k9BzwqfJ5v3rNVwzEN6IHqgg2X+jVmAxo5fwXhhr4bf666Ekltd ck1LDBSrtegRGijs5cgSt0COXNJ99n3ug99lmXjlcT4NOlGifxvTMWUPbSx6xfG0ZmOT +Jog== X-Gm-Message-State: AOPr4FV48oP5xykeI0vuEA20BLs2rZgIoarZKoxYVhWBJ9/TjCoMQHG9weoW8PMLW5fpDxVd/ZJyetR8a8Ox4w== MIME-Version: 1.0 X-Received: by 10.157.39.193 with SMTP id c59mr11916598otb.111.1461420402348; Sat, 23 Apr 2016 07:06:42 -0700 (PDT) Received: by 10.157.45.194 with HTTP; Sat, 23 Apr 2016 07:06:42 -0700 (PDT) In-Reply-To: References: Date: Sat, 23 Apr 2016 07:06:42 -0700 Message-ID: Subject: Re: About different ABI between gcc and clang From: Mehmet Erol Sanliturk To: Odhiambo Washington 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:06:43 -0000 On Sat, Apr 23, 2016 at 5:04 AM, Odhiambo Washington wrote: > I am looking at this page: > http://wiki.squid-cache.org/BuildFarm/FreeBsdInstall > > There is something that I don't quite understand and would appreciate the > help of the experts, like Matthew:-) > > > due to different ABI between gcc and clang, libcppunit needs to be > installed twice, one with the g++ ABI and one with clang's. The default > compiler for freebsd-9 is gcc; to setup the version for clang, configure it > as CC=clang35 CXX=clang++35 ./configure --prefix=/usr/local/clang-abi > > > Can someone explain that portion to me? What is the writer suggesting I do? > > > > -- > Best regards, > Odhiambo WASHINGTON, > Nairobi,KE > +254 7 3200 0004/+254 7 2274 3223 > "Oh, the cruft." > _______________________________________________ > > > This means clang should be installed in its own directory , not in an upper , common directory because its files to install have conflicts with the files in upper directory of --prefix= , for example , they have the same name but with different structure , i.e. , they are not compliant . Mehmet Erol Sanliturk