Makefile error in UNIX


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Makefile error in UNIX
# 1  
Old 04-07-2010
Question Makefile error in UNIX

Hi,

I had created makefile to compile and create .exe file.
but while executing makefile i am receiving following error
I can create obj and lib files but not able to create executeable file due to following error.
0711-317 Error: undefined symbol: .fn_error(......)
0711-345 use the -bloadmap or -bnoquiet option to obtain more information.
make :...... Error 8
What is mean by Error 8 for make file?
Could you please help me to get out of it and create proper executable of my code.

Thanks in advance.
# 2  
Old 04-07-2010
You are succesfull while compile and build..But it returns the error when you are run the execatuble file.. I m correct?
# 3  
Old 04-08-2010
Question

Hello,

Above issue is solved.
I am able to create object file and lib file with respective folders.

Now i written code for executable, but without any errors my executable is not gets created.
Here is the makefile code:
$(BIN)/EXT: $(OBJ)/EXT.o (respective dep. file paths)
$(CCC) -o $@ $(OBJ)/EXT.o .a (respective dep. file paths) $(CLDFLAGS) $(CLIBPATHS) $(CLIBS)
BIN is the folder path to store executable file "EXT".How can I create executable file through makefile?Thanks in advance.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Makefile syntax error

I have the following piece and getting make ----------------------------------- getvel ./getvel_main.cpp ./getvel_main.cpp: 1: ./getvel_main.cpp: //: Permission denied ./getvel_main.cpp: 2: ./getvel_main.cpp: //: Permission denied ./getvel_main.cpp: 3: ./getvel_main.cpp: //:... (2 Replies)
Discussion started by: kristinu
2 Replies

2. Homework & Coursework Questions

Help with Simple Multi-Level Makefile (Extremely New at Makefile)

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Basically, the prompt is make a makefile with various sub makefiles in their respective subdirectories. All code... (1 Reply)
Discussion started by: Tatl
1 Replies

3. Shell Programming and Scripting

Help for makefile creation in Unix

Hello, I had created a makefile for my simple C application. I am able to create object and library file through makefile sucessfully. I had written a code snippet for executable file also, but somehow its not working. Here is the code for executable in makefile: $(BIN)/EXT: $(OBJ)/EXT.o... (0 Replies)
Discussion started by: Poonamol
0 Replies

4. UNIX for Advanced & Expert Users

Makefile problem - How to run module load in a Makefile

Hi, I'm trying to run the module load command in a Makefile and i'm getting the following error: make: module: command not found Why is this? Is there any way to run this command in a Makefile? NOTE: command - module load msjava/sunjdk/1.5.0 works fine outside of the Makefile (2 Replies)
Discussion started by: hernandinho
2 Replies

5. UNIX for Dummies Questions & Answers

error while running a makefile

any good website to know about makefiles (3 Replies)
Discussion started by: raviravula
3 Replies

6. Shell Programming and Scripting

error in MakeFile.Solaris

Hi, I am getting the follwing error while i was running the shell script to make the build. make: Fatal error in reader: Makefile.Solaris_2.6, line 157: Unexpected end of line seen . May i knwo what does this mean.The line 157 has the last file that is supposed to be copied from the... (2 Replies)
Discussion started by: palurugururaja
2 Replies

7. UNIX for Advanced & Expert Users

got error while compling project using Makefile

helo when i compling my project from the commandline using Make file make all i got the following error make all /usr/bin/gcc -DNDEBUG -O0 -finline-functions -fmerge-constants -fmove-all-movables -fno-omit-frame-pointer -I../../lsapi -c -o lsapitest.o lsapitest.c g++ lsapitest.o... (2 Replies)
Discussion started by: amitpansuria
2 Replies

8. UNIX for Dummies Questions & Answers

Proc Makefile error

Hi When i am compile the makefile i am getting this error. make: Fatal error in reader: Makefile, line 25: Extra `:', `::', or `:=' on dependency line Following Content is the makefile. HDR_INSTALL = CommonDb.h rpts.h rptslogfmts.h CCFLAGS+= -g -v BINDIR = $(INSTALLROOT)/bin... (0 Replies)
Discussion started by: nagasundaramn
0 Replies

9. Programming

Error in MakeFile

Hi, I am trying to make 2 programs using a makefile.. 1. gcc aaa.c -o aaa -lrt 2. gcc bbb.c -o bbb -lrt The makefile for the same has been done as follows.... Show Recent Messages (F3) CC=gcc CFLAGS=-g all: aaa bbb aaa: aaa.o $(CC) $(CFLAGS) -o $@ aaa.o (2 Replies)
Discussion started by: jacques83
2 Replies

10. UNIX for Dummies Questions & Answers

makefile error

Hi, i have am make file problem too. It is driving me mad! My make file is: Code: program : main.o a.o b.o cc -o program main.o a.o b.o main.o : main.c cc -c main.c a.o : a.c cc -c a.c b.o : b.c cc -c b.c When I run it i just get the following error... (2 Replies)
Discussion started by: cb.mark
2 Replies
Login or Register to Ask a Question