This is the output I am getting and
'abc.exe': Loaded 'C:\Windows\system\glut32.dll', Binary was not built with debug information.
'
'abc.exe': Loaded 'C:\Windows\System32\glew32.dll', Binary was not built with debug information.
The thread 'Win32 Thread' (0x1710) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x16a0) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x1770) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x1708) has exited with code 1 (0x1).
The thread 'Win32 Thread' (0x1778) has exited with code 1 (0x1).
The program '[600] abc.exe: Native' has exited with code 1 (0x1).
Any idea as to how I can fix this ?
I have tried the same on VS2008 VS2010. with almost the very same result. How can I force a binary to be built ? I can't find any correct project options.
Thank you very much.
-Egon
You don't. You either need dll files already built with debug information, or link to external debug information (I doubt those exist ready for glu32 and glew32). What you're having is not an error, and should not be dealt as such.
If you have instead the source files for glut and glew, those warnings will cease to exist.
Related
I'm using MVC5 with C# application but what my problem is VS 2013 and VS 2015 immediately stops whenever I try to run the application. Output window is showing the below message:
The program '[8916] iisexpress.exe: Program Trace' has exited with code 0 (0x0). The program '[8916] iisexpress.exe' has exited with code 0 (0x0).
I have a Web Project with some typescript files but suddenly I started receiving this error message:
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript\Microsoft.TypeScript.targets(95,5): error MSB6006: "tsc.exe" exited with code 1.
1>
1>Build FAILED.
I have no idea why this started. Please Help
This question is solved in...
See these posts:
https://stackoverflow.com/a/41053281/1780318
"tsc.exe" exited with code 1
"tsc.exe" exited with code 1 when using ASP.net 4 MVC
I used Visual Studio Code 0.10.2. When I tried to run task using GNU make command, the task is failed with error messages like below. My GNU make is obtained from MSYS2 x64 (http://msys2.github.io/) and my system environment is Windows 10 Education x64.
make -C 00.BootLoader
0 [main] make 24552 D:\GNU\msys64\usr\bin\make.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
192 [main] make 24552 cygwin_exception::open_stackdumpfile: Dumping stack trace to make.exe.stackdump
0 [main] make 23968 fork: child -1 - forked process 24552 died unexpectedly, retry 0, exit code 0x100, errno 11
But when I tried same command using console window (cmd.exe), "make" works successfully. How to fix this?
I am just debugging a Windows application which is crashing. After starting the app, attaching to it with WinDbg, and then letting it crash, the following appeared in the WinDbg command window:
(119c.1794): Unknown exception - code 0000071a (first chance)
I've been searching the web but haven't found any explanation of how to interpret those exception codes.
If it makes a difference, it's a 32-bit .NET application running on 64-bit Windows 8 (via WoW64).
WinDbg already displays the name of exceptions when it knows it:
(15c0.1370): Break instruction exception - code 80000003 (first chance)
You get more details with .exr -1:
0:009> .exr -1
ExceptionAddress: 77d5000c (ntdll!DbgBreakPoint)
ExceptionCode: 80000003 (Break instruction exception)
ExceptionFlags: 00000000
NumberParameters: 1
Parameter[0]: 00000000
You can also display NTSTATUS codes as proposed by #rrirower:
0:009> !gle
LastErrorValue: (Win32) 0 (0) - The operation completed successfully.
LastStatusValue: (NTSTATUS) 0 - STATUS_WAIT_0
And these status codes can be decoded with !error. It will consider Win32, Winsock, NTSTATUS and NetApi errors:
0:009> !error 0000071a
Error code: (Win32) 0x71a (1818) - The remote procedure call was cancelled.
I am currently trying to get SDL events to work, but problem is that the program is not working.
When I ran the program; it open and closes very quickly, and the debug gave these errors:
The thread 'Win32 Thread' (0xb60) has exited with code 1 (0x1).
The thread 'Win32 Thread' (0xe00) has exited with code 1 (0x1).
The thread 'Win32 Thread' (0x628) has exited with code 1 (0x1).
The program '[868] My Project.exe: Native' has exited with code 1 (0x1).
I am using Visual Studio C++ Express Edition 2008 and the includes files are:
#include "SDL/SDL.h"
#include "SDL/SDL_image.h"
#include <windows.h>
#include <string>
The code that I'm trying to get working can be found at:
http://lazyfoo.net/SDL_tutorials/lesson04/index.php
That code is trying to load a file name "x.png". If you do not have a proper PNG file with that name in the working directory then the program will exit with an error code of 1.