No file tw-memory.c
Hello everyone! I am trying to intsall ROSS, but some files are missing.
When I run cmake3 ../ROSS I got an error:
CMake Error at core/CMakeLists.txt:146 (ADD_LIBRARY): Cannot find source file:
tw-memory.c
Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm .hpp .hxx .in .txx
CMake Error at core/CMakeLists.txt:146 (ADD_LIBRARY): No SOURCES given to target: ROSS
Where can I find the tw-memory.c file?
Thank you!
You don't need that file; it's been removed because it was an old feature that no longer worked. I did forget to remove the ROSS_MEMORY option from Cmake, but you can still build without it anyway. By default, it's set to not build the ROSS memory component, so you should not turn that on. So in ccmake either set ROSS_MEMORY to OFF or remove it from the command that you used with Cmake. (So I'm assuming you did something like cmake -DROSS_MEMORY=ON ../ROSS).
If you update ROSS now to v7.1.1, you won't need to worry about accidentally setting this option anymore.