Forwarded: https://github.com/fabioz/PyDev.Debugger/issues/160
Last-Update: 2022-06-17
The original system has two separate setup.py files, and we need
to run the other one manually, as only one of the two extensions is
built in setup.py. This patch moves the extension building into the
standard setup.py.
Gbp-Pq: Name build_both_extensions.patch
["_pydevd_bundle/pydevd_cython.c", ],\r
define_macros=[('Py_BUILD_CORE_MODULE', '1')],\r
**kwargs\r
- )\r
+ ),\r
+ Extension(\r
+ '_pydevd_frame_eval.pydevd_frame_evaluator',\r
+ ["_pydevd_frame_eval/pydevd_frame_evaluator.c", ],\r
+ define_macros=[('Py_BUILD_CORE_MODULE', '1')],\r
+ **kwargs\r
+ ),\r
]\r
))\r
setup(**args_with_binaries)\r