summaryrefslogtreecommitdiff
path: root/gst-env.py
diff options
context:
space:
mode:
Diffstat (limited to 'gst-env.py')
-rwxr-xr-xgst-env.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/gst-env.py b/gst-env.py
index d91381a731..d95b2e9be2 100755
--- a/gst-env.py
+++ b/gst-env.py
@@ -160,8 +160,11 @@ def setup_gdb(options):
python_paths.add(str(bdir / gdb_path))
python_paths.add(os.path.join(options.srcdir, gdb_path))
try:
- os.symlink(gdb_helper, str(autoload_path / os.path.basename(gdb_helper)))
- except FileExistsError:
+ if os.name == 'nt':
+ shutil.copy(gdb_helper, str(autoload_path / os.path.basename(gdb_helper)))
+ else:
+ os.symlink(gdb_helper, str(autoload_path / os.path.basename(gdb_helper)))
+ except (FileExistsError, shutil.SameFileError):
pass
gdbinit_line = 'add-auto-load-scripts-directory {}\n'.format(bdir / 'gdb-auto-load')