> When I try to build with this with python 3.3 in a venv I get the > following > linker error > > running install > /usr/local/lib/python3.3/config-3.3m/libpython3.3m.a(posixmodule.o): In > function `posix_openpty': > /home/wegrata/Downloads/Python-3.3.0rc2/./Modules/posixmodule.c:5932: > undefined reference to `openpty' > /usr/local/lib/python3.3/config-3.3m/libpython3.3m.a(posixmodule.o): In > function `posix_forkpty': > /home/wegrata/Downloads/Python-3.3.0rc2/./Modules/posixmodule.c:5992: > undefined reference to `forkpty' > collect2: ld returned 1 exit status
This is an error in python compilation, not uWSGI forkpty is exported by libutil, baybe you need to extend your python LDFLAGS with -lutil -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
