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/x86_64-linux | |
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/x86_64-linux')
-rw-r--r-- | config/x86_64-linux/config.c | 19 | ||||
-rw-r--r-- | config/x86_64-linux/config.mk | 30 | ||||
-rw-r--r-- | config/x86_64-linux/pyconfig.h | 11 |
3 files changed, 0 insertions, 60 deletions
diff --git a/config/x86_64-linux/config.c b/config/x86_64-linux/config.c deleted file mode 100644 index d4d2384..0000000 --- a/config/x86_64-linux/config.c +++ /dev/null @@ -1,19 +0,0 @@ -#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, - PY_IMPORT_INITTAB_ANYOS_AUDIO, - PY_IMPORT_INITTAB_LINUX_AUDIO, -#endif - -#ifdef PY_FOR_PYCOMPILE - PY_IMPORT_INITTAB_PYCOMPILE_CORE, -#endif - - {0, 0} -}; diff --git a/config/x86_64-linux/config.mk b/config/x86_64-linux/config.mk deleted file mode 100644 index 4293b37..0000000 --- a/config/x86_64-linux/config.mk +++ /dev/null @@ -1,30 +0,0 @@ -# platform -PYTHON_PATH = -PYTHON_PLATFORM = linux2 - - -# 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_SUBSET_SHARED_ANYOS_AUDIO) \ - $(PYEXT_SUBSET_SHARED_LINUX_AUDIO) \ - -PYEXT_STATIC = \ - $(PYEXT_SUBSET_STATIC_ANYOS_CORE) \ - $(PYEXT_SUBSET_STATIC_ANYOS_AUDIO) \ - $(PYEXT_SUBSET_STATIC_LINUX_AUDIO) \ - - -# strict shared object generation -LDFLAGS_STRICT += -Wl,-no-undefined diff --git a/config/x86_64-linux/pyconfig.h b/config/x86_64-linux/pyconfig.h deleted file mode 100644 index b91d2f7..0000000 --- a/config/x86_64-linux/pyconfig.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef PY_PYCONFIG_H -#define PY_PYCONFIG_H - -#include "osapi/modern.h" -#include "osapi/linux.h" -#include "osapi/overrides.h" - -/* cf. Modules/posixmodule.c */ -#define HAVE_BROKEN_NICE 1 - -#endif |