8000 GH-127970: find the runtime library when dladdr is available by FFY00 · Pull Request #127972 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-127970: find the runtime library when dladdr is available #127972

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jan 8, 2025
Prev Previous commit
Next Next commit
Fix preprocessor check
Signed-off-by: Filipe Laíns <lains@riseup.net
  • Loading branch information
FFY00 committed Dec 17, 2024
commit e6e132528a8b84cbe3d52e744fdeb2a6c32bc21b
2 changes: 1 addition & 1 deletion Modules/getpath.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ library_to_dict(PyObject *dict, const char *key)
{
/* macOS framework builds do not link against a libpython dynamic library, but
instead link against a macOS Framework. */
#ifdef Py_ENABLE_SHARED || WITH_NEXT_FRAMEWORK
#if defined(Py_ENABLE_SHARED) || defined(WITH_NEXT_FRAMEWORK)

#ifdef MS_WINDOWS
extern HMODULE PyWin_DLLhModule;
Expand Down
Loading
0