It seems to not interfere, like - callous eyes. Maybe it really affects something, for good reason it is varning:

BSCMAKE : warning BK4503: minor error in .SBR file '%filepath%' ignored

I was looking for answers on different resources, but alas. For example, here . On MSDN, in general, only recompile from the instructions, and this does not help. I have Visual Studio 2015. So far in Debug mode.

How to get rid?


Command line С / С ++:

 /Yu"stdafx.h" /FR"x64\Debug\" /GS /W3 /Zc:wchar_t /ZI /Gm /Od /sdl /Fd"x64\Debug\vc140.pdb" /Zc:inline /fp:precise /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_LIB" /D "_UNICODE" /D "UNICODE" /errorReport:prompt /WX- /Zc:forScope /RTC1 /Gd /MDd /Fa"x64\Debug\" /EHsc /nologo /Fo"x64\Debug\" /Fp"x64\Debug\Yarnet.pch" 

Linker command line:

 /OUT:"C:\Users\804097\Desktop\VS\Yarnet\x64\Debug\Yarnet.exe" /MANIFEST /NXCOMPAT /PDB:"C:\Users\804097\Desktop\VS\Yarnet\x64\Debug\Yarnet.pdb" /DYNAMICBASE "opencv_world310d.lib" "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /MACHINE:X64 /INCREMENTAL /PGD:"C:\Users\804097\Desktop\VS\Yarnet\x64\Debug\Yarnet.pgd" /SUBSYSTEM:CONSOLE /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /ManifestFile:"x64\Debug\Yarnet.exe.intermediate.manifest" /ERRORREPORT:PROMPT /NOLOGO /LIBPATH:"D:\opencv\build\x64\vc14\lib" /TLBID:1 
  • Does the warning occur despite the installation of Preserve SBR Files in No (from the response to the link mentioned)? - αλεχολυτ
  • @alexolut, yes, if it were decided in this way, I would not ask such a question. - brenoritvrezorkre
  • Manually tried to delete files? Is the project generally big? Can this be repeated from scratch? - αλεχολυτ
  • @alexolut, as far as I know, "clean up the solution" clears everything except the log files. That is, and .sbr too. These .sbr files are generated by the compiler each time, so cleaning does not mean anything special in this case. The project is large enough for me personally, and it will be difficult to transfer it to a new one. - brenoritvrezorkre
  • 2
    @brenoritvrezorkre, For the generation of .sbr files meets the / FR flag, in the studio it is Properties - C / C ++ - Browse Information, this option generates .sbr files based on each .obj file, which can then conveniently match the characters with the source code. MSDN says that this is most often seen when using stdafx.h paired with rtti (/ GR). Theoretically, this should save the full project rebuild, before making the following edits to the code). If the eyes get sore, you can turn it off, there won't be much harm to the project. - goldstar_labs

0