-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VS2015 Unable to build in Debug mode #1820
Comments
Official releases are made using I can confirm there is a problem using |
Ok thanks. I tried running the samples built with VS2015 and they didn't seem to run properly either, so something is not building right. I don't have VS2013 installed anymore :( |
You can use the https://github.com/cefsharp/CefSharp.MinimalExample for testing |
Yep, I have been using that. |
When
Should be
Upgrading to newer Changes are required to https://github.com/cefsharp/cef-binary/blob/master/build.ps1#L226 Would be best fixed in |
Relevant changes to Can likely just disable sandbox and our builds will work as expected. |
Changes will take effect soon as I upload the next set of packages - should be today sometime. |
|
Awesome |
Former-commit-id: da51fe8501eb797872278a60e63f9014549a42ef
Former-commit-id: da51fe8501eb797872278a60e63f9014549a42ef
Can't seem to find anything about this but when I loaded the project into VS2015 and did a full build, it fails on CefShare.Core with a bunch of errors like this:
Severity Code Description Project File Line Suppression State
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AssemblyInfo.obj CefSharp.Core C:\src\git\CefSharp\CefSharp.Core\libcef_dll_wrapper.lib(cef_stream_resource_handler.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in AssemblyInfo.obj CefSharp.Core C:\src\git\CefSharp\CefSharp.Core\libcef_dll_wrapper.lib(cef_stream_resource_handler.obj) 1
Doing a Google search I found this article which indicates that this is caused by linking debug binaries with release ones for the C++ code, so I changed to release mode and rebuilt and it worked fine.
Is there some reason the project does not compile properly in debug mode and how do we fix it?
The text was updated successfully, but these errors were encountered: