![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Compilation error : Please help | jagan_kalluri | High Level Programming | 1 | 05-20-2008 01:48 PM |
| Proc Makefile error | nagasundaramn | UNIX for Dummies Questions & Answers | 0 | 03-19-2008 11:45 PM |
| Compilation error | mansoorulhaq | High Level Programming | 3 | 10-23-2007 05:01 AM |
| compilation error | smanu | High Level Programming | 2 | 12-29-2006 06:11 AM |
| Regarding compilation error. | sweta | High Level Programming | 1 | 12-10-2006 07:30 AM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Proc compilation error.
I'm trying to compile a proc program when use make -f proc.mk , it gives the following error .
`/export/home/app/oracle/product/10.2.0/lib/libclntsh.so' is up to date. rateutil.o: No such file or directory Please advise ,, I need urgent help. Thanks, Omar Atia ![]() |
| Forum Sponsor | ||
|
|
|
|||
|
Some syntax in your makefile is not right. It thinks you are trying to compile libclntsh which you should never do.
You need to post the .pc: block from your makefile Example: Code:
.pc:
@ rm -f make.log
$(PROC) iname=$*.pc $(PROFLAGS)
$(CC) $(CFLAGS) $*.c -o $* $(LDFLAGS) $(LOBJS) $(ULIBS) $(LLIBS) $(CCOPT)
@ echo "Successful Compilation of $*.pc"
@ echo " "
|
|||
| Google UNIX.COM |