Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.009 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'received:192.168.178': 0.07; '(aka': 0.09; 'seemed': 0.09; 'subject:module': 0.09; '"global"': 0.16; 'exported': 0.16; 'grep': 0.16; 'received:192.168.178.20': 0.16; 'sip': 0.16; 'subject:fails': 0.16; 'symbols': 0.16; 'header:User-Agent:1': 0.23; 'skip:_ 20': 0.27; 'header:In-Reply-To:1': 0.27; 'received:10.0.0': 0.31; 'writes:': 0.31; 'anyone': 0.31; 'another': 0.32; 'checking': 0.33; "can't": 0.35; 'knows': 0.35; 'version': 0.36; 'received:10.0': 0.36; 'received:10': 0.37; 'to:addr:python-list': 0.38; 'issue': 0.38; 'to:addr:python.org': 0.39; 'tag': 0.61; 'received:10.0.0.2': 0.84 X-Virus-Scanned: Debian amavisd-new at mail.univation.de Date: Sat, 12 Apr 2014 08:37:20 +0200 From: Eddy Ilg User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: so module loading fails References: <53469B77.50007@eddy-ilg.net> <87d2gofkuu.fsf@handshake.de> In-Reply-To: <87d2gofkuu.fsf@handshake.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sat, 12 Apr 2014 09:54:36 +0200 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 23 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1397289278 news.xs4all.nl 2903 [2001:888:2000:d::a6]:47670 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:70180 I found out it was an issue with SIP - the version tag seemed to be wrong. Now another symbol is missing: _ZN10QArrayData11shared_nullE I can't find this symbol exported anywhere. Anyone knows where it is defined? Am 11.04.2014 08:20, schrieb dieter: > Eddy Ilg writes: > >> ... >> >> Checking the symbols of Entity.so gives: >> # nm Entity.so | grep PyInit_Entity >> 0000000000001e5c t PyInit_Entity > When I remember right, "t" means a "local" (aka "static") symbol - you need > instead a "global" symbol (identified by "T"). >