Hi, I used the default command to create a project and successfully built a it with ./rebuild-host.sh. After that, I modify my code and try to rebuild that by
> cd hbuild/ && make
But an error happened and the `make` just stuck (no CPU use, nothing was being compiled). I have to terminate it with Ctrl+C:
[ 50%] Built target jevoisnn
[ 66%] Generating ../src/Modules/Mnist/modinfo.yaml, ../src/Modules/Mnist/modinfo.html
error: Tag file `/jevois/doc/jevois.tag' does not exist or is not a file. Skipping it...
find: ‘../../../include/jevoisbase/Components/’: No such file or directory
^CCMakeFiles/modinfo_Mnist.dir/build.make:61: recipe for target '../src/Modules/Mnist/modinfo.yaml' failed
make[2]: *** [../src/Modules/Mnist/modinfo.yaml] Interrupt
CMakeFiles/Makefile2:174: recipe for target 'CMakeFiles/modinfo_Mnist.dir/all' failed
make[1]: *** [CMakeFiles/modinfo_Mnist.dir/all] Interrupt
Makefile:127: recipe for target 'all' failed
make: *** [all] Interrupt
Immediately after that, I can compile it by typing `make` again. Everything is okey this time, which is wired.
I didn't use jevoisbase in my project. I built my components into a library called jevoisnn. But as the log displayed, the makefile still tried to locate ../../../include/jevoisbase/Components/’.
I surmise that there is something in CMakeList might cause this problem. I am looking forward to your reply.