Improved support for projects located on a network share // Resolve #3417 , Resolve #3926 , Resolve #4102

This commit is contained in:
Ivan Kravets
2021-11-12 15:17:25 +02:00
parent 001f075a49
commit 4687665ff3
18 changed files with 67 additions and 46 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ class GDBClientProcess(DebugClientProcess):
def _get_data_dir(gdb_path):
if "msp430" in gdb_path:
return None
gdb_data_dir = os.path.realpath(
gdb_data_dir = os.path.abspath(
os.path.join(os.path.dirname(gdb_path), "..", "share", "gdb")
)
return gdb_data_dir if os.path.isdir(gdb_data_dir) else None