Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7942 Discussions

Intel 18.0 Initial Release and VS2017 /FR (Browse Information) Fails

Jose_C_1
Beginner
348 Views

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;
}


 

 

 

0 Kudos
1 Reply
jase439
Beginner
348 Views

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.

0 Kudos
Reply