Advertisement
cooperlees

Untitled

Nov 27th, 2019
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.29 KB | None | 0 0
  1. gcc -pthread -Wl,-z,relro  -Wl,-z,relro    -Xlinker -export-dynamic -o python Programs/python.o libpython3.8.a -lcrypt -lpthread -ldl  -lutil -lm   -lm
  2. gcc -pthread -Wl,-z,relro  -Wl,-z,relro    -Xlinker -export-dynamic -o Programs/_testembed Programs/_testembed.o libpython3.8.a -lcrypt -lpthread -ldl  -lutil -lm   -lm
  3. ./python -E -S -m sysconfig --generate-posix-vars ;\
  4. if test $? -ne 0 ; then \
  5.         echo "generate-posix-vars failed" ; \
  6.         rm -f ./pybuilddir.txt ; \
  7.         exit 1 ; \
  8. fi
  9. Could not import runpy module
  10. Traceback (most recent call last):
  11.   File "/tmp/python_build/rpmbuild/BUILD/Python-3.8.0/Lib/runpy.py", line 15, in <module>
  12.     import importlib.util
  13.   File "/tmp/python_build/rpmbuild/BUILD/Python-3.8.0/Lib/importlib/util.py", line 14, in <module>
  14.     from contextlib import contextmanager
  15.   File "/tmp/python_build/rpmbuild/BUILD/Python-3.8.0/Lib/contextlib.py", line 4, in <module>
  16.     import _collections_abc
  17. SystemError: <built-in function compile> returned NULL without setting an error
  18. generate-posix-vars failed
  19. make[1]: *** [pybuilddir.txt] Error 1
  20. make[1]: *** Waiting for unfinished jobs....
  21. make[1]: Leaving directory `/tmp/python_build/rpmbuild/BUILD/Python-3.8.0'
  22. make: *** [profile-opt] Error 2
  23. error: Bad exit status from /var/tmp/rpm-tmp.UaaJoQ (%build)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement