23 Jun
2015
23 Jun
'15
noon
Paul A. Bristow wrote:
I:\modular-boost\libs\fixed_point\example>clang++ --version clang version 3.6.1 (tags/RELEASE_361/final) Target: i686-pc-windows-gnu Thread model: posix ...
This suggests that it is not finding the system file <iostream> ...
clang++ under Windows uses the MinGW installation of libstdc++ and has a list of hardcoded paths in which it looks for it. If you have MingGW in c:\mingw it usually works, but try compiling a source file with clang++ -v test.cpp and it should output its search list and you would hopefully be able to see what's wrong.