Search code examples
visual-studio-2015ssrs-2008reportbuilder3.0

Visual studio 2015 returns a native compiler error


I am having a similar issue to a thread I found on here:

VS 2015 Native compiler return value -1073741511 on .rdlc files when building project The difference is that my error is coming up on only 1 of 180 machines that my app is installed on. My "native Compiler Code" is '-2147024770'. After Googling around for a bit, I was unable to find anything on that code number. Here is a pic of the whole error I get:

enter image description here

I am hoping that the guy that found the solution to the above link sees this and shares how he found the fix, so I can apply it to my error code.


Solution

  • From this free tool here (Magical Number Database, I'm the author) http://www.magnumdb.com/search?q=1073741511+OR+2147024770, I found these errors are ERROR_MOD_NOT_FOUND and STATUS_ENTRYPOINT_NOT_FOUND.

    So there is probably a binary (dll, exe, etc.) version mismatch on your machine. First, I would try to repair the program in question. Otherwise you can use forensics tools like sysinternals Process Monitor (and focus on the File filter) or .NET Fuslogvw.exe (Assembly Binding Log Viewer) to check what's going on at file and binding level. There is also the standard Windows event viewer that can help.