Error:
1> icl: : warning #10210: problem with Microsoft compilation of 'BrowseInfo.cpp'
1>Done building target "ClCompile" in project "BrowseInfo.vcxproj".
1>Target BscMake:
1> BSCMAKE : error BK1506: cannot open file 'Debug\BrowseInfo.sbr': No such file or directory
1>Done building target "BscMake" in project "BrowseInfo.vcxproj" -- FAILED.
1>
1>Done building project "BrowseInfo.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
How to reproduce: Create any project and enable Browse Information and include some C++ standard headed file like #include <iostream>
Example:
// BrowseInfo.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> int main() { return 0; }
Link Copied
This is a known compatibility issue with VC2017 and the Intel C++ Compiler 17.0 (and apparently did not make the cut for 18.0 either):
https://software.intel.com/en-us/forums/intel-c-compiler/topic/737452
No known workaround is available.
For more complete information about compiler optimizations, see our Optimization Notice.