[Python-Dev] r87577 - in python/branches/py3k: Makefile.pre.in configure configure.in pyconfig.h.in (original) (raw)
Georg Brandl g.brandl at gmx.net
Sun Jan 2 19:13:48 CET 2011
- Previous message: [Python-Dev] Possible optimization for LOAD_FAST ?
- Next message: [Python-Dev] Possible optimization for LOAD_FAST ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Am 30.12.2010 15:55, schrieb martin.v.loewis:
Author: martin.v.loewis Date: Thu Dec 30 15:55:47 2010 New Revision: 87577
Log: Build and install libpython3.so.
Modified: python/branches/py3k/configure.in ============================================================================== --- python/branches/py3k/configure.in (original) +++ python/branches/py3k/configure.in Thu Dec 30 15:55:47 2010
@@ -737,6 +738,10 @@ BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)' RUNSHARED=LDLIBRARYPATH=
pwd
:${LDLIBRARYPATH} INSTSONAME="$LDLIBRARY".$SOVERSION + if test $withpydebug == no + then + PY3LIBRARY=libpython3.so + fi ;; Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*) LDLIBRARY='libpython$(LDVERSION).so' @@ -748,6 +753,11 @@ ;; esac INSTSONAME="$LDLIBRARY".$SOVERSION + PY3LIBRARY=libpython3.so + if test $withpydebug == no + then + PY3LIBRARY=libpython3.so + fi ;; hp*|HP*) caseuname -m
in
These changes do not work as written: if --with-pydebug is not given, $with_pydebug is empty, not "no". Also, in the second case the unconditional PY3LIBRARY assignment should probably be deleted.
cheers, Georg
- Previous message: [Python-Dev] Possible optimization for LOAD_FAST ?
- Next message: [Python-Dev] Possible optimization for LOAD_FAST ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]