Questions tagged [mingw32]

MinGW(32), a contraction of minimalist GNU for Windows, is a minimalist development environment for native Microsoft Windows applications.

MinGW(32), a contraction of minimalist GNU for Windows, is a minimalist development environment for native Microsoft Windows applications.

MinGW(32) (or mingw32) is the old name of the project and the name is now MinGW.

Use of this tag

Tag mingw should be preferred over this tag, mingw32.

790 questions
0
votes
1 answer

Slow CPU + Windows Explorer + Everything when programming in C++ with OpenCV libraries no matter what IDE and Compiler used

When I was working with OpenCV, I added the build/install folder (i.e. where I had my mingw32-make and mingw32-install files created) to PATH variable. However, this made my PC quite slow after I did a few builds on my CodeBlocks IDE. I didn't…
ha9u63a7
  • 6,233
  • 16
  • 73
  • 108
0
votes
2 answers

Compiling with Mingw

I have a bunch of C files and header files in the folder. When I compile the C files with MinGW compiler, it shows that there is no such file or directory. But I have all the files in the same folder. How do I get them to compile? I have attached…
Sathish
  • 11
  • 2
0
votes
1 answer

Static Qt Build Cryptic Error

I am trying to do a static build of Qt (4.8.1) using mingw32-make (gcc 4.7.0) so that I can statically link my application for the sake of ease of use/delivery. I keep getting a strange error from mingw32-make, though, which I do not…
Luke
  • 2,434
  • 9
  • 39
  • 64
0
votes
2 answers

Compiling a simple MFC project

I need the DLL that contains the MFC libraries, so I can compile a MFC project with MinWG. I cannot download Visual C++ because I have a 50mb download limit. According to Wikipedia, the latest MFC version is MFC 10.0.40219.1, and it is contained…
Snuff Movie
  • 384
  • 5
  • 12
0
votes
1 answer

xerces-3.1.1 cannot create dll on MSYS?

I build xeces-3.1.1 with mingw-gcc on MSYS. I configured with --prefix=/c/open-source/install/xerces-3.1.1 --enable-shared but no dll is found in the installation directory. Anything wrong? BR, Ruochen
Pan Ruochen
  • 1,990
  • 6
  • 23
  • 34
0
votes
2 answers

Conversion error in boost 1.49/1.50/1.51 ASIO with MinGW & GCC 4.7.0

I'm getting some strange error from within boost::asio when simply including the asio.hpp header file, which then includes other headers till win_static_mutex.ippwithin which it generates an conversion error. I use MinGW with GCC 4.7 with the…
Lukas
  • 2,461
  • 2
  • 19
  • 32
0
votes
1 answer

libqxt compilation - mingw32-make exception

I have a following problem with compiling libqxt. configure.bat generates files, but displays some warnings: c:\Users\Lukasz\Downloads\libqxt-libqxt-7e0d3396b765>configure.bat Testing for qmake... Testing for mingw32-make... Using…
Lukasz Czerwinski
  • 13,499
  • 10
  • 55
  • 65
0
votes
1 answer

LPCTSTR to LPWSTR conversion is not defined in Mingw32 in winnt.h

I am using mingw32, where I cant find type definition of LPCTSTR to LPCWSTR. But the same is defined in mingw64 as below. typedef LPCWSTR PCTSTR,LPCTSTR; But my code works fine in mingw32 without any error even I added LPCTSTR in my code, and if I…
2vision2
  • 4,933
  • 16
  • 83
  • 164
0
votes
1 answer

Display the OpenCV Image with the MinGW compile

Possible Duplicate: Getting started with OpenCV 2.4 and MinGW on Windows 7 I installed the MinGW compiler and OpenCV2.4.0 in Windows 7. I wrote some C++ code, compiled it and ran it, but it can't display the image: #include…
0
votes
1 answer

Error while cross-compiling Xalan using mingw32

I am attempting to cross-compile Xalan for Windows using mingw32 on a Linux build host. I did this a year or so ago on Debian Lenny without too much trouble (just minor tweaks to the Makefile, and a native copy of MsgCreator), but trying to do it…
Bill B
  • 1,280
  • 13
  • 16
0
votes
1 answer

How to build cogl and clutter on mingw?

I'm going to build clutter on mingw environment, but when I try to build Cogl, there are some compling errors, unknow type: GLchar, GLintptr, GLsizeiptr. The source code version I used is: clutter(1.8.4), cogl(1.10.2), can anybody give me some…
liuhua
  • 63
  • 4
0
votes
1 answer

i386-pc-mingw32-objdump pe disassembling aborted

I am trying to disassemble Sid Meiers Railroads 1.1 original binary from 1C disc file RailRoads.exe >>PE32 executable (GUI) Intel 80386, for MS Windows sudo crossdev i386-pc-mingw32 i386-pc-mingw32-objdump -D RailRoads.exe >…
puchu
  • 3,294
  • 6
  • 38
  • 62
0
votes
2 answers

mingw32 gives error when I include ddk/winddk.h

I'm new to Win environment, trying to write code which use win kernel API but on Ubuntu 10.04 ... using mingw32 (more specifically, i586-mingw32msvc) My code: #include int main() { return 0; } But I'm getting to many errors…
code muncher
  • 1,592
  • 2
  • 27
  • 46
-1
votes
1 answer

How do I set up libcurl in Code::Blocks correctly?

I downloaded the latest version curl-8.0.1.zip and unzipped it. I then ran the command mingw32-make mingw32 in the root directory of the libcurl library to build and compile the library. I went over to Code::Blocks, then in Settings -> Compiler...…
PhoenXHO
  • 55
  • 9
-1
votes
1 answer

CMake for MinGW Makefiles won't create the build

I am trying to create a build of MinGW Makefiles using cmake but I get the following error when I execute the command cmake -G "MinGW Makefiles" ..\source\ I have attached a picture of my path varibles below.Path Variables. I get the following error…