djgpp

C(++) Compiler Transition - Make DJGPP go away please

I'm working on writing a kernel, and I have a few friends working with me on the project. We've been using DJGPP to compile the project for a while, but we're having some cross-platform compatibility issues with compiling this way that have left my main Partnet on the project unable to compile on Windows XP. (DJGPP's GCC is having issues...

fread error with DJGPP

While reading a binary file using DJGPP on DOS this code hangs. This happens when the fread call is made. If the call is removed then the program runs successfully. The same code runs fine through Visual C++ 2008. Has anyone experienced similar issues with djgpp ? Am I missing out on something really simple ? char x; string Filena...

How to install DJGPP

I am brand new to C and programming. I would like to use DJGPP as my compiler at this point. How can I install it? From what I understand it is multiple files. I cant seem to find a site that actually has the files that has working links. Thank you! I am on Windows Vista. ...

How to enable the mouse in C++ program under DOS using DJGPP?

I've been using DJGPP for the first time recently and can't seem to enable mouse support. What's the best way? Thanks for any help. ...

compile C program to MS-DOS environment

i have a small program that uses 32bit object file, and i wish to run it under dos operating system. now, after searching i found DJGPP. is there a way to use DJGPP to compile my program to 16Bit dos executable format? thanks in advance ...

Compiling Assembly code

Hello, I'm trying to compile an ASM program I wrote with NASM and the "ld" command from DJGPP. This is the code for the batch file I'm using to compiling it: @echo off set path=C:\NASM;%PATH% nasm -f aout -o start.o start.asm ld -T link.ld -o kernel.bin start.o But when I run the file I get: start.o: file not recognised: File format...