Dev C Won't Compile

I downloaded wxDev-cpp and installed all the updates. I created an empty wx gui project and tried to compile it. Got a very long list of compiler errors. I'm using winxp sp2. Here's a short sample of the compiler log I got. Any ideas?
  1. Dev C++ Build Error
  2. Dev C++ Won't Compile
  3. Dev C++ Won't Compile

  • Bloodshed Dev-C is a full-featured Integrated Development Environment (IDE) for the C/C programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C can also be used in combination with Cygwin or any other GCC based compiler.
  • Nov 10, 2016  Dev-C is an integrated development environment (IDE) for the C programming language. It presents a feature-rich environment, tools for writing and debugging, as well as a compiler to provide you with all the tools necessary to program software in C.The program is a fork of the Bloodshed Dev-C environment, designed for advanced programmers looking to.
  • Sep 25, 2013  Why wont my program compile, and run? I am in c college class, and it is a homework assignment. My code is below, but it wont compile, can someone help me? Edit 2: you're using Dev C. That's very likely the cause of your problem. I suggest you get MinGW or GCC and use that. It's one of the few compilers to actually be C 11 compilant.
Compiler: Default compiler

Apr 10, 2003  I like Dev C, But every graphics tutorial and Fmod tutorial i get for it won't compile. Some tutorial, huh? Anyway, what i like alot about it, is the fact that one can make a default source code NO MORE TYPING. Tagged with notepad, compile, c, cpp. How to compile and run C/C (using MinGW or Visual C as compilers) using Notepad. Skip to content. Write a post. Sign In/Up Via Twitter Via GitHub. All about DEV. Compile and run C/C code using Notepad. DEV hosts thousands of valuable blog posts and discussions.


Building Makefile: 'C:Dev-CppfirsttryMakefile.win'
Executing make...
make.exe -f 'C:Dev-CppfirsttryMakefile.win' all
g++.exe -D__DEBUG__ -c main.cpp -o main.o -I'c:/dev-cpp/include/c++/3.3.1' -I'c:/dev-cpp/include/c++/3.3.1/mingw32' -I'c:/dev-cpp/include/c++/3.3.1/backward' -I'c:/dev-cpp/lib/gcc-lib/mingw32/3.3.1/include' -I'c:/dev-cpp/include' -g3

Dev C++ Build Error

In file included from c:/dev-cpp/include/wx/wx.h:15,
from main.cpp:5:
c:/dev-cpp/include/wx/defs.h:320: error: redeclaration of C++ built-in type `
bool'
In file included from c:/dev-cpp/include/wx/debug.h:17,
from c:/dev-cpp/include/wx/defs.h:468,
from c:/dev-cpp/include/wx/wx.h:15,
from main.cpp:5:
c:/dev-cpp/include/wx/wxchar.h:429:6: #error 'Please define string case-insensitive compare for your OS/compiler'
In file included from c:/dev-cpp/include/wx/memory.h:20,
from c:/dev-cpp/include/wx/object.h:20,
from c:/dev-cpp/include/wx/wx.h:16,
from main.cpp:5:
c:/dev-cpp/include/wx/string.h:170:4: #error 'Please define string case-insensitive compare for your OS/compiler'
In file included from c:/dev-cpp/include/wx/memory.h:20,
from c:/dev-cpp/include/wx/object.h:20,
from c:/dev-cpp/include/wx/wx.h:16,
from main.cpp:5:
c:/dev-cpp/include/wx/string.h:419: error: `char wxString::operator[](unsigned
int) const' and `char wxString::operator[](unsigned int) const' cannot be
overloaded
c:/dev-cpp/include/wx/string.h:423: error: `char& wxString::operator[](unsigned
int)' and `char& wxString::operator[](unsigned int)' cannot be overloaded
In file included from c:/dev-cpp/include/c++/3.3.1/backward/iostream.h:31,

Dev C++ Won't Compile


from c:/dev-cpp/include/wx/memory.h:33,

Dev C++ Won't Compile


from c:/dev-cpp/include/wx/object.h:20,
from c:/dev-cpp/include/wx/wx.h:16,
from main.cpp:5:
c:/dev-cpp/include/c++/3.3.1/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated.
In file included from c:/dev-cpp/include/wx/gdicmn.h:29,
Okay this is a first for me. My code compiles absolutely fine with no errors what so ever. But when I click 'Run' or 'Compile & Run', the little command window pops up but the output never appears? The command window tries to load the code for about 5 seconds and then it gives up, when usually it takes about 1 second to see my output.
After it tries to load, the command window stays scrolled down all the way at the bottom. Usually the code appears at the very beginning of the command window, so when I tried to scroll up, the side bar immediately pulls itself down.
I have made 9 different programs over the past 5 months and every single one of them runs fine except this one.
What I am doing in my code, is creating a class. This class is using methods to add, subtract, and multiply matrices. Assuming my code is fine, why is Dev C++ doing this?
I'd post my code, but it compiles without a hitch and it's 300+ lines of code. I'm sure nobody wants to read that much into this.
Does anyone know why this happening?
P.S. I don't even get the 'Press any key to continue....' that usually appears after your output in the command prompt window, even after waiting five minutes.