Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
lib_mic_array change log
========================

UNRELEASED
----------

* ADDED: Support for XCommon CMake build system

4.5.0
-----

Expand Down
13 changes: 13 additions & 0 deletions lib_mic_array/lib_build_info.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
set(LIB_NAME lib_mic_array)
set(LIB_VERSION 4.5.0)
set(LIB_INCLUDES api src/fir)

# Want to exclude src/fir/make_mic_dual_stage_3_coefs.c
# There are no other C source files, so set an empty string.
set(LIB_C_SRCS "")

set(LIB_DEPENDENT_MODULES "lib_xassert"
"lib_logging"
"lib_dsp")

XMOS_REGISTER_MODULE()
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
# pip-install this one as editable using this repository's setup.py file. The
# same modules should appear in the setup.py list as given below.
flake8==3.8.3
# Pin importlib-metadata to <5 due to https://github.com/python/importlib_metadata/issues/409.
importlib-metadata==4.13.0

matplotlib==3.3.1

# Pin numpy to 1.18.5 due to tensorflow v2.1.1 hard pinning it to that version.
Expand Down