Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'extensions': 0.04; '(although': 0.05; 'library,': 0.05; 'compiler': 0.07; 'created,': 0.09; 'either.': 0.09; 'says,': 0.09; 'subject:missing': 0.09; 'linux': 0.11; 'skip:[ 20': 0.12; 'extension': 0.14; 'subject:python': 0.15; 'received:80.67': 0.16; 'received:80.67.31': 0.16; 'received:ispgateway.de': 0.16; "wouldn't": 0.18; 'modules': 0.20; 'cc:no real name:2**0': 0.20; 'cc:2**0': 0.20; 'seems': 0.21; 'header:In-Reply-To:1': 0.22; 'cc:addr:python-list': 0.22; 'tools,': 0.22; 'searches': 0.23; "didn't": 0.25; 'windows': 0.26; 'there.': 0.26; 'tried': 0.27; 'google': 0.27; 'problem': 0.29; 'installing': 0.29; 'probably': 0.30; 'all.': 0.30; 'cc:addr:python.org': 0.31; 'compiling': 0.31; 'far,': 0.31; 'cross': 0.33; 'martin': 0.33; "isn't": 0.34; 'actually': 0.34; 'header:User-Agent:1': 0.35; 'box.': 0.35; 'case,': 0.36; 'platform': 0.36; 'either': 0.37; 'but': 0.38; 'received:de': 0.39; 'subject: (': 0.39; 'subject': 0.61; 'studio': 0.72; 'subject:looking': 0.77; '"just': 0.84; 'nathan': 0.84; 'schrieb': 0.84 Date: Wed, 13 Apr 2011 21:38:27 +0200 From: "Martin v. Loewis" User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.16) Gecko/20110303 Icedove/3.0.11 MIME-Version: 1.0 To: Nathan Coulson Subject: Re: looking for libpython31.a 64bit (missing from python-3.1.3.amd64.msi) References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Df-Sender: martin@v.loewis.de Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 27 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1302723516 news.xs4all.nl 81483 [::ffff:82.94.164.166]:38455 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:3136 Am 13.04.2011 10:17, schrieb Nathan Coulson: > Well, as the subject says, I am looking to find libpython31.a > [win64bit version] for use in a linux to windows 64bit cross compiler > [x86_64-w64-mingw32-gcc], but seems to be missing. I wouldn't call it "missing", but "just not there". I had no intention/procedure to create it, so it isn't being created, and hence not packaged, either. > so far, tried installing it on a real 64bit windows system, > cabextract, as well as msiexec /a python-3.1.3.amd64.msi /qb > TARGETDIR=out. Either case, libs/libpython31.a is not there. > > as a last resort, tried cross compiling it with my tools, but a few > google searches tell me that way will lead to headaches, and currently > not supported out of the box. The problem is deeper than that. Even if you had the library, you probably still couldn't do what you want to do (although you didn't actually say what it is that you want to do): building extensions with mingw64 currently isn't supported at all. So if you want to build extension modules for Win64, use Visual Studio (and/or the platform SDK). Regards, Martin