Tagged Questions

0
votes
0answers
51 views

cross-compiling autoconf-based tools with mingw on Mac OS X

I'd like to cross-compile some open-source libraries (libiconv, gettext, glib2) for windows using mingw on Mac OS X. I've installed mingw on Mac with MacPorts. But now I'm not su …
4
votes
5answers
191 views

Opening Large (24 GB) File In C

I'm trying to read in a 24 GB XML file in C, but it won't work. I'm printing out the current position using ftell() as I read it in, but once it gets to a big enough number, it go …
0
votes
2answers
288 views

i386-mingw32-g++: error trying to exec ‘cc1plus’: execvp: No such file or directory

If I compile this QT c++ program in SuSE Linux include using namespace std; int main () { cout << "Hello World!"; return 0; When I type i386-mingw32-g++ hellow …
1
vote
1answer
123 views

mingw32-make : “Input line too long” issue

We have a Makefile which runs on a Windows 2003 machine and we are using mingw32-make for it. Since the Makefile has many include paths, it exceeds the buffer size of 8K that the c …
0
votes
0answers
23 views

problems of making the sip with mingw32-make-3.81

This is the problem in the making progress: make[1]: Entering directory L:/1_编程软件/3_Python/python_gui_programe/sip-4.8. 2/sipgen' makefile:29: warning: overriding commands for tar …
1
vote
2answers
136 views

mingw 3.4.5 missing dlfcn.h?

Hi, is it possible that my mingw 3.4.5 installation is faulty? or is this provided on some other library floating around? in case you are wondering, dlfcn.h is where stuff like d …
1
vote
3answers
190 views

Compiling SystemC library in Mingw32

I have been trying to compile systemC library in Mingw32 and I am getting an error when I run the "configure" command which says that the architecture is not supported. Anyone out …
0
votes
1answer
159 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 an …
0
votes
1answer
229 views

Installing bitarray in Python 2.6 on Windows

I would like to install bitarray in Windows running python 2.6. I have mingw32 installed, and I have C:\Python26\Lib\distutils\distutils.cfg set to: [build] compiler = mingw32 …
-2
votes
7answers
179 views

Error in C Program

Hi, while(((long)(1000*ratio*((long)clock()-(long)t0))%100)/1000)<Data_Read_Rate); The above line is generating the following error: "Syntax Error before < token". Why is …