Tagged Questions
4
votes
3answers
1k 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
215 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
1answer
209 views
Getting OpenGL setup on Windows (mingw32?)
Compiler is mingw32. Language is C99. OS is windows. Graphics card is Nvidia 260GTX
I can link against opengl32/glu32 and build against it, but nothing from OpenGL 3.x is included... in fact, I ...
1
vote
2answers
185 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
2answers
138 views
How to compile and build a very simple Gnu linux application to Windows using Mingw or Cygwin?
I would like to port an existing Linux application from its plain C/c++ source code to Windows XP/Vista/7 exactly same functionality to have, without losing few modules here and there etc. Basic codes ...
1
vote
1answer
495 views
how to use a makefile for mingw on win32
i seem to have forgotten what is typed on the command line when using a makefile for a c program on a win32 machine. what i remember is that i should type something like
mingw32 -make
. but ...
0
votes
0answers
150 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
133 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
488 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
154 views
MinGW Compilation Problem
I just installed MinGW using the automatic installer MinGW-get-inst that I found on their website. I am using eclipse to write my C++ programs. My code compiles fine, and I get a .exe file. However, ...