Tagged Questions

MinGW (Minimalist GNU for Windows) is a native software port of the GNU Compiler Collection (GCC) and GNU Binutils for use in the development of native Microsoft Windows applications.

learn more… | top users | synonyms

68
votes
11answers
18k views

What is the difference between Cygwin and MinGW?

I want to make my C++ project cross platform, and I'm considering using Cygwin/MinGW. But what is the difference between them ? Another question is whether I will be able to run the binary on a ...
24
votes
16answers
2k views

Solving random crashes

I am getting random crashes on my C++ application, it may not crash for a month, and then crash 10 times in a hour, and sometimes it may crash on launch, while sometimes it may crash after several ...
17
votes
5answers
347 views

Standard library containers producing a lot of copies on rvalues in GCC

I'm writing a app for both linux & windows, and noticed that the GCC build is producing a lot of useless calls to the copy constructor. Here's an example code to produce this behavior: struct A ...
14
votes
2answers
3k views

playing with GCC 4.6 on windows

I am very pleased to find out that GCC 4.6 supports the range-based for loop. I found an experimental release of MinGW 4.6 on xvidvideo.ru, is that a well-known, reliable website? What other options ...
13
votes
1answer
2k views

How to build LLVM using GCC 4 on Windows?

I have been able to build LLVM 2.6 (the llvm-2.6.tar.gz package) using MinGW GCC 3.4.5. I haven't tested properly, but it seems to work. The trouble is, I have libraries of my own which don't build ...
13
votes
10answers
17k views

Undefined reference to vtable. Trying to compile a Qt project

I'm using Code::Blocks 8.02 and the mingw 5.1.6 compiler. I'm getting this error when I compile my Qt project: C:\Documents and Settings\The Fuzz\Desktop\GUI\App_interface.cpp|33|undefined ...
13
votes
4answers
17k views

Adding gdb to MinGW

I've gone to http://sourceforge.net/project/showfiles.php?group_id=2435, downloaded the Automated MinGW Installer for MinGW 5.1.4 and at the same time the GNU Source-Level Debugger Release Candidate: ...
12
votes
8answers
6k views

Why does my QT4.5 app open a console window under Windows?

I've been playing around with Qt Creator 4.5 under Linux. My application builds just fine under Linux, but if I build in Windows, the app always opens a console window at startup. Can I stop it doing ...
11
votes
4answers
308 views

Why would the size of a packed structure be different on Linux and Windows when using gcc?

In the code below, why is the size of the packed structure different on Linux and Windows when compiled with gcc? #include <inttypes.h> #include <cstdio> // id3 header from an mp3 file ...
11
votes
6answers
2k views

How to enable experimental C++11 concurrency features in MinGW?

When trying to compile the following code #include <thread> #include <iostream> void foo() { std::cout << "foo\n"; } int main() { std::thread t(foo); t.join(); } I get an ...
11
votes
4answers
727 views

Why does Mingw exist?

MSYS and UNIX-like build systems apart; why does Mingw exist? What I mean is, why isn't win32/64 just another target available in "vanilla GCC"? Are there technical reasons for this or are they ...
11
votes
4answers
4k views

what is “stack alignment”?

What is stack alignment? Why is it used? Can it be controlled by compiler settings? The details of this question are taken from a problem faced when trying to use ffmpeg libraries with msvc, ...
10
votes
1answer
948 views

Embedding binary blobs using gcc mingw

I am trying to embed binary blobs into an exe file. I am using mingw gcc. I make the object file like this: ld -r -b binary -o binary.o input.txt I then look objdump output to get the symbols: ...
10
votes
4answers
6k views

From MinGW static library (.a) to Visual Studio static library (.lib)

I'm trying to use xlsLib (http://xlslib.sourceforge.net/) for creating Excel spreadsheets from a C++ application. The trouble is that compiling xlsLib, I give a .a file (a GCC static library, ...
9
votes
3answers
3k views

Using GCC's C++0x mode in production?

Is anyone using the GCC 4.4.0 C++0x support in production? I'm thinking about using it with the latest MinGW, but I'm not sure if it's mature enough. I'm interested in: TR1 support auto initializer ...
8
votes
3answers
2k views

Combining mingw and git

I have installation of MinGW in D:\mingw. I have Git installation in C:\Program Files\git. I want to develop/compile using MinGW and use git for versioning. I guess I have to use correct paths but ...
8
votes
1answer
746 views

Crash reporting for MinGW applications

I have a c++ application compiled with MinGW for which I've been receiving crash complaints from customers. So, besides heavily logging in the parts that might be crashing (before releasing a new ...
8
votes
1answer
916 views

Exception handling doesn't work with Qt on Windows

I'm facing strange problem. Namely, Qt somehow turns off exception handling in my program. I can't catch any exception, and when I throw an exception application crashes. I'm using Qt 4.7.0 (32 bit) ...
8
votes
2answers
665 views

Input redirection in gdb (MinGW)

I'm trying to get gdb to run programs with input redirection to stdin. For example, without gdb I would run a program like this: prog < input.txt Now in gdb, the usual way to do this is run < ...
8
votes
6answers
706 views

When main is defined without parameters, will argc and argv still be present on the stack?

Consider the very simple: int main(void) { return 0; } I compiled it (with mingw32-gcc) and executed it as main.exe foo bar. Now, I had expected some sort of crash or error caused by a main ...
8
votes
2answers
470 views

Globbing with MinGW on Windows

I have an application built with the MinGW C++ compiler that works something like grep - acommand looks something like this: myapp -e '.*' *.txt where the thing that comes after the -e switch is a ...
8
votes
6answers
501 views

C++ Output evaluation order with embedded function calls

I'm a TA for an intro C++ class. The following question was asked on a test last week: What is the output from the following program: int myFunc(int &x) { int temp = x * x * x; x += 1; ...
8
votes
10answers
14k views

Checking available stack size in C

I'm using MinGW with GCC 3.4.5 (mingw-special vista r3). My C application uses a lot of stack so I was wondering is there any way I can tell programatically how much stack is remaining so I can ...
7
votes
5answers
206 views

Short-circuiting on boolean operands without side effects

For the bounty: How can this behavior can be disabled on a case-by-case basis without disabling or lowering the optimization level? The following conditional expression was compiled on MinGW GCC ...
7
votes
1answer
2k views

Compiling with cython and mingw produces gcc: error: unrecognized command line option '-mno-cygwin'

I'm trying to compile a python extension with cython in win 7 64-bit using mingw (64-bit). I'm working with Python 2.6 (Active Python 2.6.6) and with the adequate distutils.cfg file (setting mingw as ...
7
votes
3answers
316 views

sizeof(struct) returns unexpected value

This should be simple but I have no clue where to look for the issue: I have a struct: struct region { public: long long int x; long long int y; long long int width; long long int ...
7
votes
6answers
8k views

gcc: CreateProcess: No such file or directory

I am getting this error whenever I try to run GCC outside of it's installation directory (E:\MinGW\bin). So, lets say I am in E:\code and have a file called one.c. Running: gcc one.c -o one.exe will ...
7
votes
1answer
2k views

Code Blocks, Mingw, Boost, and static linking issues

I am using Code Blocks with mingw and am trying to get a simple program to compile with static linking. I have build the boost libraries using these directions. Everything worked out fine and i was ...
7
votes
7answers
433 views

Costs and benefits of Linux-like Windows development environment

I'm taking an Introduction to C++ this semester, so I need to set up development environments in both my Windows and Ubuntu partitions (I switch between them). I was planning to use GCC in both ...
6
votes
3answers
208 views

“Compiler threading support is not turned on.”

Normally I can google my way around and find solutions, but not this time. I'm using 64 bit Linux Ubuntu 11.04 to compile a 32 bit windows application. I'm using i586-mingw32msvc-gcc to compile my ...
6
votes
2answers
167 views

2 Identical Programs; Only 1 asks for elevation

I am having an interesting problem when compiling my programs on win32 (mingw). I have 2 identical projects, both created in C::B. When compiling one, it runs just fine without requiring elevated ...
6
votes
2answers
673 views

Python extensions for Win64 via GCC

Has anyone had any luck with compiling 64-bit Python extension modules for Windows using mingw64? I have successfully compiled the extension in question with VS2008 for this platform. I've also ...
6
votes
4answers
5k views

Eclipse CDT using MinGW does not output in console

I have a Windows 7 64-bit PC and I am trying to install a free C++ IDE, so I chose to install Eclipse Helios with CDT. For g++, make and gdb I installed msys and mingw according to this tutorial: ...
6
votes
1answer
950 views

What configure options were used when building gcc / libstdc++?

After reading about the problem of passing empty std::string objects between DLLs and EXEs, I am concerned about the configure options used to build my gcc / libstdc++. More specific I want to know if ...
6
votes
9answers
959 views

Best way to setup a Windows build environment for C/C++

Basically I want to compile C/C++ using the GCC on Windows. The two competing platforms, as i see it, are MinGW and Cygwin. Each have their own benifits and limitations. MinGW compiles for Windows, ...
6
votes
3answers
4k views

How to use the Windows API in MinGW?

How to use the Windows API in MinGW?
6
votes
4answers
2k views

Multithreaded Windows service in MingW

I am trying to build a Windows service with MingW. It need thread safe exceptions, so I added the linker flag -mthreads. The application works fine from the command-line, but when I try to start it ...
6
votes
4answers
2k views

Why is MinGW very slow?

I'm using Code::Blocks IDE with Gcc/minGW on Windows and I'm trying to build a wxWidgets application which has ca. 20k lines and 40 source modules. And it builds very very slow. Compiling a cpp module ...
6
votes
2answers
4k views

How do I add an icon to a mingw-gcc compiled executable?

In Windows, using mingw's gcc, is there anyway to specify that the output exe file is to take an icon file, so that the exe file shows with that icon in explorer?
6
votes
2answers
2k views

Qt Application fails spectacularly

I'm trying to link a Qt application with its libraries and the linker (MinGW) spews hundreds of lines like the following, and I am unsure how to proceed. cpp: undefined reference to ...
5
votes
1answer
111 views

Boost ptime under MinGW not thread safe

I have a problem with boost library. I'm using MinGW with gcc 4.5.2 to compile the following code: unsigned long GetEpochSeconds() { using namespace boost::posix_time; using namespace ...
5
votes
0answers
185 views

Is this interface binary compatible between MSVC and mingw?

I am working on a library that allows its users (other libraries residing in the same process) to exchange data buffers and streams. The library has to be usable from both MSVC and mingw code (more ...
5
votes
1answer
638 views

Using msysGit from MinGW and vice versa

I am using git as my revision control system. To do so, I installed msysGit to checkout my repositories on MSW. Now I want to compile my programs with MinGW and found this "problem" for me: When I ...
5
votes
1answer
2k views

C++0x with Qt Creator

I'm trying to use new C++0x features in Qt Creator under Windows (Qt Creator 2.0.1). I read the thread Configuring the GCC compiler switches in Qt, Qt Creator, and QMake and added QMAKE_CXXFLAGS += ...
5
votes
7answers
2k views

C++ : Catch a divide by zero error

Here is a simple piece of code where a division by zero occurs. I'm trying to catch it : #include <iostream> int main(int argc, char *argv[]) { int Dividend = 10; int Divisor = 0; ...
5
votes
3answers
495 views

Statically linked, correctly working readline library under windows?

we're developing a c++ software package which depends on the GNU readline library and we usually build using gcc (requiring at least version 4). Now we would like to port this to windows, obtaining a ...
5
votes
2answers
1k views

Trying to install MinGW and Tk for Perl on Windows 7

So... I have been trying to get this working for several weeks now. I can install MinGW through the .exe, but no-matter what I do I can't seem to get make support or ppm install MinGW to work in such ...
5
votes
4answers
4k views

Linking to MSVC DLL from MinGW

I'm trying to link the LizardTech GeoExpress DSDK into my own application. I use gcc so that we can compile on for platforms. On Linux and Mac this works easily: they provide a static library ...
5
votes
5answers
811 views

Opening Large (24 GB) File In C

I'm trying to read in a 24 GB XML file in C, but it won't work. I'm printing out the current position using ftell() as I read it in, but once it gets to a big enough number, it goes back to a small ...
5
votes
4answers
4k views

C++ compiler error in netbeans

I've tried everything from reading the Netbeans help to browsing Google. This code works fine in Dev-Cpp but not Netbeans 6.5.1. Netveans also places and exclamation mark next to #include ...

1 2 3 4 5 20