Compilation stopped and complained about not finding gc.h. Trying to find a quick solution, I hardcoded /usr/include/gc to genc.py at line 108. With that I get an healthy looking >>>>. I don't think it should be like that. I also get this warning, incase you have missed it: """ In file included from /usr/include/python2.4/Python.h:8, from /home/drayko/Workfolder/Security/Python/cvs/pypy-dist/pypy/translator/c/src/g_prerequisite.h:12, from testing_1.c:4: /usr/include/python2.4/pyconfig.h:832:1: warning: "_POSIX_C_SOURCE" redefined In file included from /usr/include/gc/gc.h:472, from testing_1.c:2: /usr/include/features.h:190:1: warning: this is the location of the previous definition """
Hi, First of all, thanks to you and Amaury and in general to people reporting translation problems, it's much appreciated. We are fixing them along the way -- or else, will try to explain why the problem is still there. On Sun, Oct 02, 2005 at 12:57:58AM +0300, Elmo M?ntynen wrote:
I also get this warning, incase you have missed it: /usr/include/python2.4/pyconfig.h:832:1: warning: "_POSIX_C_SOURCE" redefined
Should be gone by now :-)
Compilation stopped and complained about not finding gc.h. Trying to find a quick solution, I hardcoded /usr/include/gc to genc.py at line 108. With that I get an healthy looking >>>>. I don't think it should be like that.
On my machine there is a /usr/include/gc.h. But there is also an identical /usr/include/gc/gc.h. Go figure. Maybe a more portable way to include it in a program on Linux is via #include <gc/gc.h> ? A bientot, Armin.
Elmo Mäntynen wrote:
Compilation stopped and complained about not finding gc.h. Trying to find a quick solution, I hardcoded /usr/include/gc to genc.py at line
We currently hardcoded the defaults of the Debian platform. I agree that there should be auto configure features which adjust things for you, but PyPy is far from that. It would btw. be helpful if you would tell us about your environment. -- Christian Tismer :^) <mailto:tismer@stackless.com> tismerysoft GmbH : Have a break! Take a ride on Python's Johannes-Niemeyer-Weg 9A : *Starship* http://starship.python.net/ 14109 Berlin : PGP key -> http://wwwkeys.pgp.net/ work +49 30 802 86 56 mobile +49 173 24 18 776 fax +49 30 80 90 57 05 PGP 0x57F3BF04 9064 F4E1 D754 C2FF 1619 305B C09C 5A3B 57F3 BF04 whom do you want to sponsor today? http://www.stackless.com/
participants (3)
-
Armin Rigo
-
Christian Tismer
-
Elmo Mäntynen