From owner-freebsd-questions@FreeBSD.ORG Sat Oct 17 06:16:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B19A8106566C for ; Sat, 17 Oct 2009 06:16:13 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id A0C618FC14 for ; Sat, 17 Oct 2009 06:16:13 +0000 (UTC) Received: from eagle.syrec.org (c-24-6-221-126.hsd1.ca.comcast.net [24.6.221.126]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id n9H6GC20037975 for ; Fri, 16 Oct 2009 23:16:13 -0700 (PDT) Message-ID: <4AD9612B.9070903@rawbw.com> Date: Fri, 16 Oct 2009 23:16:11 -0700 From: Yuri User-Agent: Thunderbird 2.0.0.23 (X11/20090824) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Why Linux executable googleearth can't find proper libstdc++.so.6 ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Oct 2009 06:16:14 -0000 I installed port google-earth. When I run 'googleearth' I get such messages: ./googleearth-bin: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by ./libgoogleearth_lib.so) ./googleearth-bin: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by ./libbase.so) Thinking that it picks up FreeBSD libs instead of Linux ones I added LD_LIBRARY_PATH=/compat/linux/usr/lib, and I got the similar messages again: ./googleearth-bin: /compat/linux/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by ./libgoogleearth_lib.so) ./googleearth-bin: /compat/linux/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by ./libbase.so) Why I get these messages about GLIBCXX_3.4.9? Is it a bug in port? Or in package? Or in system? /etc/make.conf has the line, if that matters: OVERRIDE_LINUX_BASE_PORT=fc6 Yuri