[issue11334] Failed to build _multiprocessing on Mac OS X

2011-02-26 Thread dave
New submission from dave de...@gmx.de: hi community, i cannot import multiprocessing since it fails(?) during build. could someone point out a solution for me? thanks a lot in advance. dave $ python Python 2.7.1 (r271:86832, Feb 26 2011, 17:19:29) [GCC 4.2.1 (Apple Inc. build 5664)] on

[issue11334] Failed to build _multiprocessing on Mac OS X

2011-02-26 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: ronaldoussoren - nosy: +asksol, jnoller ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11334 ___

[issue11334] Failed to build _multiprocessing on Mac OS X

2011-02-26 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +ned.deily ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11334 ___ ___ Python-bugs-list mailing

[issue11334] Failed to build _multiprocessing on Mac OS X

2011-02-26 Thread dave
dave de...@gmx.de added the comment: seems the multiprocessing issue was produced by the dynamic_lookup parameter in the LDFLAGS... after removing this, import multiprocessing works... thanks export LDFLAGS=-Wall -undefined dynamic_lookup -arch i386 -- resolution: - works for me