Results 1 to 7 of 7
Hi
I have been trying to use e-macs for programming i made the most simple program that can be made to test it out ie the "hello world" program i ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 06-06-2003 #1Linux User
- Join Date
- Nov 2002
- Posts
- 420
Using E-macs I Have A Problem!
Hi
I have been trying to use e-macs for programming i made the most simple program that can be made to test it out ie the "hello world" program i then made a program to print integers of 2 ie 2,4,6,8,10 etc
But i had a problem with the compiling, i went to tools clicked compile and each time all i heard was a single beep noise, the program was no where to be seen. I am not sure if the printf statement is one to display "hello world" or actually to print it out, if it is to print it out perhaps i dont have a linux compatible printer.
Please help.
- 06-06-2003 #2Linux Engineer
- Join Date
- Nov 2002
- Location
- Queens, NY
- Posts
- 1,319
First, emacs is emacs without the dash.
I forget how to compile in emacs without using a makefile but I suppose that if you do compile, you will get an executable file called a.out (if you are using gcc or g++). Check if that file is in your working directory in which you compiled the source. What does emacs say when you hit compile?The best things in life are free.
- 06-06-2003 #3Linux Guru
- Join Date
- Oct 2001
- Location
- Täby, Sweden
- Posts
- 7,578
I really don't think emacs will compile anything at all without a Makefile. I'm not really sure about that menubar command, but I think it just calls emacs' compile command, which just calls make as it is.
- 06-07-2003 #4Linux User
- Join Date
- Nov 2002
- Posts
- 420
When i try to click the compile button nothing happens only a beep and nothing else at all.
- 06-07-2003 #5Just Joined!
- Join Date
- Jun 2003
- Location
- Helsinki, Finland
- Posts
- 78
Try typing the following in the directory with the source code.
(change myProg to your program name. My example will work if the C file is called myProg.c )Code:$ make myProg
- 06-07-2003 #6Linux Engineer
- Join Date
- Nov 2002
- Location
- Queens, NY
- Posts
- 1,319
Won't he need to make a makefile first?
The best things in life are free.
- 06-07-2003 #7Just Joined!
- Join Date
- Jun 2003
- Location
- Helsinki, Finland
- Posts
- 78
Nope. Make seems to have some default rules.
If you say "make myProg" and there happens to be a myProg.c file laying about, it'll build an executable myProg from myProg.c


Reply With Quote
