Hi all,
I had a problem compiling the mmx files with build_mmx.m Script.
Error Code:
...Cortexsys\nn_core\mmx\mmx.cpp:79:16: error: expected initializer before 'teval'
DWORD _stdcall teval(void* pn)
Fix:
In File mmx.cpp Line 79 add a double underscore to stdcall:
L79: DWORD __stdcall teval(void* pn)
Hope this helps :)