Contribute helper files for CLion debugging
This commit is contained in:
12
contrib/clion/GetCLionDebugPort.FCMacro
Normal file
12
contrib/clion/GetCLionDebugPort.FCMacro
Normal file
@@ -0,0 +1,12 @@
|
||||
import pydevd
|
||||
from multiprocessing.connection import Listener
|
||||
|
||||
print("CLion debugger macro running. Starting listener to get port")
|
||||
listen = Listener(('localhost', 39998), backlog=1)
|
||||
link = listen.accept()
|
||||
port = link.recv()
|
||||
link.close()
|
||||
listen.close()
|
||||
print("Port", port, "received, starting debugger. Check CLion to see if a breakpoint has been hit and continue")
|
||||
pydevd.settrace(port=port)
|
||||
print("Debugger operating, leaving macro.")
|
||||
18
contrib/clion/attach_pydevd.py.patch
Normal file
18
contrib/clion/attach_pydevd.py.patch
Normal file
@@ -0,0 +1,18 @@
|
||||
--- attach_pydevd.py.orig 2024-09-26 10:36:47.131066345 -0400
|
||||
+++ attach_pydevd.py 2024-09-26 10:16:48.687714133 -0400
|
||||
@@ -48,6 +48,15 @@
|
||||
import add_code_to_python_process
|
||||
show_debug_info_on_target_process = 0
|
||||
|
||||
+ print("attach_pydevd is trying to relay the port",setup['port'])
|
||||
+ try:
|
||||
+ from multiprocessing.connection import Client
|
||||
+ link = Client(('localhost',39998))
|
||||
+ link.send(setup['port'])
|
||||
+ link.close()
|
||||
+ except ConnectionError as ce:
|
||||
+ pass
|
||||
+
|
||||
pydevd_dirname = os.path.dirname(os.path.dirname(__file__))
|
||||
|
||||
if sys.platform == 'win32':
|
||||
Reference in New Issue
Block a user