事象
Docker-Composeでuwsgi
(ver 2.0.19)をビルドしようとしたところ次のエラーが発生。
いままで1年の間は上手く動作していたのに、昨日(2022/02/10)はご機嫌ナナメに。
Building wheels for collected packages: uwsgi, Pillow
Building wheel for uwsgi (setup.py): started
Building wheel for uwsgi (setup.py): finished with status 'error'
Running setup.py clean for uwsgi
ERROR: Command errored out with exit status 1:
command: /usr/local/bin/python -u -c 'import io, os, sys, setuptools,
・・・・・・・・(中略)
/usr/bin/ld: plugins/python/python_plugin.o: in function `uwsgi_pyimport_by_filename':
python_plugin.c:(.text+0x1652): undefined reference to `PyParser_SimpleParseString'
/usr/bin/ld: python_plugin.c:(.text+0x1667): undefined reference to `PyNode_Compile'
/usr/bin/ld: python_plugin.c:(.text+0x171b): undefined reference to `PyParser_SimpleParseFile'
/usr/bin/ld: python_plugin.c:(.text+0x173b): undefined reference to `PyNode_Compile'
/usr/bin/ld: python_plugin.c:(.text+0x17b3): undefined reference to `PyParser_SimpleParseFile'
/usr/bin/ld: python_plugin.c:(.text+0x17d3): undefined reference to `PyNode_Compile'
/usr/bin/ld: plugins/python/pyloader.o: in function `uwsgi_eval_loader':
pyloader.c:(.text+0x170f): undefined reference to `PyParser_SimpleParseString'
/usr/bin/ld: pyloader.c:(.text+0x1728): undefined reference to `PyNode_Compile'
collect2: error: ld returned 1 exit status
*** error linking uWSGI ***
----------------------------------------
ERROR: Failed building wheel for uwsgi
対策
uwsgi
のver 2.0.20をインストールしたところ、上手く動作しました。
※2022/02/10時点での最新はバージョンが2.0.20。公式
requirements.txt
のバージョン指定をuwsgi==2.0.19
からuwsgi==2.0.20
に書き換え、Docker-Composeを再起動。
$ cat requirements.txt
・・・・・・・・
uwsgi==2.0.20
・・・・・・・・
これで無事サービスが復旧しました。
エラー詳細
uwsgi
(ver 2.0.19)ビルド時のエラー内容詳細。興味のある方向け。
Building wheels for collected packages: uwsgi, Pillow
Building wheel for uwsgi (setup.py): started
Building wheel for uwsgi (setup.py): finished with status 'error'
Running setup.py clean for uwsgi
ERROR: Command errored out with exit status 1:
command: /usr/local/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-igiy_45d/uwsgi_f64429b6f9794d308fa30d38b321a0eb/setup.py'"'"'; __file__='"'"'/tmp/pip-install-igiy_45d/uwsgi_f64429b6f9794d308fa30d38b321a0eb/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-6iyeh4r6
cwd: /tmp/pip-install-igiy_45d/uwsgi_f64429b6f9794d308fa30d38b321a0eb/
Complete output (385 lines):
/usr/local/lib/python3.10/distutils/dist.py:274: UserWarning: Unknown distribution option: 'descriptions'
warnings.warn(msg)
running bdist_wheel
running build
running build_py
creating build
creating build/lib
copying uwsgidecorators.py -> build/lib
installing to build/bdist.linux-x86_64/wheel
running install
using profile: buildconf/default.ini
detected include path: ['/usr/lib/gcc/x86_64-linux-gnu/10/include', '/usr/local/include', '/usr/include/x86_64-linux-gnu', '/usr/include']
Patching "bin_name" to properly install_scripts dir
detected CPU cores: 1
configured CFLAGS: -O2 -I. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -DUWSGI_HAS_IFADDRS -DUWSGI_ZLIB -DUWSGI_LOCK_USE_MUTEX -DUWSGI_EVENT_USE_EPOLL -DUWSGI_EVENT_TIMER_USE_TIMERFD -DUWSGI_EVENT_FILEMONITOR_USE_INOTIFY -DUWSGI_PCRE -DUWSGI_ROUTING -DUWSGI_UUID -DUWSGI_VERSION="\"2.0.19\"" -DUWSGI_VERSION_BASE="2" -DUWSGI_VERSION_MAJOR="0" -DUWSGI_VERSION_MINOR="19" -DUWSGI_VERSION_REVISION="0" -DUWSGI_VERSION_CUSTOM="\"\"" -DUWSGI_YAML -DUWSGI_SSL -I/usr/include/libxml2 -DUWSGI_XML -DUWSGI_XML_LIBXML2 -DUWSGI_PLUGIN_DIR="\".\"" -DUWSGI_DECLARE_EMBEDDED_PLUGINS="UDEP(python);UDEP(gevent);UDEP(ping);UDEP(cache);UDEP(nagios);UDEP(rrdtool);UDEP(carbon);UDEP(rpc);UDEP(corerouter);UDEP(fastrouter);UDEP(http);UDEP(ugreen);UDEP(signal);UDEP(syslog);UDEP(rsyslog);UDEP(logsocket);UDEP(router_uwsgi);UDEP(router_redirect);UDEP(router_basicauth);UDEP(zergpool);UDEP(redislog);UDEP(mongodblog);UDEP(router_rewrite);UDEP(router_http);UDEP(logfile);UDEP(router_cache);UDEP(rawrouter);UDEP(router_static);UDEP(sslrouter);UDEP(spooler);UDEP(cheaper_busyness);UDEP(symcall);UDEP(transformation_tofile);UDEP(transformation_gzip);UDEP(transformation_chunked);UDEP(transformation_offload);UDEP(router_memcached);UDEP(router_redis);UDEP(router_hash);UDEP(router_expires);UDEP(router_metrics);UDEP(transformation_template);UDEP(stats_pusher_socket);" -DUWSGI_LOAD_EMBEDDED_PLUGINS="ULEP(python);ULEP(gevent);ULEP(ping);ULEP(cache);ULEP(nagios);ULEP(rrdtool);ULEP(carbon);ULEP(rpc);ULEP(corerouter);ULEP(fastrouter);ULEP(http);ULEP(ugreen);ULEP(signal);ULEP(syslog);ULEP(rsyslog);ULEP(logsocket);ULEP(router_uwsgi);ULEP(router_redirect);ULEP(router_basicauth);ULEP(zergpool);ULEP(redislog);ULEP(mongodblog);ULEP(router_rewrite);ULEP(router_http);ULEP(logfile);ULEP(router_cache);ULEP(rawrouter);ULEP(router_static);ULEP(sslrouter);ULEP(spooler);ULEP(cheaper_busyness);ULEP(symcall);ULEP(transformation_tofile);ULEP(transformation_gzip);ULEP(transformation_chunked);ULEP(transformation_offload);ULEP(router_memcached);ULEP(router_redis);ULEP(router_hash);ULEP(router_expires);ULEP(router_metrics);ULEP(transformation_template);ULEP(stats_pusher_socket);"
*** uWSGI compiling server core ***
[gcc -pthread] core/utils.o
[gcc -pthread] core/protocol.o
[gcc -pthread] core/socket.o
[gcc -pthread] core/logging.o
[gcc -pthread] core/master.o
[gcc -pthread] core/master_utils.o
[gcc -pthread] core/emperor.o
[gcc -pthread] core/notify.o
[gcc -pthread] core/mule.o
[gcc -pthread] core/subscription.o
[gcc -pthread] core/stats.o
[gcc -pthread] core/sendfile.o
[gcc -pthread] core/async.o
[gcc -pthread] core/master_checks.o
[gcc -pthread] core/fifo.o
[gcc -pthread] core/offload.o
[gcc -pthread] core/io.o
[gcc -pthread] core/static.o
[gcc -pthread] core/websockets.o
[gcc -pthread] core/spooler.o
[gcc -pthread] core/snmp.o
[gcc -pthread] core/exceptions.o
[gcc -pthread] core/config.o
[gcc -pthread] core/setup_utils.o
[gcc -pthread] core/clock.o
[gcc -pthread] core/init.o
[gcc -pthread] core/buffer.o
[gcc -pthread] core/reader.o
[gcc -pthread] core/writer.o
[gcc -pthread] core/alarm.o
[gcc -pthread] core/cron.o
[gcc -pthread] core/hooks.o
[gcc -pthread] core/plugins.o
[gcc -pthread] core/lock.o
[gcc -pthread] core/cache.o
[gcc -pthread] core/daemons.o
[gcc -pthread] core/errors.o
[gcc -pthread] core/hash.o
[gcc -pthread] core/master_events.o
[gcc -pthread] core/chunked.o
[gcc -pthread] core/queue.o
[gcc -pthread] core/event.o
[gcc -pthread] core/signal.o
[gcc -pthread] core/strings.o
[gcc -pthread] core/progress.o
[gcc -pthread] core/timebomb.o
[gcc -pthread] core/ini.o
[gcc -pthread] core/fsmon.o
[gcc -pthread] core/mount.o
[gcc -pthread] core/metrics.o
[gcc -pthread] core/plugins_builder.o
[gcc -pthread] core/sharedarea.o
[gcc -pthread] core/rpc.o
[gcc -pthread] core/gateway.o
[gcc -pthread] core/loop.o
[gcc -pthread] core/cookie.o
[gcc -pthread] core/querystring.o
[gcc -pthread] core/rb_timers.o
[gcc -pthread] core/transformations.o
[gcc -pthread] core/uwsgi.o
[gcc -pthread] proto/base.o
[gcc -pthread] proto/uwsgi.o
[gcc -pthread] proto/http.o
[gcc -pthread] proto/fastcgi.o
[gcc -pthread] proto/scgi.o
[gcc -pthread] proto/puwsgi.o
[gcc -pthread] lib/linux_ns.o
[gcc -pthread] core/zlib.o
[gcc -pthread] core/regexp.o
[gcc -pthread] core/routing.o
[gcc -pthread] core/yaml.o
[gcc -pthread] core/ssl.o
[gcc -pthread] core/legion.o
[gcc -pthread] core/xmlconf.o
[gcc -pthread] core/dot_h.o
[gcc -pthread] core/config_py.o
*** uWSGI compiling embedded plugins ***
[gcc -pthread] plugins/python/python_plugin.o
plugins/python/python_plugin.c: In function ‘uwsgi_python_reset_random_seed’:
plugins/python/python_plugin.c:319:33: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
319 | PyEval_CallObject(random_seed, random_args);
| ^~~~~~~~~~~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/python_plugin.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/python_plugin.c: In function ‘uwsgi_pyimport_by_filename’:
plugins/python/python_plugin.c:470:18: warning: implicit declaration of function ‘PyParser_SimpleParseFile’ [-Wimplicit-function-declaration]
470 | py_file_node = PyParser_SimpleParseFile(pyfile, real_filename, Py_file_input);
| ^~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/python_plugin.c:470:16: warning: assignment to ‘struct _node *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
470 | py_file_node = PyParser_SimpleParseFile(pyfile, real_filename, Py_file_input);
| ^
plugins/python/python_plugin.c:487:19: warning: implicit declaration of function ‘PyParser_SimpleParseString’ [-Wimplicit-function-declaration]
487 | py_file_node = PyParser_SimpleParseString(pycontent, Py_file_input);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/python_plugin.c:487:17: warning: assignment to ‘struct _node *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
487 | py_file_node = PyParser_SimpleParseString(pycontent, Py_file_input);
| ^
plugins/python/python_plugin.c:496:34: warning: implicit declaration of function ‘PyNode_Compile’ [-Wimplicit-function-declaration]
496 | py_compiled_node = (PyObject *) PyNode_Compile(py_file_node, real_filename);
| ^~~~~~~~~~~~~~
plugins/python/python_plugin.c:496:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
496 | py_compiled_node = (PyObject *) PyNode_Compile(py_file_node, real_filename);
| ^
plugins/python/python_plugin.c: In function ‘uwsgi_python_enable_threads’:
plugins/python/python_plugin.c:1292:2: warning: ‘PyEval_InitThreads’ is deprecated [-Wdeprecated-declarations]
1292 | PyEval_InitThreads();
| ^~~~~~~~~~~~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/python_plugin.c:1:
/usr/local/include/python3.10/ceval.h:122:37: note: declared here
122 | Py_DEPRECATED(3.9) PyAPI_FUNC(void) PyEval_InitThreads(void);
| ^~~~~~~~~~~~~~~~~~
plugins/python/python_plugin.c: In function ‘uwsgi_python_set_thread_name’:
plugins/python/python_plugin.c:1336:33: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
1336 | PyObject *current_thread = PyEval_CallObject(threading_current, (PyObject *)NULL);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/python_plugin.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/python_plugin.c: In function ‘uwsgi_python_setup_thread’:
plugins/python/python_plugin.c:1424:33: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
1424 | PyObject *current_thread = PyEval_CallObject(threading_current, (PyObject *)NULL);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/python_plugin.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/python_plugin.c: In function ‘uwsgi_python_mule’:
plugins/python/python_plugin.c:1854:4: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
1854 | result = PyEval_CallObject(callable, arglist);
| ^~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/python_plugin.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/python_plugin.c: In function ‘uwsgi_python_logger’:
plugins/python/python_plugin.c:1944:17: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
1944 | ul->data = (void *) PyEval_CallObject(py_getLogger, py_getLogger_args);
| ^~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/python_plugin.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[gcc -pthread] plugins/python/pyutils.o
plugins/python/pyutils.c: In function ‘uwsgi_python_backtrace’:
plugins/python/pyutils.c:78:2: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
78 | PyObject *result = PyEval_CallObject(extract_tb, args);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/pyutils.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/pyutils.c: In function ‘python_call’:
plugins/python/pyutils.c:279:2: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
279 | PyObject *pyret = PyEval_CallObject(callable, args);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/pyutils.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[gcc -pthread] plugins/python/pyloader.o
plugins/python/pyloader.c: In function ‘uwsgi_pecan_loader’:
plugins/python/pyloader.c:663:2: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
663 | pecan_app = PyEval_CallObject(pecan_deploy, pecan_arg);
| ^~~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/pyloader.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/pyloader.c: In function ‘uwsgi_paste_loader’:
plugins/python/pyloader.c:727:2: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
727 | paste_app = PyEval_CallObject(paste_loadapp, paste_arg);
| ^~~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/pyloader.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/pyloader.c: In function ‘uwsgi_eval_loader’:
plugins/python/pyloader.c:745:19: warning: implicit declaration of function ‘PyParser_SimpleParseString’ [-Wimplicit-function-declaration]
745 | wsgi_eval_node = PyParser_SimpleParseString(code, Py_file_input);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/pyloader.c:745:17: warning: assignment to ‘struct _node *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
745 | wsgi_eval_node = PyParser_SimpleParseString(code, Py_file_input);
| ^
plugins/python/pyloader.c:752:36: warning: implicit declaration of function ‘PyNode_Compile’ [-Wimplicit-function-declaration]
752 | wsgi_compiled_node = (PyObject *) PyNode_Compile(wsgi_eval_node, "uwsgi_eval_config");
| ^~~~~~~~~~~~~~
plugins/python/pyloader.c:752:23: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
752 | wsgi_compiled_node = (PyObject *) PyNode_Compile(wsgi_eval_node, "uwsgi_eval_config");
| ^
plugins/python/pyloader.c: In function ‘set_dyn_pyhome’:
plugins/python/pyloader.c:49:21: warning: ‘snprintf’ output truncated before the last format character [-Wformat-truncation=]
49 | if (snprintf(venv_version, 15, "/lib/python%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION) == -1) {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/pyloader.c:49:21: note: ‘snprintf’ output 16 bytes into a destination of size 15
[gcc -pthread] plugins/python/wsgi_handlers.o
[gcc -pthread] plugins/python/wsgi_headers.o
[gcc -pthread] plugins/python/wsgi_subhandler.o
plugins/python/wsgi_subhandler.c: In function ‘uwsgi_python_consume_file_wrapper_read’:
plugins/python/wsgi_subhandler.c:106:10: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
106 | PyObject *read_method_output = PyEval_CallObject(read_method, read_method_args);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/wsgi_subhandler.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/wsgi_subhandler.c: In function ‘uwsgi_response_subhandler_wsgi’:
plugins/python/wsgi_subhandler.c:366:25: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
366 | PyObject *close_method_output = PyEval_CallObject(close_method, close_method_args);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/wsgi_subhandler.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[gcc -pthread] plugins/python/web3_subhandler.o
[gcc -pthread] plugins/python/pump_subhandler.o
[gcc -pthread] plugins/python/gil.o
[gcc -pthread] plugins/python/uwsgi_pymodule.o
[gcc -pthread] plugins/python/profiler.o
[gcc -pthread] plugins/python/symimporter.o
[gcc -pthread] plugins/python/tracebacker.o
plugins/python/tracebacker.c: In function ‘uwsgi_python_get_thread_name’:
plugins/python/tracebacker.c:17:2: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
17 | PyObject *threads_list = PyEval_CallObject(threading_enumerate, (PyObject *)NULL);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/tracebacker.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/tracebacker.c: In function ‘uwsgi_python_tracebacker_thread’:
plugins/python/tracebacker.c:109:3: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
109 | PyObject *current_frames = PyEval_CallObject(_current_frames, (PyObject *)NULL);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/tracebacker.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/tracebacker.c:115:3: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
115 | PyObject *frames_ret = PyEval_CallObject(current_frames_items, (PyObject *)NULL);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/tracebacker.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/python/tracebacker.c:137:4: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
137 | PyObject *stacktrace = PyEval_CallObject( extract_stack, arg_tuple);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/tracebacker.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[gcc -pthread] plugins/python/raw.o
plugins/python/raw.c: In function ‘uwsgi_request_python_raw’:
plugins/python/raw.c:67:2: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
67 | wsgi_req->async_result = PyEval_CallObject(up.raw_callable, args);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/python/uwsgi_python.h:2,
from plugins/python/raw.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[gcc -pthread] plugins/gevent/gevent.o
plugins/gevent/gevent.c: In function ‘py_uwsgi_gevent_ctrl_gl’:
plugins/gevent/gevent.c:36:17: warning: ‘PyEval_CallObjectWithKeywords’ is deprecated [-Wdeprecated-declarations]
36 | PyObject *gswitch = PyEval_CallObject(ugevent.greenlet_switch, gevent_sleep_args);
| ^~~~~~~~
In file included from /usr/local/include/python3.10/Python.h:130,
from plugins/gevent/../python/uwsgi_python.h:2,
from plugins/gevent/gevent.h:1,
from plugins/gevent/gevent.c:1:
/usr/local/include/python3.10/ceval.h:17:43: note: declared here
17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[gcc -pthread] plugins/gevent/hooks.o
[gcc -pthread] plugins/ping/ping_plugin.o
[gcc -pthread] plugins/cache/cache.o
[gcc -pthread] plugins/nagios/nagios.o
[gcc -pthread] plugins/rrdtool/rrdtool.o
[gcc -pthread] plugins/carbon/carbon.o
[gcc -pthread] plugins/rpc/rpc_plugin.o
[gcc -pthread] plugins/corerouter/cr_common.o
[gcc -pthread] plugins/corerouter/cr_map.o
[gcc -pthread] plugins/corerouter/corerouter.o
[gcc -pthread] plugins/fastrouter/fastrouter.o
[gcc -pthread] plugins/http/http.o
[gcc -pthread] plugins/http/keepalive.o
[gcc -pthread] plugins/http/https.o
[gcc -pthread] plugins/http/spdy3.o
[gcc -pthread] plugins/ugreen/ugreen.o
[gcc -pthread] plugins/signal/signal_plugin.o
[gcc -pthread] plugins/syslog/syslog_plugin.o
[gcc -pthread] plugins/rsyslog/rsyslog_plugin.o
[gcc -pthread] plugins/logsocket/logsocket_plugin.o
[gcc -pthread] plugins/router_uwsgi/router_uwsgi.o
[gcc -pthread] plugins/router_redirect/router_redirect.o
[gcc -pthread] plugins/router_basicauth/router_basicauth.o
[gcc -pthread] plugins/zergpool/zergpool.o
[gcc -pthread] plugins/redislog/redislog_plugin.o
[gcc -pthread] plugins/mongodblog/mongodblog_plugin.o
[gcc -pthread] plugins/router_rewrite/router_rewrite.o
[gcc -pthread] plugins/router_http/router_http.o
[gcc -pthread] plugins/logfile/logfile.o
[gcc -pthread] plugins/router_cache/router_cache.o
[gcc -pthread] plugins/rawrouter/rawrouter.o
[gcc -pthread] plugins/router_static/router_static.o
[gcc -pthread] plugins/sslrouter/sslrouter.o
[gcc -pthread] plugins/spooler/spooler_plugin.o
[gcc -pthread] plugins/cheaper_busyness/cheaper_busyness.o
[gcc -pthread] plugins/symcall/symcall_plugin.o
[gcc -pthread] plugins/transformation_tofile/tofile.o
[gcc -pthread] plugins/transformation_gzip/gzip.o
[gcc -pthread] plugins/transformation_chunked/chunked.o
[gcc -pthread] plugins/transformation_offload/offload.o
[gcc -pthread] plugins/router_memcached/router_memcached.o
[gcc -pthread] plugins/router_redis/router_redis.o
[gcc -pthread] plugins/router_hash/router_hash.o
[gcc -pthread] plugins/router_expires/expires.o
[gcc -pthread] plugins/router_metrics/plugin.o
[gcc -pthread] plugins/transformation_template/tt.o
[gcc -pthread] plugins/stats_pusher_socket/plugin.o
*** uWSGI linking ***
gcc -pthread -o build/bdist.linux-x86_64/wheel/uWSGI-2.0.19.data/scripts/uwsgi -L/usr/local/lib -Wl,-rpath,/usr/local/lib core/utils.o core/protocol.o core/socket.o core/logging.o core/master.o core/master_utils.o core/emperor.o core/notify.o core/mule.o core/subscription.o core/stats.o core/sendfile.o core/async.o core/master_checks.o core/fifo.o core/offload.o core/io.o core/static.o core/websockets.o core/spooler.o core/snmp.o core/exceptions.o core/config.o core/setup_utils.o core/clock.o core/init.o core/buffer.o core/reader.o core/writer.o core/alarm.o core/cron.o core/hooks.o core/plugins.o core/lock.o core/cache.o core/daemons.o core/errors.o core/hash.o core/master_events.o core/chunked.o core/queue.o core/event.o core/signal.o core/strings.o core/progress.o core/timebomb.o core/ini.o core/fsmon.o core/mount.o core/metrics.o core/plugins_builder.o core/sharedarea.o core/rpc.o core/gateway.o core/loop.o core/cookie.o core/querystring.o core/rb_timers.o core/transformations.o core/uwsgi.o proto/base.o proto/uwsgi.o proto/http.o proto/fastcgi.o proto/scgi.o proto/puwsgi.o lib/linux_ns.o core/zlib.o core/regexp.o core/routing.o core/yaml.o core/ssl.o core/legion.o core/xmlconf.o core/dot_h.o core/config_py.o plugins/python/python_plugin.o plugins/python/pyutils.o plugins/python/pyloader.o plugins/python/wsgi_handlers.o plugins/python/wsgi_headers.o plugins/python/wsgi_subhandler.o plugins/python/web3_subhandler.o plugins/python/pump_subhandler.o plugins/python/gil.o plugins/python/uwsgi_pymodule.o plugins/python/profiler.o plugins/python/symimporter.o plugins/python/tracebacker.o plugins/python/raw.o plugins/gevent/gevent.o plugins/gevent/hooks.o plugins/ping/ping_plugin.o plugins/cache/cache.o plugins/nagios/nagios.o plugins/rrdtool/rrdtool.o plugins/carbon/carbon.o plugins/rpc/rpc_plugin.o plugins/corerouter/cr_common.o plugins/corerouter/cr_map.o plugins/corerouter/corerouter.o plugins/fastrouter/fastrouter.o plugins/http/http.o plugins/http/keepalive.o plugins/http/https.o plugins/http/spdy3.o plugins/ugreen/ugreen.o plugins/signal/signal_plugin.o plugins/syslog/syslog_plugin.o plugins/rsyslog/rsyslog_plugin.o plugins/logsocket/logsocket_plugin.o plugins/router_uwsgi/router_uwsgi.o plugins/router_redirect/router_redirect.o plugins/router_basicauth/router_basicauth.o plugins/zergpool/zergpool.o plugins/redislog/redislog_plugin.o plugins/mongodblog/mongodblog_plugin.o plugins/router_rewrite/router_rewrite.o plugins/router_http/router_http.o plugins/logfile/logfile.o plugins/router_cache/router_cache.o plugins/rawrouter/rawrouter.o plugins/router_static/router_static.o plugins/sslrouter/sslrouter.o plugins/spooler/spooler_plugin.o plugins/cheaper_busyness/cheaper_busyness.o plugins/symcall/symcall_plugin.o plugins/transformation_tofile/tofile.o plugins/transformation_gzip/gzip.o plugins/transformation_chunked/chunked.o plugins/transformation_offload/offload.o plugins/router_memcached/router_memcached.o plugins/router_redis/router_redis.o plugins/router_hash/router_hash.o plugins/router_expires/expires.o plugins/router_metrics/plugin.o plugins/transformation_template/tt.o plugins/stats_pusher_socket/plugin.o -lpthread -lm -rdynamic -ldl -lz -lpcre -luuid -lssl -lcrypto -lxml2 -lcrypt -lpthread -ldl -lutil -lm -lm -lpython3.10 -lcrypt
/usr/bin/ld: plugins/python/python_plugin.o: in function `uwsgi_pyimport_by_filename':
python_plugin.c:(.text+0x1652): undefined reference to `PyParser_SimpleParseString'
/usr/bin/ld: python_plugin.c:(.text+0x1667): undefined reference to `PyNode_Compile'
/usr/bin/ld: python_plugin.c:(.text+0x171b): undefined reference to `PyParser_SimpleParseFile'
/usr/bin/ld: python_plugin.c:(.text+0x173b): undefined reference to `PyNode_Compile'
/usr/bin/ld: python_plugin.c:(.text+0x17b3): undefined reference to `PyParser_SimpleParseFile'
/usr/bin/ld: python_plugin.c:(.text+0x17d3): undefined reference to `PyNode_Compile'
/usr/bin/ld: plugins/python/pyloader.o: in function `uwsgi_eval_loader':
pyloader.c:(.text+0x170f): undefined reference to `PyParser_SimpleParseString'
/usr/bin/ld: pyloader.c:(.text+0x1728): undefined reference to `PyNode_Compile'
collect2: error: ld returned 1 exit status
*** error linking uWSGI ***
----------------------------------------
ERROR: Failed building wheel for uwsgi