We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71f218f commit 6398ceeCopy full SHA for 6398cee
.github/python-config-stub
@@ -8,7 +8,7 @@ then
8
exit 1
9
fi
10
11
-VENV_DIR=$(realpath.exe --canonicalize-missing $SCRIPT_DIR/../../install/venv)
+VENV_DIR=$(realpath.exe --canonicalize-missing $SCRIPT_DIR/../../install/venv/)
12
13
# The first argument is the path to python-config.py, ignore it.
14
gdb/python/python.c
@@ -2114,6 +2114,11 @@ do_start_initialization ()
2114
if (PyStatus_Exception (status))
2115
goto init_done;
2116
2117
+ status = PyConfig_SetString (&config, &config.executable,
2118
+ progname_copy);
2119
+ if (PyStatus_Exception (status))
2120
+ goto init_done;
2121
+
2122
config.write_bytecode = python_write_bytecode ();
2123
config.use_environment = !python_ignore_environment;
2124
0 commit comments