I am trying to compile my code that uses the Eigen library but I am having some difficulties. I have compiled and run my program in Visual Studio 2017 with no problems, but since I have to implement this code on some piece of hardware (namely Xilinx ZedBoard that runs Linux OS) I am trying to compile the same code in Xilinx SDK.
When trying to do that I get this error: fatal error: split_test_helper.h: No such file or directory I also get this error when building the project with Xilinx SDK - make: ***[eigen-eigen-323c052e1731/unsupported/test/subdir.mk:275:eigen- eigen-323c052e1731/unsupported/test/BVH.o] Error 1
I am aware that split_test_helper.h file should be generated as it says in CMakeLists.txt but I guess it does not in the case of Xilinx SDK, but does in the case of compiling with Visual Studio.
Any help is appreciated, thank you.
Also I should maybe mention that I managed to compile and run the code from Linux terminal on a virtual box Linux OS from my computer using g++.