Add Urandom module in Python

This commit is contained in:
MaxBzh
2017-12-29 00:34:16 +01:00
committed by EmilieNumworks
parent cd93f827c1
commit 4011290e7a
12 changed files with 319 additions and 7 deletions

View File

@@ -138,6 +138,11 @@ py_objs = $(addprefix python/src/py/,\
py_objs += python/src/py/emitnative.o
python/src/py/emitnative.o: CFLAGS += -DN_THUMB
extmod_objs += $(addprefix python/src/extmod/,\
modurandom.o \
)
#extmod_objs += $(addprefix python/src/extmod/,\
moductypes.o \
modujson.o \
@@ -205,4 +210,4 @@ $(py_objs) $(extmod_objs) $(port_objs): python/port/genhdr/qstrdefs.generated.h
# List all objects needed
objs += $(py_objs) $(port_objs)
objs += $(extmod_objs) $(py_objs) $(port_objs)