mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-24 13:45:05 +00:00
- Added comprehensive frozen module stubs (bootstrap, stdlib, test, aliases) - Added build info stubs (Py_GetBuildInfo, git version/identifier) - Added import system stubs (_PyImport_Inittab, _PyImport_GetDLOpenFlags) - Added path config stub (_PyConfig_InitPathConfig) - Added faulthandler stubs (excluded problematic module from build) - Added plock() stub for missing Solaris-specific function - Fixed HAVE_CLOCK_GETTIME configuration - Added complete tokenizer sources (helpers.c, lexer/*.c) - Added essential modules (atexit, datetime, tracemalloc) - Fixed frozen_stubs.c to use correct pointer types - Commented out HAVE_PLOCK (not available on modern Linux) - Created STUBS.md documenting all stub implementations - Successfully builds and links typthon executable - Interpreter works: ./typthon --version shows "Typthon 3.14.0b4+" Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
91 lines
1.8 KiB
C
91 lines
1.8 KiB
C
/* Stub file for frozen modules and other missing symbols in minimal build */
|
|
|
|
#include "Python.h"
|
|
#include "pycore_pystate.h"
|
|
#include "pycore_import.h"
|
|
#include <errno.h>
|
|
|
|
/* Frozen module stubs - empty arrays to satisfy linker */
|
|
static const struct _frozen _frozen_bootstrap_list[] = {
|
|
{0, 0, 0, 0}
|
|
};
|
|
|
|
static const struct _frozen _frozen_stdlib_list[] = {
|
|
{0, 0, 0, 0}
|
|
};
|
|
|
|
static const struct _frozen _frozen_test_list[] = {
|
|
{0, 0, 0, 0}
|
|
};
|
|
|
|
static const struct _module_alias _frozen_aliases_list[] = {
|
|
{0, 0}
|
|
};
|
|
|
|
const struct _frozen *_PyImport_FrozenBootstrap = _frozen_bootstrap_list;
|
|
const struct _frozen *_PyImport_FrozenStdlib = _frozen_stdlib_list;
|
|
const struct _frozen *_PyImport_FrozenTest = _frozen_test_list;
|
|
const struct _frozen *PyImport_FrozenModules = NULL;
|
|
const struct _module_alias *_PyImport_FrozenAliases = _frozen_aliases_list;
|
|
|
|
/* Inittab stub */
|
|
struct _inittab _PyImport_Inittab[] = {
|
|
{0, 0}
|
|
};
|
|
|
|
/* Build info stubs */
|
|
const char *
|
|
Py_GetBuildInfo(void)
|
|
{
|
|
return "Typthon 3.14.0 (default, " __DATE__ " " __TIME__ ")";
|
|
}
|
|
|
|
const char *
|
|
_Py_gitidentifier(void)
|
|
{
|
|
return "default";
|
|
}
|
|
|
|
const char *
|
|
_Py_gitversion(void)
|
|
{
|
|
return "Typthon 3.14.0";
|
|
}
|
|
|
|
/* DL open flags stub */
|
|
int
|
|
_PyImport_GetDLOpenFlags(PyInterpreterState *interp)
|
|
{
|
|
return 0x102; /* RTLD_NOW | RTLD_GLOBAL */
|
|
}
|
|
|
|
/* Path config stub - minimal implementation */
|
|
PyStatus
|
|
_PyConfig_InitPathConfig(PyConfig *config, int compute_path_config)
|
|
{
|
|
return PyStatus_Ok();
|
|
}
|
|
|
|
/* Faulthandler stubs - module excluded from build */
|
|
int
|
|
_PyFaulthandler_Init(int enable)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
_PyFaulthandler_Fini(void)
|
|
{
|
|
/* No-op */
|
|
}
|
|
|
|
/* plock stub - not available on all systems */
|
|
#ifndef HAVE_PLOCK
|
|
int plock(int op)
|
|
{
|
|
/* Not implemented */
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|
|
#endif
|