Closed fzeiser closed 3 years ago
It turns out that there were some "cached" files, probably in the ScannerBit
directory. The first time I tried to compile was without the compiler flags: CMAKE_CC_COMPILER
and it automatically selected GCC (etc). I wanted to compile with intel compilers instead (hoping that the executable will be faster).
I deleted the build
folder, but not the files in the other folders, like ScannerBit/download
etc. So some previously compiles files probably still were around. Thus I got the error message above. Was able to solve it with:
git clean -xfd
(To remove ignored files and directories) helped to "reset" the repo. [attention!]
Now building works.
Reveived puzzling error message due to files that were downloaded/compiled but in build directory.