This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jnoller
Recipients jnoller
Date 2008-06-12.13:16:17
SpamBayes Score 0.0061240387
Marked as misclassified No
Message-id <1213276584.77.0.784242980637.issue3090@psf.upfronthosting.co.za>
In-reply-to
Content
This is on osx 10.5.3, latest gcc tool chain.

I have $ARCHFLAGS set to "-arch i386" to prevent the OS/X gcc from 
building PPC code (as I don't want/need it) - if I leave this set as-is, 
other applications build without error, intel only.

If I don't unset it, here's the error:

  File "/Users/jesse/open_source/subversion/python-
trunk/Lib/distutils/ccompiler.py", line 697, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
  File "/Users/jesse/open_source/subversion/python-
trunk/Lib/distutils/unixccompiler.py", line 176, in _compile
compiler_so = _darwin_compiler_fixup(compiler_so, cc_args + 
extra_postargs)
  File "/Users/jesse/open_source/subversion/python-
trunk/Lib/distutils/unixccompiler.py", line 79, in 
_darwin_compiler_fixup
compiler_so = compiler_so + ' ' + os.environ['ARCHFLAGS']
TypeError: can only concatenate list (not "str") to list
make: *** [sharedmods] Error 1

I've attached a possible patch for this which does a .split() on the os.environ['ARCHFLAGS'] variable, which fixes the issue
History
Date User Action Args
2008-06-12 13:16:41jnollersetspambayes_score: 0.00612404 -> 0.0061240387
recipients: + jnoller
2008-06-12 13:16:24jnollersetspambayes_score: 0.00612404 -> 0.00612404
messageid: <1213276584.77.0.784242980637.issue3090@psf.upfronthosting.co.za>
2008-06-12 13:16:21jnollerlinkissue3090 messages
2008-06-12 13:16:18jnollercreate