Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.mixmin.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.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.034 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.00; 'distutils': 0.07; 'incompatible': 0.07; 'subject:skip:s 10': 0.07; 'cc:addr:python- list': 0.11; 'python': 0.11; "%s'": 0.16; '(around': 0.16; 'cc:name:python list': 0.16; 'numpy': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'module': 0.19; 'cc:addr:python.org': 0.22; 'install': 0.23; 'creating': 0.23; 'installation': 0.23; 'versions': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'specifically': 0.29; 'message-id:@mail.gmail.com': 0.30; 'lines': 0.31; "skip:' 10": 0.31; 'you?': 0.31; '(although': 0.31; 'gcc': 0.31; 'python.org': 0.32; 'skip:d 20': 0.34; 'could': 0.34; 'skip:s 30': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'version': 0.36; 'combination': 0.36; 'problems': 0.38; 'skip:- 10': 0.38; 'recent': 0.39; 'does': 0.39; 'either': 0.39; 'myself': 0.63; 'to:addr:gmail.com': 0.65; 'special': 0.74; 'compiling': 0.84; 'mingw': 0.84; 'oscar': 0.84; 'works)': 0.84; 'hand,': 0.93; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=Vv48FyU9UbqjTroWednzs42Uwre0PK2D2Xw7HIQrKUk=; b=PdNc4lJAUCewudikVMy9gcpyosiZ6lriDYGuprxAbSnb97oI8ig8AnQZkwVz1X9eFI GYwuxbNPreRUfyi88uHeKLOMuIT19dFsUU5urGrL5s43qXPyB/8AldQAbUhCOK4nuFxu GN/mfBDGOxktgDBa3Q9zZsMc6qQA5DkcuzzaL9tWAyQrDaTZBdZcvOWtx4WI3FN/3fOm 5Y/q96QYhEgc1h0k4NscHjzzwxp7MO6idON0gj75tr9/p4iXRYp5DgmNvZO373djY5Aq bWYArS0/73pZYKQyLijXbMx9lYomuNjpSodgylHVH0ial+BM+VB3M2juvd+ULpZmJtqK xc/w== X-Received: by 10.220.145.132 with SMTP id d4mr32869379vcv.9.1379432491942; Tue, 17 Sep 2013 08:41:31 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <477a0f61-87d6-4937-8467-743fc053ecec@googlegroups.com> <41a1e4b3-e497-43eb-8095-c2254afa2407@googlegroups.com> From: Oscar Benjamin Date: Tue, 17 Sep 2013 16:41:10 +0100 Subject: Re: statsmodels.api To: Josef Perktold Content-Type: text/plain; charset=ISO-8859-1 Cc: Python List 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: 28 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1379432499 news.xs4all.nl 15951 [2001:888:2000:d::a6]:44736 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:54316 On 17 September 2013 15:52, Josef Perktold wrote: > > On the other hand, python-xy comes with MingW, and I never had any problems > compiling pandas and statsmodels for any version combination of python and > numpy that I tested (although 32 bit only so far, I never set up the > Microsoft sdk). Just out of interest: out of the box Python.org distutils is incompatible with recent versions of MinGW. If Python-xy distributes MinGW (and it works) then they're either creating a special patched MinGW set up or patching distutils. I don't want to install Python-xy myself since it'll clobber my existing Python installation but could you answer the following for me: 1) What gcc version did Python-xy install for you? 2) Does the distutils.cygwincompiler module it installs contain the following lines (around about line 300) specifically with the '-mno-cygwin' option? self.set_executables(compiler='gcc -mno-cygwin -O -Wall', compiler_so='gcc -mno-cygwin -mdll -O -Wall', compiler_cxx='g++ -mno-cygwin -O -Wall', linker_exe='gcc -mno-cygwin', linker_so='%s -mno-cygwin %s %s' Oscar