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 Marc.Abramowitz
Recipients Garen, Marc.Abramowitz, belopolsky, benjamin.peterson, danchr, dhduvall, dmalcolm, eric.snow, fche, glyph, hazmat, jbaker, jcea, jmcp, laca, larry, lasizoillo, loewis, mjw, movement, neologix, pitrou, rhettinger, robert.kern, ronaldoussoren, scox, serverhorror, sirg3, twleung, wsanchez
Date 2012-06-07.20:24:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339100646.08.0.847622181305.issue13405@psf.upfronthosting.co.za>
In-reply-to
Content
Hi jcea,

Sorry, I've been away from this for a while.

I'm getting undefined symbols now while trying to link:

```

(12:47pm) [last: 0] marca@scml-marca:~/src$ hg clone http://hg.python.org/cpython...
(12:55pm) [last: 0] marca@scml-marca:~/src$ cd cpython
[last: 0] marca@scml-marca:~/src/cpython$ hg tip
changeset:   77378:da5b370f41a1
branch:      2.7
tag:         tip
user:        Richard Oudkerk <shibturn@gmail.com>
date:        Wed Jun 06 19:01:14 2012 +0100
summary:     Issue #13854: Properly handle non-integer, non-string arg to SystemExit

[last: 0] marca@scml-marca:~/src/cpython$ curl -s http://bugs.python.org/file25203/4a072278b866.diff | patch -p1
patching file .hgignore
Hunk #1 succeeded at 81 (offset 8 lines).
patching file Doc/library/debug.rst
patching file Doc/library/dtrace.rst
patching file Include/code.h
patching file Include/pydtrace.d
patching file Include/pydtrace.h
patching file Include/pydtrace_offsets.c
patching file Include/pydtrace_offsets.sh
patching file Lib/test/dtrace_sample.py
patching file Lib/test/test_dtrace.py
patching file Makefile.pre.in
Hunk #2 succeeded at 462 (offset 1 line).
Hunk #3 succeeded at 491 (offset 1 line).
Hunk #4 succeeded at 502 (offset 1 line).
Hunk #5 succeeded at 607 (offset 17 lines).
Hunk #6 succeeded at 733 (offset 19 lines).
Hunk #7 succeeded at 1429 (offset 45 lines).
Hunk #8 succeeded at 1461 (offset 45 lines).
patching file Modules/dtracemodule.c
patching file Modules/gcmodule.c
Hunk #2 FAILED at 791.
Hunk #3 succeeded at 1059 with fuzz 1 (offset 112 lines).
1 out of 3 hunks FAILED -- saving rejects to file Modules/gcmodule.c.rej
patching file Objects/codeobject.c
patching file Objects/frameobject.c
Hunk #1 succeeded at 714 (offset 2 lines).
patching file Objects/typeobject.c
patching file Python/ceval.c
Hunk #9 succeeded at 3149 (offset 7 lines).
Hunk #10 succeeded at 3842 (offset 12 lines).
Hunk #11 succeeded at 3911 (offset 12 lines).
patching file configure
patching file configure.ac
patching file pyconfig.h.in
patching file setup.py
Hunk #1 succeeded at 575 (offset 4 lines).


[last: 0] marca@scml-marca:~/src/cpython$ ./configure --enable-framework && make
...
gcc -o Python.framework/Versions/3.3/Python   -dynamiclib \
          -all_load libpython3.3m.a -Wl,-single_module \
          -install_name /Library/Frameworks/Python.framework/Versions/3.3/Python \
          -compatibility_version 3.3 \
          -current_version 3.3 \
          -framework CoreFoundation -ldl  -framework CoreFoundation;
Undefined symbols:
  "_PYTHON_LINE_ENABLED", referenced from:
      _PyEval_EvalFrameEx in libpython3.3m.a(ceval.o)
      _PyEval_EvalFrameEx in libpython3.3m.a(ceval.o)
      _PyEval_EvalFrameEx in libpython3.3m.a(ceval.o)
      _PyEval_EvalFrameEx in libpython3.3m.a(ceval.o)
      _PyEval_EvalFrameEx in libpython3.3m.a(ceval.o)
```
History
Date User Action Args
2012-06-07 20:24:06Marc.Abramowitzsetrecipients: + Marc.Abramowitz, loewis, rhettinger, jcea, ronaldoussoren, belopolsky, pitrou, wsanchez, movement, larry, benjamin.peterson, serverhorror, glyph, laca, twleung, jbaker, robert.kern, sirg3, danchr, dhduvall, dmalcolm, mjw, Garen, neologix, lasizoillo, fche, hazmat, eric.snow, jmcp, scox
2012-06-07 20:24:06Marc.Abramowitzsetmessageid: <1339100646.08.0.847622181305.issue13405@psf.upfronthosting.co.za>
2012-06-07 20:24:05Marc.Abramowitzlinkissue13405 messages
2012-06-07 20:24:04Marc.Abramowitzcreate