From owner-freebsd-questions@FreeBSD.ORG Wed Mar 18 16:59:49 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 863E3C2 for ; Wed, 18 Mar 2015 16:59:49 +0000 (UTC) Received: from mail-wi0-x231.google.com (mail-wi0-x231.google.com [IPv6:2a00:1450:400c:c05::231]) (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 09D578AF for ; Wed, 18 Mar 2015 16:59:49 +0000 (UTC) Received: by wixw10 with SMTP id w10so67165045wix.0 for ; Wed, 18 Mar 2015 09:59:47 -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:content-type; bh=F38w+Wqs/I7V1IyYgKwhDJuUUGxWD6/dFDjToAOuL8c=; b=LhANttDnI7ZyAXys8bKJH+MhKf6LlmzBiWYjpc+Hto9q+T1vQHViu+uS48cm91g2dx Dt5uPx3jgq96IPuW4cvCr8pdaqu+m+ZuLyGHiCOyrO0l5kb1CU9l+BOtXPdUTlVlTRE9 cUyZuDk5/LFqbBAP0p49a1hNdCFxv7iFytDVByfhgWNtcl7I8pCYLpbrrQ9QQMrwuxod 6zFb0rcbsE0QpuQ6mLmnmK7c3YAomK/0H3XjxTWPdkq/ZcUawYZeNwW3l9VPR+vmVVpP Nn4u/umaKIVWsnwNUadX1LHFjXPcOmcdDSfO66485ifxHa1m6RTc/F7mRhmWCQc8DdN2 +C+w== MIME-Version: 1.0 X-Received: by 10.180.198.162 with SMTP id jd2mr8337842wic.21.1426697987494; Wed, 18 Mar 2015 09:59:47 -0700 (PDT) Received: by 10.180.65.100 with HTTP; Wed, 18 Mar 2015 09:59:47 -0700 (PDT) In-Reply-To: <55074389.8040300@bananmonarki.se> References: <55074389.8040300@bananmonarki.se> Date: Wed, 18 Mar 2015 12:59:47 -0400 Message-ID: Subject: Re: What does this error mean. Python and GCC From: bob carr To: Bernt Hansson Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: freeBSD Mailing List X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2015 16:59:49 -0000 Are you building math/py-numpy from Ports? If so, you might resolve the error by modifying the Makefile - adding to the LDFLAGS+=3D entry the string '-Wl,-rpath=3D/usr/local/lib/gcc48'. *Before edit:* LDFLAGS+=3D -shared =E2=80=8B*After edit:* =E2=80=8BLDFLAGS+=3D -shared -Wl,-rpath=3D/usr= /local/lib/gcc48 --- Bob Carr Houghton, Michigan carr.bob@gmail.com On Mon, Mar 16, 2015 at 4:56 PM, Bernt Hansson wrote: > Hello list! > > Trying to get flatcam to run on > FreeBSD 9.3-RELEASE #0 r278921 > > Python-2.7 > > When running; python FlatCAM.py it errors out with this. > > python FlatCAM.py > Traceback (most recent call last): > File "FlatCAM.py", line 3, in > from FlatCAMApp import App > File "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/FlatCAM-8.3/FlatCAM= App.py", > line 18, in > from ObjectCollection import * > File "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/ > FlatCAM-8.3/ObjectCollection.py", line 2, in > from FlatCAMObj import * > File "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/FlatCAM-8.3/FlatCAM= Obj.py", > line 5, in > from camlib import * > File "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/FlatCAM-8.3/camlib.= py", > line 12, in > from numpy import arctan2, Inf, array, sqrt, pi, ceil, sin, cos, dot, > float32, \ > File "/usr/local/lib/python2.7/site-packages/numpy/__init__.py", line > 170, in > from . import add_newdocs > File "/usr/local/lib/python2.7/site-packages/numpy/add_newdocs.py", > line 13, in > from numpy.lib import add_newdoc > File "/usr/local/lib/python2.7/site-packages/numpy/lib/__init__.py", > line 18, in > from .polynomial import * > File "/usr/local/lib/python2.7/site-packages/numpy/lib/polynomial.py", > line 19, in > from numpy.linalg import eigvals, lstsq, inv > File "/usr/local/lib/python2.7/site-packages/numpy/linalg/__init__.py", > line 51, in > from .linalg import * > File "/usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.py", > line 29, in > from numpy.linalg import lapack_lite, _umath_linalg > ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by > /usr/local/lib/gcc48/libgfortran.so.3 not found > > What does it mean, is it meaningful for any of you? > > Flatcam is here http://www.flatcam.org/ > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions- > unsubscribe@freebsd.org" >