From owner-freebsd-stable@FreeBSD.ORG Tue Jun 17 07:58:27 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17822D7E; Tue, 17 Jun 2014 07:58:27 +0000 (UTC) Received: from mail.webmatic.de (mail.webmatic.de [212.78.101.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.webmatic.de", Issuer "PositiveSSL CA 2" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C9EA42039; Tue, 17 Jun 2014 07:58:26 +0000 (UTC) Received: from mail.webmatic.de (localhost [127.0.0.1]) by mail.webmatic.de (Postfix) with ESMTP id 873D68A073; Tue, 17 Jun 2014 09:58:23 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 17 Jun 2014 09:58:23 +0200 From: Thomas Krause To: Dimitry Andric Subject: Re: FreeBSD10 - libstdc++.so.7 - arcconf In-Reply-To: <2952712B-E335-429E-9800-EDB241BDBD2E@FreeBSD.org> References: <539F5C97.6090000@chef-ingenieur.de> <5A1E4599-3634-48A4-BC2F-D8AE5F02DE78@FreeBSD.org> <2952712B-E335-429E-9800-EDB241BDBD2E@FreeBSD.org> Message-ID: <6c6b3ca5bd8a7a1d53124b21d0e1f01f@chef-ingenieur.de> X-Sender: freebsd-stable@chef-ingenieur.de User-Agent: Roundcube Webmail/1.0.0 Cc: owner-freebsd-stable@freebsd.org, freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jun 2014 07:58:27 -0000 Am 17.06.2014 00:06, schrieb Dimitry Andric: > On 16 Jun 2014, at 23:56, Dimitry Andric wrote: >> On 16 Jun 2014, at 23:07, Thomas Krause >> wrote: >>> >>> I'm using Adaptec controllers for my servers. >>> The arcconf utility is not working under FreeBSD10 (because of >>> clang): >>> Shared object "libstdc++.so.7" not found, required by "arcconf" > ... >>> Is there an easy way to get it working? >>> I don't want to install gcc (about 470MB disk space) only for this >>> tool. >> >> make -C /usr/src/gnu/lib/libstdc++ -D WITH_GNUCXX obj all install >> make -C /usr/src/gnu/lib/libsupc++ -D WITH_GNUCXX obj all install > > Hmm, sorry, that won't actually work, since libstdc++ will not be able > to find its own includes. Instead, first do: > > make -C /usr/src/gnu/lib/libstdc++ -D WITH_GNUCXX obj depend includes > > This will install the headers to /usr/include/c++/4.2; then do: > > make -C /usr/src/gnu/lib/libstdc++ -D WITH_GNUCXX all install > make -C /usr/src/gnu/lib/libsupc++ -D WITH_GNUCXX obj depend all > install > > -Dimitry sorry, also doesn't work: http://pastebin.com/ZEFWs6GA Regards, Thomas.