From owner-freebsd-office@freebsd.org Sat Nov 11 15:05:37 2017 Return-Path: Delivered-To: freebsd-office@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 3AC6EE6CEBD for ; Sat, 11 Nov 2017 15:05:37 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 27CDC63637 for ; Sat, 11 Nov 2017 15:05:37 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2482AE6CEBC; Sat, 11 Nov 2017 15:05:37 +0000 (UTC) Delivered-To: office@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 2428EE6CEBB for ; Sat, 11 Nov 2017 15:05:37 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 06AD463636; Sat, 11 Nov 2017 15:05:37 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 61EA6CAEE; Sat, 11 Nov 2017 15:05:36 +0000 (UTC) From: Jan Beich To: Jason Bacon Cc: office@FreeBSD.org, luis.camp0.2009@gmail.com Subject: Re: Link issue References: <06535286-a5c8-3809-8679-920b4a837dfd@gmail.com> Date: Sat, 11 Nov 2017 16:05:10 +0100 In-Reply-To: (Jason Bacon's message of "Sat, 11 Nov 2017 08:57:04 -0600") Message-ID: <8tfc-j1p5-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Nov 2017 15:05:37 -0000 Jason Bacon writes: > On 11/11/17 08:24, Jan Beich wrote: > >> Jason Bacon writes: >> >>> BoltParams.o: In function >>> `LMM::BoltParams::processCommandLineArgs(int, char**)': >>> BoltParams.cpp:(.text+0x1a01): undefined reference to >>> `boost::program_options::options_description::options_description(std::= __cxx11::basic_string>> std::char_traits, std::allocator > const&, unsigned int, >>> unsigned int)' >> Try replacing USE_GCC=3Dyes with USES=3Dcompiler:gcc-c++11-lib to make t= he >> port use GCC/libc++ rather than GCC/libstdc++. > > Hmm, I had tried that before to no avail.=C2=A0 I think maybe I forgot to > comment out compiler:openmp and hence gcc-c++11-lib was silently > ignored. Due to https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D199603 sometimes one has to be careful about order of USES arguments. > > At any rate, it's working now. > > Thanks!