Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!selfless.tophat.at!newsfeed.xs4all.nl!newsfeed6.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 X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; '3.2': 0.05; 'flags': 0.05; 'subject:Python': 0.06; 'statically': 0.07; 'python': 0.08; 'subject:library': 0.09; 'files.': 0.10; 'pm,': 0.10; 'configure': 0.11; 'wrote:': 0.14; '"d"': 0.16; '"u"': 0.16; 'abi)': 0.16; 'angelico': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'weird.': 0.16; '(i.e.': 0.17; 'mon,': 0.17; 'errors,': 0.19; 'header:In-Reply-To:1': 0.21; 'deployment': 0.23; 'differ': 0.23; 'received:209.85.210.174': 0.23; 'received:mail- iy0-f174.google.com': 0.23; 'works.': 0.23; 'versions': 0.23; 'object': 0.26; "i'm": 0.27; 'message-id:@mail.gmail.com': 0.28; 'seem': 0.32; 'shared': 0.32; 'does': 0.33; 'to:addr:python-list': 0.33; 'chris': 0.34; 'thank': 0.35; 'executable': 0.35; 'options': 0.36; 'received:google.com': 0.37; 'received:209.85': 0.37; 'planning': 0.38; 'but': 0.38; 'though': 0.38; 'subject:: ': 0.38; 'received:209': 0.39; 'finding': 0.39; 'either': 0.39; 'to:addr:python.org': 0.39; 'feature': 0.40; 'header': 0.40; 'link': 0.64; 'subject:Building': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=3ejriPWZeK3GzA6AINLeZVQtK1yG1OnS2EBVKiN3XoA=; b=HGwQXqWGv1tE7tZ2qSop1dWSZmjVyj0T1B5zhv/NEo5SIPHVV0IgRt1dTWp391J8rJ J1U5FgxZs9k/6ObFwsIdaXGEnQ+psMidpN82nfDexsFht166EUOXwxsevsznkTWZyd/v QlLGffnTE2QXfjJJbpbHf73q5FemXu+cKB6Mc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=DIZpXTyFdyXhwMSZJdmZh3t6rYayjMvwqEQ24SEQ6y0sLTGl+mQYhSyik9QsfTGtwR HeDUt3o+9hQjhNs1J6Ls8HzLY75R9797HkWRGVYyd4Xy5Oe2zANsxFStqWscFLk5zf+I 91R5nO+7uYAA4zhpgc5+XXYnuE2lqT3wQrZu8= MIME-Version: 1.0 In-Reply-To: References: Date: Mon, 23 May 2011 14:08:53 +1000 Subject: Re: Building Python: static library "3.2m" From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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: 14 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1306123737 news.xs4all.nl 49041 [::ffff:82.94.164.166]:54118 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:6036 On Mon, May 23, 2011 at 2:01 PM, Ned Deily wrote: > It's a new feature in Python 3.2 to allow multiple versions of shared C > object files that differ in configure options (i.e. ones that affect the > Python C ABI) to co-exist in one Python installation. =A0"m" means that > they were built with pymalloc. =A0Other flags are "d" for debug, and "u" > for wide-unicode. Ahh, thank you! I was planning to just statically link to my executable to reduce deployment effort, but either way works. Currently I'm puzzling over an inordinate number of symbol-not-found errors, even though it does seem to be finding the header files. It's weird. Chris Angelico