Error Code -1073741515 When Using EDITBIN

后端 未结 3 1195
醉梦人生
醉梦人生 2020-12-21 18:45

I\'m using EditBin to increase the stack size of an application I\'m writing. I have this in the post-build event command line for Visual Studio:

"C:\\Pr         


        
3条回答
  •  长情又很酷
    2020-12-21 19:32

    I had the same issue, how I resolved it:

    Ran msbuild.exe /t: from a VS2010 command prompt, where is your solution name and is the project you are trying to build. For e.g. msbuild.exe helloworld.sln /t:mainproj.

    When you do this or at least when I ran this, a dialog box popped up and said "foo.dll" cannot be found, I added the path of that dll to my "PATH" environment variable and the problem was solved! See ChrisF's comment to the question, as it says, the error is that some dll/component is missing.

    From the dll name it complained about, I believe this is not contained to VS2010 libs/dlls, for me it was a third-party dll (which I am using and supposed to be available during the build) it was complaining about.

提交回复
热议问题