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. Unlike Cygwin, it does not provide a POSIX runtime environment on MS-Windows.

learn more… | top users | synonyms

-1
votes
0answers
48 views

C++ dynamic object member returns to garbage value after definition [closed]

I'm reconstructing this code by Legolas from C to C++. Its a 2D OpenGL font renderer. However, after changing many line of codes, text are not appearing anymore. I found out that the dynamic object ...
0
votes
0answers
15 views

How could I install libssh mingw on windows?

First of all, I have to ask to be excuted that I`m not good at speaking English. Now I need to make a program to allow sftp connection using QT. I chose to use libssh but it`s very hard to make ...
0
votes
0answers
35 views

Qt 4.7.4 and minGW 4.7.2 libs

I have 2 different projects build with MinGW 4.7.2 using CMake and I need to link these to a Qt graphical app. Qt version is 4.7.4. OS is Windows 8 64bits. The problem is that when I try to compile I ...
0
votes
0answers
3 views

Using OpenSceneGraph with Code::Blocks

I have to integrate osg into my project on code blocks. In osg web site, there is only one unanswered post. Has anyone used osg and codeblocks together?
-2
votes
3answers
62 views

How do I pass a pointer to a structure without angering the compiler?

I'm attempting to compile a simple C++ program using MinGW 4.7.2, but am frustrated by a deluge of errors and warnings. /*\ program.h \*/ typedef struct { int member0; int member1; int ...
0
votes
0answers
24 views

How to link Visual C code into mingw?

I have a large code base written to compile in MinGW. I need a function that is currently not available there, so I need to write it in Visual C++. I don't want to rewrite my build-script to compile ...
1
vote
1answer
40 views

C DLL In Code::Blocks

I can't find anything about how to make a C DLL in Code::Blocks. Whenever I try and look it up it shows links to using C++ DLLs in managed programming languages. And Code::Blocks doesn't give an ...
0
votes
1answer
51 views

compiling BUTT with mingw64 cannot convert 'char*' to ' LPWSTR {aka wchar_t*}' in assignment

I'm trying to compile BUTT (http://butt.sourceforge.net/) on windows with MingwW64. I seem to be running into errors of the type error: cannot convert 'char*' to 'LPCWSTR {aka const wchar_t*}' the ...
2
votes
0answers
27 views

Strange MinGW behaviour with OpenGL after VS2012 update

For some reason, which has only appeared today after installing the VS2012 update 2, running programs using OpenGL from the MinGW terminal results in strange rendering behaviour. If I run an ...
0
votes
1answer
21 views

Where is _g_config.h in MinGW?

I'm trying to compile a C++ project with Visual Studio 2008. The project uses G_config.h. Therefore, I installed MinGW 4.6.2 However, I cannot find G_config.h in MinGW. How can I get G_config ...
3
votes
1answer
42 views

How Do I Build Lua For Windows Using MinGW and MSYS?

I have a book called Beginning Lua Programming which is suppose to go over the raw basics but it is sort of leaving me stranded. Here is an effort to condense 3 pages: QUOTE: The following ...
1
vote
1answer
89 views

What does this message mean? [closed]

I am using code blocks for C programming , my problem is when i run the program i have made , i get this statement in the build log. -------------- Build: Debug in C assignment (compiler: GNU GCC ...
0
votes
0answers
30 views

Building a DLL with MinGW and loading it with Python's ctypes module

I am trying to build a C DLL which can be loaded within python using ctypes.windll.loadlibrary(...) I can create a DLL and a client program all in C which work following the MinGW tutorial at ...
0
votes
1answer
31 views

Build error: bad reloc address

I am trying to build IPopt with MKL blas on a 64 bit machine using MingW 64, I can go through the configure process using the command below: ../configure ADD_FFLAGS=-fopenmp ...
0
votes
1answer
42 views

MinGW: libpng won't build properly

So I need this libpng to be statically link with my dll to be used by my exe. This dll is already done before until I switch my compiler from MSVC to MinGW, then this dll won't work anymore so I think ...
0
votes
2answers
33 views

pthread_create not enough space

I'm using Pthreads with MinGW on Windows. A call to pthread_create returns a error which translates to "Not enough space". What kind of space does it refer to? Is the thread stack space? int ...
1
vote
0answers
52 views

Object file has too many sections

We am making heavy use of boost::serialization and templates in general. All seems to be going well. Except, we've hit a snag on our Windows builds. It seems to cause issues in the object files being ...
0
votes
0answers
18 views

Whats this “zlib-sgd-x86.dll is missing”

I link this libpng I downloaded in here. There are lots of it, I don't know which one should I pick so I link each one of them and finally link to the one that has no error. But when I try to run my ...
0
votes
0answers
31 views

Error while loading shared libraries, Netbeans, openCV, MinGW, Windows 7

I am getting this error on Netbeans while using OpenCV, on Windows 7 while using MinGW : /cygdrive/c/Users/(...)/dist/Debug/MinGW-Windows/cppapplication_2.exe: error while loading shared ...
1
vote
1answer
11 views

How to build libpng using mingw

I cannot find on Google any easy way to do this . I try this but make says "no target found an no makefile found. Stop". First I did was go into the directory of lpng162/scripts where I can found ...
0
votes
0answers
20 views

undefined reference to `_imp__gsl_version'

I have just finished compiling and installing gtk+ (2.24.10) gtkmm(2.17.2) gtkglext(1.2.0) and gsl(1.8) (and all the required dependencies) in windows using MinGW which are dependencies for the ...
0
votes
0answers
14 views

Parasoft “identifier ”sigjmp_buf“ is undefined”

I tried to generate a stub function in parasoft but I get an error: identifier "sigjmp_buf" is undefined Why get I this error? Can someone help me?
0
votes
0answers
28 views

Multiple Definition of every function in main.cpp

All the .h and .cpp are from http://code.google.com/p/asmlib-opencv/. I am trying to use his demo/main.cpp and i have included all the .h needed the problem is that every funcion in main.cpp has ...
4
votes
2answers
70 views

Deleting an array of objects upcasted to base pointers

started moving some libraries from msvc to mingw, and found really interesting behavior of msvc when one wants to delete an array of upcasted objects. Namely msvc does some dark magic (it seems to ...
0
votes
1answer
40 views

How to install PIL with pip+mingw in windows?

I am trying to install PIL using pip and mingw. However it fails as follows. Downloading/unpacking PIL Running setup.py egg_info for package PIL WARNING: '' not a valid package name; please use ...
1
vote
1answer
53 views

Code::Blocks w/ MinGW: statically link libpng into a dll

I'm trying to link libpng16.lib to my .dll file but I cannot get it to work. I included already libpng16.lib and zlib.lib into project dependencies (in right order, libpng first) but still get to ...
0
votes
1answer
49 views

How to install numpy with pip+mingw in windows?

I have got pip+mingw working in windows. I tested it with pip install cython and it works perfectly. pip install numpy fails however with a long list of error messages. What is the correct way ...
0
votes
0answers
25 views

msys not opening programs interactively

msys is not opening programs interactively. For example, if I enter python, the program hangs. Even mysql hangs after I enter my password (entering the password is interactive, though). When I ...
0
votes
0answers
64 views

MinGW vs MSVC (Portability and Speed)? [closed]

I used MSVC but it really makes executable's size much more. (Even more than executable which compiled with FreeBasic(Source codes adapted into BASIC language)) What is the difference about Speed and ...
2
votes
1answer
49 views

C++ binary compatible dll POD class member initialization causes crash

I'm trying to make an inter-compiler compatible class in a dll built with mingw that can be used in a Windows VS application. My issue is, my class crashes the moment it tries to initialize a member ...
0
votes
2answers
50 views

java.lang.UnsatisfiedLinkError - JNI

I keep getting a java.lang.UnsatisfiedLinkError error every time I run my program. I have a native, a wrapper, and the program to call the native through the wrapper. main.h #ifndef __MAIN_H__ ...
14
votes
2answers
210 views

Compiler Libraries vs. Operating System Libraries

I noticed that both my compiler (MinGW) and the Windows 8 SDK come with the same libraries, save the naming conventions (i.e. win32.lib on the Windows 8 SDK is libwin32.a in the MinGW libraries). ...
0
votes
0answers
34 views

Compilation error when importing Theano on Windows 7

I'm trying to use Theano on Windows 7. I was able to install Theano and import Theano, but after seeing the warning about not having a C compiler installed I also installed mingw. Now when I try ...
1
vote
1answer
25 views

MinGW and @N dll functions linking

I have the '.h' file with content like this: #ifndef MY_IMPORT #define MY_IMPORT __declspec(dllimport) /* !!! */ #endif #ifndef MY_EXPORT #define MY_EXPORT __declspec(dllexport) #endif ...
0
votes
1answer
33 views

C++ Winsock - Creating a Console LAN Chat?

I'm using Jonnie's Winsock tutorial, but am also modifying the code to fit my needs. Is there a straight tutorial for a console LAN chat coded in C++ with Winsock? If not, is there any difference in ...
3
votes
1answer
64 views

MinGW annoying behavior, sometimes compiles, sometimes not?

I am compiling and debugging my little project with msys and MinGW. Sometimes, it compiles just fine but about 2/3 of time instead prints this error message: include/player.h:1:0: fatal error: can't ...
1
vote
1answer
43 views

MingW linking with MSVC's dll library trouble (undefined references)

This is might not a first time here question sounds like that but... I know there are tools used for to get exported functions from .dll (.def generators) but there are useless (for me) because of ...
2
votes
0answers
64 views

Memory usage with future and containers in Qt / MinGW

Consider the following test code: #include <vector> #include <array> #include <future> #include <iostream> using std::vector; using std::array; using std::cout; using ...
0
votes
1answer
58 views

netbeans mysql connector No such file or directory (MinGW)

i try to link mysql-connector 1.1.3 in Netbeans (7.3, Windows 7) with Mingw-Compiler to my c++ Project. In the project properties i have add all mysql-connector directories (include, lib, cppcon) ...
0
votes
0answers
21 views

libtool error compiling under mingw: generated EXE_PATH_VALUE has extra quotes

I'm attempting to compile a few projects using MinGW on Windows (ZeroMQ and Google Protocol Buffers) and I've run into the same error each time. Partially through running make, each install generates ...
1
vote
1answer
29 views

MinGW Main routine

In C there is no main program. Sure, C programmers begin with int main(int argc char *argv[]), but this only works because there is a routine that tells the compiler/IDE to run the function named main ...
0
votes
0answers
25 views

Modules with different CPU types as a reason of exception in java program

I created dll to use it in my java program, but after program start I receive an exception Exception in thread "main" java.lang.UnsatisfiedLinkError: Testing of dll using Dependency Walker gave ...
0
votes
0answers
30 views

Compiling Mathematica 8 mathlink.h using gcc

I'm trying to get my program to talk to Mathematica using MathLink. I'm using cygwin, and mathematica 8.0. I can compile the equivalent of the "AddTwo" program and use it successfully by using the ...
1
vote
0answers
97 views

msysgit's cygwin tools failing on Windows 8

In the msysgit installation directory there's a bunch of Cygwin tools (sh, ssh, wc, ...) which git sometimes use. When I install msysgit (1.7.11.msysgit.1) on a fresh Win8 VM sometimes I get into a ...
1
vote
1answer
32 views

MinGW gcj compiler not found by MinGW shell

I tried to compile a simple Java class with gcj, but I'm getting this error: "sh: gcj: command not found". I installed it according to those tutorials: http://www.mingw.org/wiki/Getting_Started ...
1
vote
0answers
29 views

cannot find -lgsl and -lgslcblas

I am trying to compile a software called MRtrix in windows. It uses a python build script, (I have uploaded it here: http://pastebin.com/XnufSz53) when I run this script I get the error pasted ...
0
votes
2answers
79 views

Only output is “exited with code 0”

Please have a look at the following code main.cpp #include <QCoreApplication> #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> ...
0
votes
1answer
59 views

Not able to compile C++ in NetBeans IDE - Gives error “CreateProcess error=193, %1 is not a valid Win32 application”

I'm trying to build a C++ application in NetBeans 7.3. I'm using the MinGW compiler & I set up the project as a new project from an existing makefile. When I try to compile, I'm getting the ...
0
votes
0answers
47 views

ICU-Project with MinGW and Netbeans - undefined reference

I configured MinGW and the ICU-Project source like shown there. I tried to compile this code(works under Ubuntu) #include <cstdlib> #include <stdio.h> #include <iostream> #include ...
1
vote
0answers
44 views

Scan hexadecimal floating points in Windows with Linux code

I am trying to compile Wapiti 1.3.0 (a NLP tagging tool) in a Windows 8 based machine. The C source code is intended for Linux (and similar) systems. I have managed to compile it using Cygwin gcc. ...

1 2 3 4 5 41