From owner-freebsd-ports@FreeBSD.ORG Sun Jul 13 20:52:51 2014 Return-Path: Delivered-To: freebsd-ports@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 8BC4B7B1; Sun, 13 Jul 2014 20:52:51 +0000 (UTC) Received: from csmtp2.one.com (csmtp2.one.com [91.198.169.22]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB5EC2848; Sun, 13 Jul 2014 20:52:50 +0000 (UTC) Received: from diamond.diamondbox.dk (port830.ds1-ry.adsl.cybercity.dk [212.242.182.205]) by csmtp2.one.com (Postfix) with ESMTPA id 67E234000593A; Sun, 13 Jul 2014 20:44:20 +0000 (UTC) Message-ID: <53C2EFA1.7000203@diamondbox.dk> Date: Sun, 13 Jul 2014 22:44:17 +0200 From: Nikolaj Thygesen Organization: diamondbox.dk User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Baptiste Daroussin Subject: Re: Blender/libicu linking issues References: <53C2AE49.2090004@diamondbox.dk> <20140713162545.GN93051@ivaldir.etoilebsd.net> In-Reply-To: <20140713162545.GN93051@ivaldir.etoilebsd.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jul 2014 20:52:51 -0000 On 07/13/2014 18:25, Baptiste Daroussin wrote: > On Sun, Jul 13, 2014 at 06:05:29PM +0200, Nikolaj Thygesen wrote: >> Hi, >> >> When linking Blender 2.71 on fbsd10 I get: >> >> Linking CXX executable ../../bin/blender >> /usr/bin/ld: warning: libicuuc.so.52, needed by >> /usr/local/lib/libboost_regex.so, not found (try using -rpath or >> -rpath-link) >> /usr/bin/ld: warning: libicui18n.so.52, needed by >> /usr/local/lib/libboost_regex.so, not found (try using -rpath or >> -rpath-link) >> /usr/bin/ld: warning: libicudata.so.52, needed by >> /usr/local/lib/libboost_regex.so, not found (try using -rpath or >> -rpath-link) >> /usr/local/lib/libboost_regex.so: undefined reference to `u_tolower_52' >> /usr/local/lib/libboost_regex.so: undefined reference to `u_digit_52' >> /usr/local/lib/libboost_regex.so: undefined reference to `u_isblank_52' >> /usr/local/lib/libboost_regex.so: undefined reference to `u_charType_52' >> /usr/local/lib/libboost_regex.so: undefined reference to `u_isspace_52' >> /usr/local/lib/libboost_regex.so: undefined reference to >> `icu_52::Locale::~Locale()' >> /usr/local/lib/libboost_regex.so: undefined reference to >> `icu_52::Locale::Locale(icu_52::Locale const&)' >> /usr/local/lib/libboost_regex.so: undefined reference to `u_charFromName_52' >> /usr/local/lib/libboost_regex.so: undefined reference to >> `icu_52::Locale::Locale()' >> /usr/local/lib/libboost_regex.so: undefined reference to >> `icu_52::Collator::createInstance(icu_52::Locale const&, UErrorCode&)' >> c++: error: linker command failed with exit code 1 (use -v to see >> invocation) >> --- bin/blender --- >> >> I tried first rebuilding libicu which is currently at "icu-53.1", >> so it makes sense for blender not to find "libicuuc.so.52" I guess. >> Nothing helps. > You should read the UPDATING entry about icu that you have not followed: > libboost_regex.so: undefined reference to `u_tolower_52' > > That means in that case boost needs to be rebuilt first. > > regards, > Bapt Yep, you're right; thanks! N