dev-c++ debuging error (gdb32.exe error) - gdb

When I try to debug in dev-c++ the following error message is shown:
"I could not find a zlib1.dll"and next Emerges Messages "gdb32.exe
has stopped working".
I click the gdb,gdb32,gdbsever Emerges Error Messages
Note my operating system is Windows Vista.

Related

SFML C++ stop console from logging: "Failed to set DirectInput device axis mode: 1"

I have this problem going for a while, that when i compile a basic SFML window check the console keeps spamming the following error message
Failed to set DirectInput device axis mode: 1
Is there anyway to keep this message from spamming my console log?
I'm on windows using Visual Studio 2019.
Okay actually found the solution.
To ignore the error message you just use:
sf::err().rdbuf(NULL);

Error : Sox has exited with error code 1. How can i this error debug?

I am testing recongnize.js among Google speech api.
But now I have an error related to the Sox.
How can I debug?
it is error.
Listening, press Ctrl+C to stop.
sox has exited with error code 1.
Enable debugging with the environment variable DEBUG=record.
I've installed all of the versions 14.1.1 and 14.1.2 and entered them into $Path.
I need your help

C++ Builder 10.3.3 [ilink32 Error] Fatal: Could not open .\Win32\Debug\TabbedApplication.exe (program still running?)

In C++Builder 10.3.3, when running my application, it stops the process and pops up with an error:
Unable to create process: Access denied
I don't know why this happens, and for the life of me I can't figure out what it is talking about.
I tried to build the solution to see if the error was occurring there, and it appears this is the case. After building the solution, the compiler stops the process and a fatal error pops up:
[ilink32 Error] Fatal: Could not open.\Win32\Debug\TabbedApplication.exe (program still running?)
Does anyone know what this error means, and how to fix it?
I added a new target platform in my project in the right
I added windows 64 bit and it worked
hope it helps
I've been getting this messages for months (even with previous verions of RAD studio) and i haven't found a solution yet.
I have used a process explorer and the process is not running but if i close and reopen the IDE the file is not locked anymore.
So i think the problem it's related with the "debugger" that stills is locking the file even when the IDE stopped the debugging process.
I have tried even the "unlocker" utility but it doesn't detect any process is locking the file ...
For know we have to wait until the debugger release the file.
These is the configuration i have tried in the registry:
HKCU\Software\Embarcadero\BDS\20.0\Debugging\Embarcadero Debuggers\Evaluators
[dedfault] REG_SZ dcc32260.dll
com32x.dll REG_SZ -1
dcc32260.dll REG_SZ 0

Sublime text 2 c++ error message (No Disk)

I am running sublime text 2 on windows 8 (The build system is on c++). When I run the program, an error message says g++.exe "There is no disk in the drive. Please insert a disk into drive l:." When I click continue another error message pops up saying cc1plus.exe (Same as before), When I click continue again, another error message pops up collect2.exe (Same as before). When I click continue for the third time It runs the code correctly. Any help would be greatly appreciated!
(My compiler is MinGW)
(My text editor is sublime text 2)
(My OS is Windows 8)
(I have installed MinGW before)
Here is my code: (If that matters)
#include <iostream>
int main()
{
std::cout << "Hello World!";
return 0;
}
For clarification, after I am done with the error messages, the code RUNS and prints "Hello World!".
It appears that this is a known problem with MinGW. Specifically it is thought to be an issue in the GNU binutils gettext package. There's a bug report on it over at SourceForge:
http://sourceforge.net/p/mingw/bugs/2108/
Unfortunately however, there doesn't appear to be an ETA for the fix.

Error: not.exe has stopped working - When trying to build LLVM

I am trying to build LLVM on windows, and everytime I do so I get to a certain point and then recieve an error that says "not.exe has stopped working" It pops up on the desktop about 15 times.
I am not sure what is going on, but when I check the error in Visual Studio I receive this:
Error 4 error : Couldn't execute program 'C:/Users/Cyborg/Documents/Developer'The process cannot access the file because it is being used by another process. C:\Users\Joe\Documents\Dev\llvm\test\CUSTOMBUILD check-llvm
I receive this error 5-7 times depending on how fast I click the error that pops up on the desktop. So clearly this issue is happening because of that.
The fault module is: MSVCR100.dll
Does anyone know why this is happening?
I don't know why you're getting the error since I don't build or use LLVM on Windows. Since no one else has chimed in, I'll try to give a hint or two.
"not.exe" (or "not" under Linux) is a little LLVM helper program used when running the lit based regressions tests. It is used to execute a program and return a good exit status if the program fails and a bad exit status if the program doesn't fail.
I'm guessing that "CUSTOMBUILD check-llvm" (what ever that is) is attempting to run the regression tests and your getting your mysterious error as a result whenevr "not" is used.
I hope that helps.