[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-25 Thread Ned Deily
Ned Deily added the comment: No backport is needed. The problem was introduced during the 3.2 development cycle by the ABI Version Tagged .so Files feature (PEP 3149). -- ___ Python tracker __

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-25 Thread Georg Brandl
Georg Brandl added the comment: Does this need to be backported? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-19 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-19 Thread Georg Brandl
Georg Brandl added the comment: Committed as r88439 in py3k. -- priority: release blocker -> critical ___ Python tracker ___ ___ Pyth

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Looks good to me. I guess it needs Georg's approval, though. -- nosy: +pitrou ___ Python tracker ___ __

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-17 Thread Ned Deily
Ned Deily added the comment: Here's a minimal patch (a subset of Victor's original) that fixes the release blocker issue. It has been tested in both a shared library build (which now works) and a framework build (which is not affected as expected). I recommend that it be applied before 3.2f

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-17 Thread John Szakmeister
John Szakmeister added the comment: This one is my fault. I have a .pydistutils.cfg that was causing them to be installed somewhere else or not at all. :-( Moving my custom config out of the way, I'm good. I'm not sure what's happening there, but that's a different problem. :-) --

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-17 Thread John Szakmeister
John Szakmeister added the comment: Attached the output. -- Added file: http://bugs.python.org/file20775/make-install-output.txt ___ Python tracker ___ _

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: 'make install' works for me as well (OSX 10.6, configure --prefix=/tmp/python32). Could you attach the output of "make install", with some luck there will be a clear indication of why the install doesn't work on your machine. -- ___

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-17 Thread John Szakmeister
John Szakmeister added the comment: I'm installing into an area that I own ($HOME/.local/python3), so no need for sudo. I just ran make install. -- ___ Python tracker ___

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-17 Thread Ned Deily
Ned Deily added the comment: You did run "sudo make install"? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread John Szakmeister
John Szakmeister added the comment: Looks like the time module is being built: ./build/lib.macosx-10.4-x86_64-3.2/time.so But none of the shared modules are being installed, as lib/python3.2/lib-dynload is completely empty. -- ___ Python tracke

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread Ned Deily
Ned Deily added the comment: "import time" works for me with the patched build. There should have been a warning message during the build if the time module failed to build. Perhaps you have a file permissions problem? Check your lib/python3.2/lib-dynload/ for file time.so BTW, Victor's

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread John Szakmeister
John Szakmeister added the comment: The patch definitely helps. However, once I get it installed, there seems to be no time module: >>> import time Traceback (most recent call last): File "", line 1, in ImportError: No module named time So I think there's probably still somethi

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread Georg Brandl
Changes by Georg Brandl : -- priority: normal -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread Steffen Daode Nurpmeso
Steffen Daode Nurpmeso added the comment: Aeh, your patch does it. You may be interested of all Mac OS X compilation notes?? /usr/bin/ranlib: file: libpython3.2m.a(dynamic_annotations.o) has no symbols /usr/bin/ranlib: file: libpython3.2m.a(pymath.o) has no symbols ranlib libpython3.2m.a ranlib

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread STINNER Victor
STINNER Victor added the comment: Ah ok, the issue comes from configure.in near line 779: Darwin*) LDLIBRARY='libpython$(LDVERSION).dylib' BLDLIBRARY='-L. -lpython$(LDVERSION)' RUNSHARED='DYLD_LIBRARY_PATH=`pwd`:${DYLD_LIBRARY_PATH}' ;; The problem is that c

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread John Szakmeister
John Szakmeister added the comment: MACOSX_DEPLOYMENT_TARGET=10.5 made no bit of difference for me. Steffen, I take it that it didn't help you either? You said "did well", but the rest of your text indicates otherwise. :-) -- ___ Python tracker

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread John Szakmeister
John Szakmeister added the comment: Interesting. I don't see a Mac/Makefile. Perhaps it's only pulled in with the framework build? -- ___ Python tracker ___ _

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread John Szakmeister
John Szakmeister added the comment: Here is the top-level Makefile. -- Added file: http://bugs.python.org/file20768/Makefile ___ Python tracker ___ _

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread Steffen Daode Nurpmeso
Steffen Daode Nurpmeso added the comment: Ooops. In fact 3.2 did well with that undocumented thing either. -- ___ Python tracker ___ ___

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread STINNER Victor
STINNER Victor added the comment: @Georg: Is this issue a release blocker? -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread STINNER Victor
STINNER Victor added the comment: Ah, there is also Mac/Makefile.in: attach also Mac/Makefile. (and there is also Mac/PythonLauncher/Makefile.in, but I don't think that the issue comes from this file) ((can it be related to python*-config program?)) -- __

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread STINNER Victor
STINNER Victor added the comment: Can you please attach your Makefile file? In Makefile.pre.in, I see: libpython$(VERSION).dylib: $(LIBRARY_OBJS) VERSION should be 3.2, only LDVERSION is the VERSION + the ABI flags (eg. 3.2dm). And I don't see any usage of libpython$(LDVERSION).dylib in Mak

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread Steffen Daode Nurpmeso
Steffen Daode Nurpmeso added the comment: I have not tried 3.2 yet, but Issue 11046 may be of interest for you! Try the undocumented: configure ...[other args]... MACOSX_DEPLOYMENT_TARGET=10.5 in the meanwhile - it may help you out. -- nosy: +ronaldoussoren, sdaoden _

[issue11222] Python3.2rc3 fails to build on Mac OS X with a non-framework build

2011-02-16 Thread John Szakmeister
New submission from John Szakmeister : I configured the build: ./configure --with-system-ffi --enable-shared --with-computed-gotos --prefix=$HOME/.local/python3 Ran make with 4 jobs (make -j4), and got: make: *** No rule to make target `libpython3.2m.dylib', needed by `python.exe'. S