Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!news.mixmin.net!feeder.erje.net!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 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=python.org; s=200901; t=1350950975; bh=OQJdhTZnbQlDZxiZp4V9ua+I1Cb1NCZGtcO+1r3jrfg=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=pq5xj/iF0wSr0GJkn9Wih98WmPpJSjyeCTtgXoaAeCEO+exADTmpxSsqnhh2UK509 NwNJplBL02j8BkK10iLfO0Cu3F30HwE/xM6nz2L4nnUIGaRnG/UkHuOmYqf9dkP7sJ fwx2puDDIrbB+ISHnllOfL7c1QONVK+ATAcD6l6o= Date: Tue, 23 Oct 2012 02:09:34 +0200 From: Christian Heimes User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121011 Thunderbird/16.0.1 MIME-Version: 1.0 To: Joe Davis Subject: Re: Compiler Error for build Python -3.3.0 (Suggestions) References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: python-list@python.org 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: 27 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1350950977 news.xs4all.nl 6894 [2001:888:2000:d::a6]:41709 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:31910 Am 22.10.2012 23:31, schrieb Joe Davis: > The version of Python I have on my old Solaris boxes is old and > isn't supported and dosn't have all the modules that I need. I have > downloaded the new 3.3 version and have been trying to compile it and > have no luck: > > After running the ./configure command I run "make" and it gives me the > following error. Does anyone know what is wrong here or what to do > about this? > > Is there a location I can download a binary package of this? > Sunfreeware looks to be out of business. Hello Joe, Can you tell us more about the Solaris box? I'm especially interested in the Solaris version, architecture (sparc or X86_64) and your C compiler. We have Python up and running on a Solaris 10 box (sparc) and a Solaris 11 box (X86_64) with Sun CC and GCC 4.6. You could try to recompile Python with the Sun CC: $ make distclean $ ./configure --without-gcc --config-cache $ make Christian