Tagged Questions
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 ...
3
votes
1answer
346 views
MinGW-w32 vs. MinGW
What's the difference between the MinGW project and the 32-bit portion of the MinGW-w64 project? Does the 32-bit portion of MinGW-w64 have any relation to x64 at all?
It seems like their compilers do ...
2
votes
2answers
166 views
can mingw build a visual studio-2010 project?
I have a visual studio-2010 project which contains lots of source files and header files. Now I need to autobuild this project under the latest Debian GNU/Linux. So I choose to use MinGW. But I need a ...
2
votes
2answers
189 views
Does anyone have a working GMP + MINGW installation?
I've spent days and days trying to install GMP library on my MINGW windows installation. I completed the installation process of both dozens of times, followed any single guide on the internet but I ...
2
votes
2answers
109 views
Is mingw still active?
It obviously isn't completely dead, but the latest version there is gcc 4.5.2, while 4.6 is already old news.
Does anyone know where I can get mingw-gcc 4.6+? Is mingw-w64 more active? They seem to ...
2
votes
2answers
160 views
can't compile wxwidgets through mingw, following install.txt that came with the zip file
I am trying to compile wxwidgets. I am compiling with mingw32 and am following the install.txt that came with the zip file, but when ever I compile it, it gives me these errors.
if not exist ...
1
vote
0answers
33 views
MinGW fails to compile project with -lc, -lm and -lrt linker's flags
I'm trying to compile python bindings for Kyoto Cabinet with Mingw32 for Windows7. I have several dirs in my library path: C:/MinGW/lib folder and a folder with kiotocabinet.lib; MinGW finds its own ...
1
vote
1answer
658 views
compiling qt 4.7.3 on mingw with gcc 4.6
I decided to start working on a new C++ project and wanted to use the latest version of the Qt framework, which is 4.7.3. I also decided to use gcc 4.6 found [here] ...
1
vote
0answers
169 views
Stray '\' in program error
I'm using MinGW to compile NBIS, and everything goes ok up till the point when I have to run the 'make it' command. It compiles stuff for a little while, then it terminates with these errors:
...
1
vote
2answers
170 views
How to specify dll onload function for mingw32?
I can compile DLLs properly using mingw and do the exports/imports stuff. What I am looking for is defining the dll onload function properly as you would in MS VC products. Google didn't turn up ...
1
vote
1answer
976 views
\mingw32\bin\ld.exe: cannot find -lC:/msys/1.0/opt/tcl/lib
I am attempting to compile a simulator for Y86 code (http://csapp.cs.cmu.edu/public/sim.tar) on Windows using mingw and msys, the simulator uses Tcl and Tk for a GUI that it has, so I first tried ...
1
vote
3answers
733 views
Cross compiling Direct3D on Linux with mingw
How to configure mingw32 to cross-compile Direct3D Apps for Windows? Is there any possibility? I have actually succeeded compiling code from this tutorial: ...
0
votes
1answer
92 views
Qt does not work with Botan_v1.10.1 Libraries
I've been trying to get Qt 4.7.3 to work with the newest Botan v1.10.1 libraries.
There is a Botan binary for Windows but it seems that the *.dll files are only for MS Visual Studio.
So I tried to ...
0
votes
1answer
28 views
How to specify the exact dll exports in MinGW?
I'm trying to build a DLL with MinGW and I need to augment the exports it is generating.
I need to assign specific ordinal numbers to certain exported functions.
I created a .DEF file, but I can't ...
0
votes
0answers
117 views
MinGW unable to build C executable to use gcov
Unable to use gcov from MinGW. MinGW freshly installed using latest download mingw-get-inst-20110802.exe. If I link with 4.5.2, mingw_vfprintf is not found. If I link with 3.4.5, the program runs ...
0
votes
1answer
294 views
gmpxx.h: no such file or directory
here I am again.
I just installed a brand new copy of mingw (32 bit) downloading it from the official project page from sourceforge: http://sourceforge.net/projects/mingw/. I installed everything in ...
0
votes
1answer
42 views
Fltk1.1 with MinGw?
I have a project that compiles in linux and I am now trying to compile it under MinGw in Windows 7. The project includes the fltk library. When I try to compile, I get the message that the FL/Fl.h ...
0
votes
3answers
417 views
how do I install both mingw32 and mingw64 on Linux or MacOS?
I'm having trouble installing both mingw32 and mingw64 on Linux or MacOS. I've tried many different package repositories and multiple versions of Linux. I'm happy to use anything.
Thanks.
0
votes
1answer
49 views
Is MinGW a rolling-release “distro”?
My problem is that I've been unable to reproduce MinGW installations. I used the MinGW 5.1.3 all-in-one installer, but I have different users that ended up with different installations. I have an ...
0
votes
1answer
40 views
use specific compiler with MINGW
I have an old project which i want to compile with the 4.1.2 version of GCC and G++. i have them downloaded, but i don't know how to give it to the MINGW to use them as default c/c++ compilers.
...
0
votes
1answer
127 views
Calculate Var Args Length in C
I'm trying to port asprintf() to windows, since its a GCC library function on Linux, and doesn't exist on Windows.
I'm stuck at calculating the var args' length so I can allocate memory for them. I ...
0
votes
2answers
228 views
can I alloc() in the main thread and free() in another?
I have a program that runs fine on MacOS and Linux and cross-compiles to Windows with mingw. Recently I made the program multi-threaded.
The current design of the program has memory allocated in the ...
0
votes
1answer
463 views
Error compiling C code using MinGW in Windows 7
The Makefile is as follows:
.PHONY: all clean
all : backtrace.dll test.exe
backtrace.dll : backtrace.c
gcc -O2 -shared -Wall -o $@ $^ -lbfd -liberty -limagehlp --verbose
test.exe : test.c
...
0
votes
2answers
377 views
Create make with Qt4 and MySQL driver plugin
Installing QT plain is no problem, but when you've got to recompile QT with a MySQL driver plugin? Confusing. And when I do run configure, Qt registers my MySQL driver, but when I attempt to run ...