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.
|
|
|
|
|
|
|
|
*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
|
|
|
|
|
2018-07-18 13:26:18 +00:00
|
|
|
zlib zlibmodule.c -I../../zlib-1.2.11
|
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
|
2018-07-18 13:26:18 +00:00
|
|
|
_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c ../../host/Python-3.7.0/Modules/_blake2/blake2s_impl.c
|
|
|
|
|
2019-03-26 12:44:21 +00:00
|
|
|
_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 -I$(SQLITEBUILD) -L$(SQLITEBUILD) -lsqlite3
|
2019-04-04 17:55:15 +00:00
|
|
|
_crypt _cryptmodule.c
|
2019-03-26 12:44:21 +00:00
|
|
|
|
2018-07-18 13:26:18 +00:00
|
|
|
_queue _queuemodule.c
|
2018-02-27 22:57:22 +00:00
|
|
|
|
|
|
|
#future_builtins future_builtins.c
|
2018-07-18 22:27:48 +00:00
|
|
|
|
|
|
|
_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
|