https://github.com/python/cpython
Raw File
Tip revision: 269bf56e3d352c415ec38f93017ba8e291ddb18a authored by Miss Islington (bot) on 22 October 2021, 18:29:52 UTC
bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)
Tip revision: 269bf56
dynload_dl.c

/* Support for dynamic loading of extension modules */

#include "dl.h"

#include "Python.h"
#include "importdl.h"


extern char *Py_GetProgramName(void);

const char *_PyImport_DynLoadFiletab[] = {".o", NULL};


dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix,
                                       const char *shortname,
                                       const char *pathname, FILE *fp)
{
    char funcname[258];

    PyOS_snprintf(funcname, sizeof(funcname), "%.20s_%.200s", prefix, shortname);
    return dl_loadmod(Py_GetProgramName(), pathname, funcname);
}
back to top