Hey, I'm having some trouble getting C::B to compile anything. I'm on Windows XP using the GNU GCC Compiler. I just uninstalled and reinstalled all of C::B after having trouble getting it to work previously. I have some experience using Dev-Cpp and i'm trying to switch over. Here's my code:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
I switched the compiler log settings to full command line and the error is:
mingw32-g++.exe -o bin\Debug\HelloWorld.exe obj\Debug\main.o C:\SDL\Win32Lib\lib\SDL.lib
mingw32-g++.exe: C:\SDL\Win32Lib\lib\SDL.lib: No such file or directory
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings
I don't understand why i'm getting an error related to SDL because I'm not even using SDL. Can you help?