Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'args': 0.05; 'compiler': 0.07; 'statically': 0.07; 'suggestions,': 0.07; 'python': 0.08; 'folder,': 0.09; 'setup.py': 0.09; 'am,': 0.12; 'library': 0.13; 'dll,': 0.16; 'dll.': 0.16; 'horsen': 0.16; 'mkdir': 0.16; 'pip?': 0.16; 'received:209.85.213.174': 0.16; 'received:mail- yx0-f174.google.com': 0.16; 'sdk': 0.16; 'setup.py.': 0.16; 'cc:addr:python-list': 0.16; "wouldn't": 0.17; 'wed,': 0.17; 'wrote:': 0.18; '>>>': 0.18; 'thanks,': 0.19; 'cc:no real name:2**0': 0.21; 'so.': 0.22; 'header:In-Reply-To:1': 0.22; 'assume': 0.22; 'feb': 0.22; 'unsure': 0.23; 'library.': 0.24; 'specify': 0.24; 'cc:2**0': 0.26; 'asking': 0.28; "i'm": 0.28; 'message-id:@mail.gmail.com': 0.29; 'installed': 0.29; 'cc:addr:python.org': 0.29; 'pm,': 0.29; 'install,': 0.30; 'omitted': 0.30; 'van': 0.30; "i've": 0.32; 'thanks': 0.32; 'does': 0.32; 'tue,': 0.32; 'there': 0.33; '(including': 0.34; 'builds': 0.34; 'dll': 0.34; 'probably': 0.35; 'however,': 0.35; 'install': 0.35; 'convenient': 0.37; 'run': 0.37; 'but': 0.37; 'received:google.com': 0.37; 'subject:with': 0.37; 'received:209.85': 0.38; 'linked': 0.38; 'resulting': 0.38; 'think': 0.38; 'should': 0.38; 'files': 0.39; 'received:209': 0.39; 'your': 0.61; 'below': 0.62; 'below.': 0.64; 'taylor': 0.67 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=uU1lT5G1aHocyeGxnS31xAEp7SGxrEBCRIrIdXCfUyk=; b=Mk+kmYOQKFecjcGFJPpESk/W8gXjq/YmlM8q5IXJOalAo1YWfh12yrt8tcfrI6X5z6 LlNColVrj9UhgetUDUFDw3Q3Q+o2KMBL9A878OJ25i5a1sFUakdg7x5aSAeFV3GnBlGz OT3TgNdg1xN7WexSf75eC4qExeGBrFhCLWobI= MIME-Version: 1.0 In-Reply-To: References: <35da69c3-edcc-4466-8a0d-70237c88af3b@qv4g2000pbc.googlegroups.com> Date: Wed, 8 Feb 2012 04:31:34 -0800 Subject: Re: PyCrypto builds neither with MSVC nor MinGW From: Case Van Horsen To: Alec Taylor Content-Type: text/plain; charset=ISO-8859-1 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: 41 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1328704297 news.xs4all.nl 6911 [2001:888:2000:d::a6]:52794 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:20022 On Wed, Feb 8, 2012 at 4:24 AM, Alec Taylor wrote: > Thanks, but to get it to work with pip, wouldn't I need to add it to > PATH? - Or can I just add those library args to pip? I don't think so. pyCrypto probably builds a single DLL so the MPIR library is statically linked into that DLL. Only the innvocation of setup.py should need to refer to the MPIR library locations. I don't use pip so I'm not sure how to get pip to install the resulting DLL, etc. > > On Wed, Feb 8, 2012 at 9:48 PM, Case Van Horsen wrote: >> On Tue, Feb 7, 2012 at 9:37 PM, Alec Taylor wrote: >>> Thanks all for your replies. >>> >>> I have now installed MSVC8 and YASM. >> I assume you installed Visual Studio. I've omitted the commands to use >> the SDK compiler below. >>> >>> I was able to successfully run configure.bat and make.bat (including >>> make.bat check). >>> >>> However, I'm unsure what to do about install, since there is no >>> install arg. Do I copy it across to my VC\bin folder, or does it need >>> it's own place in PATH + system variables? >> >> The following is just a guess. >> >> I copy the files to a convenient location and then specify that >> location to setup.py. Below is an excerpt from my build process. >> >> mkdir c:\src\lib >> mkdir c:\src\include >> xcopy /Y mpir.h c:\src\include\*.* >> xcopy /Y win\mpir.lib c:\src\lib\*.* >> >> python setup.py build_ext -Ic:\src\include -Lc:\src\lib install >> >>> >>> I am asking because I don't know where it is looking for the MPIR library. >>> >>> Thanks for all suggestions, >>> >>> Alec Taylor