ld: fatal: library -ltli: not found


 
Thread Tools Search this Thread
Operating Systems Solaris ld: fatal: library -ltli: not found
# 1  
Old 05-06-2008
ld: fatal: library -ltli: not found

Hi,

I am on the following version:
Code:
SunOS e105 5.8 Generic_117350-26 sun4u sparc SUNW,Sun-Fire-15000

I am running a makefile to build some Tuxedo servers. Following is a
snippet of my output:

Code:
BS-550.c: 
/home/sybase/sybase12/OCS-12_EBF10731/include/sybesql.c: 
ld: fatal: library -ltli: not found 
ld: fatal: File processing errors. No output written to /home/sd/ped/ 
bin/GPNEWGEISER

Here's my command line (in makefile):

Code:
$(DIR_OBJ)/sybesql.o: $(SYBASE)/$(SYBASE_OCS)/include/sybesql.c 
        $(CC) $(CFLAGS_NEWGEISER) -c $(SYBASE)/$(SYBASE_OCS)/include/ 
sybesql.c 
        mv sybesql.o $(DIR_OBJ)

where,
Code:
SYBASE = /home/sybase/sybase12 
SYBASE_OCS = OCS-12_EBF10731 
CC = cc 
CFLAGS_NEWGEISER = -g -I$(INCLUDE1) -I$(INCLUDE2) -I$(INCLUDE3) -I$ 
(INCLUDE4) -I$(INCLUDE6) 
INCLUDE1=$(DIR_INC) 
INCLUDE2=$(SYBASE)/$(SYBASE_OCS)/include 
INCLUDE3=$(TUXDIR)/include 
INCLUDE4= /home/swcomun/inc 
INCLUDE6= $(SYBASE)/$(SYBASE_OCS)/lib

Please suggest. Thanks in advance,


Vaibhav.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Fatal error: 'Xm/Xm.h' file not found , motif installed

Hello, i have installed open-motif -2.3.8_1 X11 Toolkit on freebsd32bit machine. wanna compile a little script. script is ok. already compiled on other machine (linux) the message is as follows cc -o button button.c -lXm -lXt -lX11 button.c:3:10: fatal error: 'Xm/Xm.h' file not found... (5 Replies)
Discussion started by: Sennenmut
5 Replies

2. What is on Your Mind?

PHP Fatal Errors During SSL Cert Management - PHP Fatal error: xc_fcntl_mutex failed

Today, I noticed some errors in our SSL cert renewal log files, mostly related to domains where the IP address had changed. Concerned about this, rebuilt out SSL cert, which normally goes well without a hiccup. However, for today, for some reason which I cannot explain, there was a PHP error... (0 Replies)
Discussion started by: Neo
0 Replies

3. UNIX for Dummies Questions & Answers

Aclocal and libtool error -- macro `AM_PROG_LIBTOOL' not found in library

The software I'm trying to install uses macros with autoconf, aclocal, libtool, autoheader, and automake. What seems to be going on is an error between libtool and aclocal. From what I understand when I run aclocal, which is in /usr/bin, it searches a different directory for the libtool.m4 which is... (0 Replies)
Discussion started by: bphqk3
0 Replies

4. Linux

./configure problem for libsf library due to apparently missing libdb library.

Hello, ./configure script fails to configure libsf. Please check the following last few lines of configure script error. checking for db1/db.h... no checking for db.h... yes checking for dbopen in -ldb1... no configure: error: No libdb? No libsf. But find command shows the following; ... (4 Replies)
Discussion started by: vectrum
4 Replies

5. AIX

AIX collect2: library libgcc_s not found

Hi, M/c- aix 5.3 I want to install expat-2.0.1. When run the make command it gives the error.. collect2: library libgcc_s not found make: The error code from the last command is 1. Stop. Thanks (7 Replies)
Discussion started by: tukuna82
7 Replies

6. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies

7. Programming

shared library not found

Hello, On a Centos 5.0 box, I have two versions of a library (sqlite): (1) in /usr/lib that was installed using yum (maybe from php but I am not really sure) (2) in /usr/local/lib that I installed myself by compiling from the source code. My C++ program contains the following lines: ... (12 Replies)
Discussion started by: JCR
12 Replies

8. HP-UX

webservd: fatal: libgcc_s.so.1: version GCC_3.3’ not found

HI, We configured the webserver under the opt/SUNWwbsvr/https-pw-frontend/ in unix box. We have server start and stop command under the opt/SUNWwbsvr/https-pw-frontend/ Unexpectedly our password webserver's(sun one webserver's) are down, when I tried to start the server this is the error I'm... (1 Reply)
Discussion started by: srujana
1 Replies

9. Programming

library not found error

We are trying to execute C/C++ programs in SOlaris 8. Though the exes are compiled in g++, we donot have it installed in the target machine. We have the library files in the target machine and LD_LIBRARY_PATH is set correctly. Now when the exes are run, we are getting the error $ seq ld.so.1:... (1 Reply)
Discussion started by: virtual_j
1 Replies
Login or Register to Ask a Question