PDA

View Full Version : can anyone recommend my a good assembler compiler



edan
March 6th, 2006, 04:38 PM
hi im a bit new on linux and wondered if anyone can recommend me a good compiler, for a 32 bite processor (p4)
i need a compiler with an out-put screen (i know that som of the compilers dont have that...)
thanks for your help

knalle
March 6th, 2006, 04:40 PM
do you want a compiler or an assembler, your post is confusing

Gustav
March 6th, 2006, 04:58 PM
If you want an assembler, nasm is probably the way to go (it's in the repos)

edan
March 6th, 2006, 08:14 PM
im sorry if my ad wase confusing i wase kind of confused myself
i whant a compiler....
thnx for all the help

pharcyde
March 6th, 2006, 09:34 PM
What language are you wanting to program in?
gcc is the standard for c/c++ on linux

knalle
March 6th, 2006, 09:38 PM
use this from command line to get the gnu compiler for c/c++


sudo apt-get install gcc

make your .c and .h files


gcc mysource.c -o myprogram.bin

toojays
March 6th, 2006, 10:07 PM
Please don't follow the advice in the above post. The correct way to install gcc is "sudo apt-get install build-essential". If you only install the gcc package, you will run in to trouble sooner or later.

knalle
March 6th, 2006, 10:11 PM
Please don't follow the advice in the above post. The correct way to install gcc is "sudo apt-get install build-essential". If you only install the gcc package, you will run in to trouble sooner or later.

thanx, didn't know that

edan
March 7th, 2006, 10:42 AM
thnx alot you really helped me :)