pyodide/cpython/Setup.local

68 lines
2.6 KiB
Plaintext
Raw Normal View History

2018-02-27 22:57:22 +00:00
# This file gets copied into the Modules/ folder when building
# newlib configurations which do not support dynamic library
# loading.
#
# See build/Python-*/Modules/Setup for more details
2018-02-27 22:57:22 +00:00
*static*
array arraymodule.c # array objects
math mathmodule.c _math.c # -lm # math library functions, e.g. sin()
2018-04-09 14:39:52 +00:00
cmath cmathmodule.c # complex math functions
2018-07-18 13:26:18 +00:00
_contextvars _contextvarsmodule.c
2018-02-27 22:57:22 +00:00
_struct _struct.c # binary structure packing/unpacking
_random _randommodule.c # Random number generator
_bisect _bisectmodule.c # Bisection algorithms
2018-03-20 22:58:59 +00:00
_datetime _datetimemodule.c
_heapq _heapqmodule.c
2018-02-27 22:57:22 +00:00
_json _json.c
2018-03-20 22:58:59 +00:00
_csv _csv.c
2018-04-09 14:39:52 +00:00
unicodedata unicodedata.c
2018-04-09 19:52:47 +00:00
_pickle _pickle.c
parser parsermodule.c
2018-04-09 14:39:52 +00:00
_socket socketmodule.c
select selectmodule.c
_posixsubprocess _posixsubprocess.c
2018-02-27 22:57:22 +00:00
binascii binascii.c
zlib zlibmodule.c
2018-02-27 22:57:22 +00:00
2018-04-09 19:52:47 +00:00
pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI -DXML_POOR_ENTROPY
2018-02-27 22:57:22 +00:00
_sha1 sha1module.c
_sha256 sha256module.c
_sha512 sha512module.c
2018-03-20 22:58:59 +00:00
_sha3 _sha3/sha3module.c
2018-02-27 22:57:22 +00:00
_md5 md5module.c
2020-12-07 23:19:16 +00:00
_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c
2018-07-18 13:26:18 +00:00
# If we put this directly in the next line, makesetup incorrectly views the
# line as a definition line, instead of specifying a module. We bypass this
# problem by defining an extra variable that contains the =, and this line is
# correctly viewed as a definition line. We need extra quotes to make gcc think
# we want to define MODULE_NAME to be the string "sqlite" instead of the
# abstract symbol sqlite.
SQLITEMODULENAME=MODULE_NAME=\'"sqlite"\'
_sqlite3 _sqlite/cache.c _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c -D$(SQLITEMODULENAME) -lsqlite3
2019-04-04 17:55:15 +00:00
_crypt _cryptmodule.c
_bz2 _bz2module.c -lbz2
2018-07-18 13:26:18 +00:00
_queue _queuemodule.c
2018-02-27 22:57:22 +00:00
#future_builtins future_builtins.c
_multibytecodec cjkcodecs/multibytecodec.c
_codecs_cn cjkcodecs/_codecs_cn.c
_codecs_hk cjkcodecs/_codecs_hk.c
_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
_codecs_jp cjkcodecs/_codecs_jp.c
_codecs_kr cjkcodecs/_codecs_kr.c
_codecs_tw cjkcodecs/_codecs_tw.c
2018-11-08 20:20:53 +00:00
_lsprof _lsprof.c rotatingtree.c
2019-02-25 14:25:02 +00:00
_decimal _decimal/_decimal.c _decimal/libmpdec/basearith.c _decimal/libmpdec/constants.c _decimal/libmpdec/context.c _decimal/libmpdec/convolute.c _decimal/libmpdec/crt.c _decimal/libmpdec/difradix2.c _decimal/libmpdec/fnt.c _decimal/libmpdec/fourstep.c _decimal/libmpdec/io.c _decimal/libmpdec/memory.c _decimal/libmpdec/mpdecimal.c _decimal/libmpdec/numbertheory.c _decimal/libmpdec/sixstep.c _decimal/libmpdec/transpose.c -I$(srcdir)/Modules/_decimal/libmpdec
2019-06-19 00:55:28 +00:00
mmap mmapmodule.c