Can't find path for shared library: libintl.sl


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Can't find path for shared library: libintl.sl
# 1  
Old 06-14-2012
Bug Can't find path for shared library: libintl.sl

Hello,

Any inputs about this one?

Code:
/usr/lib/dld.sl: Can't find path for shared library: libintl.sl
/usr/lib/dld.sl: No such file or directory
[HP ARIES32]: Core file for 32-bit PA-RISC application
[HP ARIES32]: /tmp/usr/local/bin/git saved to /etc/core.git.
ABORT instruction (core dumped)
 
bash-4.0# echo $LD_LIBRARY_PATH
/usr/lib:/open/ssl/lib
bash-4.0# echo $SHLIB_PATH
/usr/lib:/open/ssl/lib
 
bash-4.0# find / -name libintl.sl -print
/opt/gnome/lib/libintl.sl
/usr/lib/libintl.sl


Last edited by pludi; 06-14-2012 at 07:02 AM..
# 2  
Old 06-15-2012
A similar problem was resolved in this topic, have a look it may help
# 3  
Old 06-15-2012
@Hammadi dali
IMHO. This problem has nothing to do with HP-UX and/or the solution link posted.

@SystemAddict
Pleae post exactly (to the decimal point) what Linux Operating System and version you are running and a lot lot more about what software you are trying to run, what you typed, what you expected to happen, and what actually happened.
I may not be able to help you, but please provide detail for those who can.

Last edited by methyl; 06-15-2012 at 09:14 PM.. Reason: assorted typos
# 4  
Old 06-18-2012
Post the command you used to compile the executable and also post the output of the below command...
Code:
ldd -v name_of_the_executable_file

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies

2. Programming

Shared library with acces to shared memory.

Hello. I am new to this forum and I would like to ask for advice about low level POSIX programming. I have to implement a POSIX compliant C shared library. A file will have some variables and the shared library will have some functions which need those variables. There is one special... (5 Replies)
Discussion started by: iamjag
5 Replies

3. Programming

Makefile shared library g++

I'm having trouble with my makefile, I'm trying to code a shared library to be used by another program *EDIT* Found the solution: CC = g++ MODULES= readconfig.o ReadConfigLib.o OBJECTS= RCLOBJECTS= ReadConfigLib.cpp readconfig.cpp configDefinitions.h readconfig.h ReadConfigLib.h... (0 Replies)
Discussion started by: james2432
0 Replies

4. Programming

Linkers and Loaders: how to (if possible) specify relative path for shared library to the loader

Hi, first of all I apologize if this is not the right section to post this question, but I didn't know where else to post it. I've developed an application which uses a shared library developed by me. Basically I want to give both the application and the shared library without the source,... (2 Replies)
Discussion started by: emitrax
2 Replies

5. 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

6. Programming

Shared memory for shared library

I am writing a shared library in Linux (but compatible with other UNIXes) and I want to allow multiple instances to share a piece of memory -- 1 byte is enough. What's the "best" way to do this? I want to optimize for speed and portability. Obviously, I'll have to worry about mutual exclusion. (0 Replies)
Discussion started by: otheus
0 Replies

7. Programming

Shared memory in shared library

I need to create a shared library to access an in memory DB. The DB is not huge, but big enough to make it cumbersome to carry around in every single process using the shared library. Luckily, it is pretty static information, so I don't need to worry much about synchronizing the data between... (12 Replies)
Discussion started by: DreamWarrior
12 Replies

8. UNIX for Advanced & Expert Users

shared library

What is the primary difference between static library and dynamic library? and how to write static shared library? (1 Reply)
Discussion started by: areef4u
1 Replies

9. Programming

How To Find Unresolved symbol in shared library?

1 . I use Digital Unix V4.0F 2 . I compile a programe which use a shared library . But when I run it( prog.out) , the shell told me that "Fatal Error : /sbin/loader : unresolved symbol in lib3cZap.so" But When I compile proj.out and lib3cZap.so , the compiler said nothing . And I ls -l... (1 Reply)
Discussion started by: chenhao_no1
1 Replies

10. Programming

Shared Library

hello all I want to work in shared libraries how can i work in Linux Environment ? (2 Replies)
Discussion started by: rajashekaran
2 Replies
Login or Register to Ask a Question