Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed3a.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.022 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:Windows': 0.02; 'lawrence': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'locating': 0.16; 'subject:Problem': 0.16; 'wrote:': 0.18; 'skip:1 30': 0.19; 'cc:addr:python.org': 0.22; 'error': 0.23; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message- id:@mail.gmail.com': 0.30; 'file:': 0.31; 'header,': 0.31; 'file': 0.32; 'open': 0.33; 'checking': 0.33; 'guess': 0.33; "i'd": 0.34; 'problem.': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'that,': 0.38; 'though,': 0.39; 'sure': 0.39; 'such': 0.63; 'apart': 0.72; 'env': 0.84; 'start.': 0.84; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=V2aW+du7b/iMLjxEX0OX8U5TWBu0bVLf+LZ7un0gA5g=; b=jVaHPMgRmLXHMEtl0o16A8mrS3Usnj/jDPzyc0QB3bJzw6BKRtxDNdwtnmu3SFogJZ GfzopFp2GIjlKF3o7Onv9LW9bQApOl8FNOP1yr7KwMwZqELb6vnSXHZqkPh3IvyRnMzH muls2e08qiC6k4kSE/cFN9W0hl8sbWxGdH3m7CgFTvU38itRiJdwKusT0EtLn/g0CePd S5kp1vm2uEgo6oAgFmcyNQysAImJLWjXf9bP/bdd0Sc5Qj9BXim3CZ1HpsjmJf4CfpEt BiJBGF644TNqqIMrUzIAnx0rQ4bVNDHbmFwIVUnl2r4SoNXZpA7XBOSRMEO5Ejt85p1h /ANA== MIME-Version: 1.0 X-Received: by 10.52.12.36 with SMTP id v4mr3198908vdb.20.1400346330944; Sat, 17 May 2014 10:05:30 -0700 (PDT) In-Reply-To: References: Date: Sun, 18 May 2014 03:05:30 +1000 Subject: Re: Problem building 3.5 on Windows From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1400346334 news.xs4all.nl 2898 [2001:888:2000:d::a6]:41684 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71701 On Sun, May 18, 2014 at 2:59 AM, Mark Lawrence wrote: > 1>..\PC\make_versioninfo.c(1): fatal error C1083: Cannot open include file: > 'stdio.h': No such file or directory > > What stupid thing have I forgotten, apart from switching to *nix? :) Well, apart from that... I'd guess you have a pathing problem. Since stdio.h is a standard compiler-provided header, I'd advise locating it on disk, then checking if that path is in the INCLUDE env var. Not sure if the Python build process overrides that, though, but it's a start. ChrisA