Tagged Questions

5
votes
2answers
175 views

Is There Support for std::thread in Mingw32? [closed]

Possible Duplicate: How to enable experimental C++0x concurrency features in MinGW? my version of mingw32 (gcc version is 4.5.2) does not come with the class std::thread. Is there a ...
4
votes
3answers
855 views

ld.exe: cannot open output file … : Permission denied

I recently installed CodeBlocks with mingw32 on Windows 7 Ultimate 32bit in order to dust off my c skills, but this problem has me somewhat stumped. I decided to fire off a short Fibonacci generator ...
2
votes
2answers
2k views

How to compile & use GLib with MinGW

I want to use the Gnome GLib in a Windows environment using the free MinGW compiler to develop in C. The problem is, I have absolutely no idea how to compile this library. Would any of you please ...
1
vote
1answer
80 views

MinGW C++: expected primary-expression before '/' token

This is my first question here, and the first time I haven't been able to find a solution to a C++ problem online by just looking around. I'm relatively inexperienced in this area, and am not sure ...
1
vote
2answers
91 views

Mingw32 cross compiled console application doesn't do anything on Windows XP

I've compiled a small app in Linux (Ubuntu 11.04) with Mingw32 and it runs ok in Wine, but does nothing on Wuindows (although it runs). Configure: ./configure --host=i586-mingw32msvc ...
1
vote
1answer
468 views

Undefined references when compiling a static Qt build on Windows

I'd like to compile a static version of the Qt toolkit on the Windows platform (Windows XP SP3). I downloaded the latest release for Windows and successfully installed it. Then I opened the Qt 4.6.3 ...
0
votes
0answers
21 views

gnash no debug symbol

I build gnash using mingw on windows. After being runned, ./configure, make. There isn't any debug symbol in gtk-gnash.exe. So I posted a mail on gnash mail-list. Someone said, maybe I did strip the ...
0
votes
2answers
112 views

Port UNIX sockets to windows without winsock. Really?

I have some code that using UNIX sockets. But I need to compile it for winodws(using mingw32 on mac os x) but I don't want to use winsock because I'm worried about compatibility! Is there is a way to ...
0
votes
0answers
148 views

Cross compiling GLUT program on mac os x for windows with MinGW32

Tried to do it with this makefile: CC = i386-mingw32-g++ LINKER = g++ FLAGS = -lopengl32 -lglu32 -lglaux -lglut32 FLAGS = -l"/usr/lib" -l"/usr/include" FLAGS += -Wall SRC = main.cpp Engine/Core.cpp ...
0
votes
0answers
23 views

switch over to desktop? [closed]

I want to switch over to my desktop from mingw32 shell. How to do it? I am getting the following option: bin, home, lib, etc , include, msys.bat, share , postinstall,sbin, m.ico...
0
votes
2answers
825 views

undefined reference to `SDL_main'

I am trying to build a project on windows using MinGW and eclipse. I'm using the SDL library but when i try to complie it, I get the error g++ -Wl,-subsystem,windows -oplikoo.exe src\mouse.o ...
0
votes
1answer
48 views

Scip integrate with mingw and msys

How can I integrate SCIP with MinGW and Msys?
0
votes
2answers
459 views

On windows _fseeki64 does not seek to SEEK_END correctly for large files

I have reduced the problem to the following basic function which should simply print the number of bytes in the file. When I execute it for a file of 83886080 bytes (80 MB) it prints the correct ...
0
votes
1answer
190 views

Adding program to mingw32's “path”

I am running a rails app locally through NetBeans which seems to be running ruby through mingw32. I'm trying to do a system call to lame, which works fine using just irb, but this particular setup ...