diff options
author | midipix <writeonce@midipix.org> | 2018-12-23 04:50:45 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-23 04:52:47 -0500 |
commit | 2e8fd90a02ce0fd1c0a700cc134a51a0f7629c27 (patch) | |
tree | 10ab9b890fd141fe33e232eb4db05fd975fe7e85 /config/midipix | |
parent | 127aed6c081cf972e0e5f50683027fc3ab31a8ef (diff) | |
download | sbpython2-2e8fd90a02ce0fd1c0a700cc134a51a0f7629c27.tar.bz2 sbpython2-2e8fd90a02ce0fd1c0a700cc134a51a0f7629c27.tar.xz |
project: config, cfghost.sh: simply & unify cfghost profiles (cf. cad286e).
Diffstat (limited to 'config/midipix')
-rw-r--r-- | config/midipix/config.c | 17 | ||||
-rw-r--r-- | config/midipix/config.mk | 26 | ||||
-rw-r--r-- | config/midipix/pyconfig.h | 10 |
3 files changed, 53 insertions, 0 deletions
diff --git a/config/midipix/config.c b/config/midipix/config.c new file mode 100644 index 0000000..0304e40 --- /dev/null +++ b/config/midipix/config.c @@ -0,0 +1,17 @@ +#include "linkage/inittab.h" + +struct _inittab _PyImport_Inittab[] = { + + PY_IMPORT_INITTAB_BASE, + PY_IMPORT_INITTAB_COMMON, + +#ifdef PY_ALL_STATIC + PY_IMPORT_INITTAB_ANYOS_CORE, +#endif + +#ifdef PY_FOR_PYCOMPILE + PY_IMPORT_INITTAB_PYCOMPILE_CORE, +#endif + + {0, 0} +}; diff --git a/config/midipix/config.mk b/config/midipix/config.mk new file mode 100644 index 0000000..e9c672d --- /dev/null +++ b/config/midipix/config.mk @@ -0,0 +1,26 @@ +# platform +PYTHON_PATH = +PYTHON_PLATFORM = midipix + + +# extensions: built-in +CONFIG_SRCS = $(CONFIG_DEFAULT_SRCS) + + +# extensions: dynamic loading +DYNLOAD_SRCS = \ + core/Python/dynload_shlib.c \ + + +# extensions: desired subsets +include $(PROJECT_DIR)/profiles/pyexts/subsets.mk + +PYEXT_SHARED = \ + $(PYEXT_SUBSET_SHARED_ANYOS_CORE) \ + +PYEXT_STATIC = \ + $(PYEXT_SUBSET_STATIC_ANYOS_CORE) \ + + +# strict shared object generation +LDFLAGS_STRICT += -Wl,-no-undefined diff --git a/config/midipix/pyconfig.h b/config/midipix/pyconfig.h new file mode 100644 index 0000000..2a93226 --- /dev/null +++ b/config/midipix/pyconfig.h @@ -0,0 +1,10 @@ +#ifndef PY_PYCONFIG_H +#define PY_PYCONFIG_H + +#include "osapi/modern.h" +#include "osapi/midipix.h" + +/* cf. Modules/posixmodule.c */ +#define HAVE_BROKEN_NICE 1 + +#endif |