Open
Description
So, some libraries have tests that run while building. Which is a problem if you're cross-compiling. I assume the issue is that the tests fail because it's built for a different architecture and the build system is trying to run it on the host.
unfortunately that disrupts the build process.
My workaround currently is that I'm doing this before I make
sed -i 's|TESTFILES|#TESTFILES|' base/Makefile
sed -i 's|TESTFILES|#TESTFILES|' matrix/Makefile
These two commands will comment the two lines that specify the tests that should be run in base and matrix (these are the ones that fail on my machine).
So maybe provide an option so that I can configure kaldi not to run the tests while building. That would be awesome.