Path: csiph.com!news.swapon.de!newsreader4.netcologne.de!news.netcologne.de!bcyclone05.am1.xlned.com!bcyclone05.am1.xlned.com!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!nzpost1.xs4all.net!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; 'distutils': 0.05; 'bits': 0.07; 'statically': 0.07; 'subject:build': 0.07; 'cc:addr:python- list': 0.09; 'python': 0.10; '2.7': 0.13; 'extensions': 0.13; 'subject:python': 0.14; 'set,': 0.16; 'subject:windows': 0.16; 'wrote:': 0.16; 'sender:addr:gmail.com': 0.18; 'versions': 0.20; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'work,': 0.21; 'libraries': 0.22; 'sep': 0.22; 'am,': 0.23; 'bit': 0.23; 'seems': 0.23; 'header:In-Reply-To:1': 0.24; 'separate': 0.27; 'message-id:@mail.gmail.com': 0.27; "i'm": 0.30; 'code': 0.30; '15,': 0.30; "i'd": 0.31; 'anyone': 0.32; 'options': 0.33; 'surprised': 0.33; 'tue,': 0.34; 'received:google.com': 0.35; 'ahead': 0.35; 'but': 0.36; 'subject:: ': 0.37; 'say': 0.37; 'seem': 0.37; 'test': 0.39; 'does': 0.39; 'build': 0.40; 'becker': 0.84; 'succeeds': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=RmfOWEFkLATcEv7SLna8gJB5IfI0cYZSaoxYTBAo4rQ=; b=iRooejj5+Xt+OVo8Rm4NttGcGO1WGhvTC9xvHOj+xac+ur71EsiY/8VnV76etI6DA6 +Y7N7oLWHZ+R2/xspWsFvCTVz2v2hRlWUFEv72ChC7RNAcMKlCCHmF7oSJHLrATBBlE7 JjbGGHv+TTV+L+SIKkrmHs8Wsf6d/2n0hFOi2JMG4PrgtTr6VcKCaV9NAKaL8TYe8Vq/ wb2ERk6qjx6WupRu3Oc0/0pbwlROB90qqFELea+h3E0pkIg/Fjk7kSEamDVXKvNK+1eZ 2tuS/T6K1XUez5iHS5sDAhr34WfRWfsSZrXyNy0yctew0fnHewKxfzcCwrEp2wxqCdmd F+Rg== X-Received: by 10.50.47.81 with SMTP id b17mr7053635ign.39.1442332472935; Tue, 15 Sep 2015 08:54:32 -0700 (PDT) MIME-Version: 1.0 Sender: zachary.ware@gmail.com In-Reply-To: <55F81DE0.5050100@chamonix.reportlab.co.uk> References: <55F6ED53.9080103@chamonix.reportlab.co.uk> <55F80353.9080609@chamonix.reportlab.co.uk> <55F81DE0.5050100@chamonix.reportlab.co.uk> From: Zachary Ware Date: Tue, 15 Sep 2015 10:54:13 -0500 X-Google-Sender-Auth: owENXFCGHAc3jaXttlj3B8BfSf0 Subject: Re: how to build windows extensions for python 3.5 To: Robin Becker Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1442332481 news.xs4all.nl 23834 [2001:888:2000:d::a6]:52627 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 4195 X-Received-Body-CRC: 103878443 Xref: csiph.com comp.lang.python:96639 On Tue, Sep 15, 2015 at 8:32 AM, Robin Becker wrote: > However, I try to link bits of various libraries statically into the > reportlab extensions eg freetype.lib. Does anyone know if I will need > separate versions of those for VS2015? Currently I build with distutils for > Python 27, 33 & 34. Currently the .libs seem OK with both 2.7 & >=3.3 > builds, but I notice from the reference that all the code for VS2015 needs > to be built with specific options set, so will I need separate versions of > the relocatable libs? I'm a bit surprised that you can successfully use the same .libs for 2.7 and 3.3/3.4. But since that seems to work, I'd say go ahead and try it with 3.5, and if the build succeeds test the crap out of it :) -- Zach