Sponsored Content
Operating Systems AIX Add shared members from library to same library in a different directory Post 302691665 by bakunin on Saturday 25th of August 2012 08:21:59 AM
Old 08-25-2012
Have you set the variables "LD_LIBRARY_PATH" and "LIBPATH" both to the respective locations?

Some programs from the Solaris/Linux world expect $LD_LIBRARY_PATH to evaluate to the library location and don't care for the AIX pendant $LIBPATH, which is why it is a good safety measure to set both.

I hope this helps.

bakunin
 

10 More Discussions You Might Find Interesting

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

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

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

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

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

6. HP-UX

Shared Library Issue HP UX

I have never seen this issue before, but here is what is happening. I link an executable against two dynamic mlib libraries veclib and lapack. We place a newer version of these libraries in a write only directory and point the shlib_path at that directory. When the executable runs, it gets a... (3 Replies)
Discussion started by: sambarusty
3 Replies

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

8. OS X (Apple)

Linking to a shared library

I'm trying to get Valgrind to work with an openmpi application in OS X. However I want to hardcode the path to a shared library called libmpiwrap-amd64-darwin.so into my application so that it is available at runtime. In Linux this is relatively simple, I would just add the option... (0 Replies)
Discussion started by: Valgrinder
0 Replies

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

10. Linux

Shared-library error

Hi All, i am facing shared library error, below is the output of the command I am executing on my client # /usr/software/bin/sudo /usr/software/bin/sudo: error while loading shared libraries: libaudit.so.1: cannot open shared object file: No such file or directory # I tried install... (4 Replies)
Discussion started by: muzaffar.k
4 Replies
qwtinstall(3)							 Qwt User's Guide						     qwtinstall(3)

NAME
qwtinstall - .TH "qwtinstall" 3 "Mon Aug 1 2011" "Version 5.2.2" "Qwt User's Guide" NAME
qwtinstall - .PP Introduction ============ Qwt uses qmake to build all its components and examples. qmake is part of a Qt distribution. qmake reads project files, that contain the options and rules how to build a certain project. A project file ends with the suffix '*.pro'. Files that end with the suffix '*.pri' are included by the project files and contain definitions, that are common for several project files. qwtconfig.pri is read by all project files of the Qwt package. So the first step is to edit qwtconfig.pri to adjust it to your needs. MathML Extension ================ Qwt/Qt4 supports the MathML render engine from the Qt solutions package, that is only available with a commercial Qt license. You need a release of qtmmlwidget >= 2.1. Copy the files qtmmlwidget.[cpp|h] to textengines/mathml. Documentation ========================== Qwt includes a class documentation, that is available in various formats: - Html files - PDF document - Qt Compressed Help (*.qch ) for the Qt assistant or creator. You can load it 'Edit Preferences' -> 'Documentation' -> 'Add...' - Man pages ( UNIX only ) A) Unix Qt3/Qt4 ========================== qmake make make install If you have installed a shared library it's path has to be known to the run-time linker of your operating system. On Linux systems read the LD_LIBRARY_PATH (on some systems LIBPATH is used instead, on MacOSX it is called DYLD_LIBRARY_PATH) environment variable. If you only want to check the Qwt examples without installing something, you can set the LD_LIBRARY_PATH to the lib directory of your local build. If you didn't enable autobuilding of the examples in qwtconfig.pri you have to build the examples this way: cd examples qmake make B) Win32/MSVC Qt3/Qt4 ===================== Please read the qmake documentation how to convert your *.pro files into your development environment. F.e MSVC with nmake: qmake qwt.pro nmake If you didn't enable autobuilding of the examples in qwtconfig.pri you have to build the examples this way: cd examples qmake examples.pro nmake admin/msvc-qmake.bat helps users of Visual Studio users to generate makefiles or project files (.dsp for MSVC-6.0 or vcproj for MSVC.NET) for Qwt. To generate makefiles, type: 'adminvc-qmake' To generate project files, type: 'adminvc-qmake vc' When you have built a Qwt DLL you need to add the following define to your compiler flags: QWT_DLL. Windows doesn't like mixing of debug and release binaries. Most of the problems with using the Qwt designer plugin are because of trying to load a Qwt debug library into a designer release executable. C) Win32/MinGW Qt4 ================== C1) Windows Shell Start a Windows Shell, where Qt4 is initialized. ( F.e. with qmake qwt.pro make If you didn't enable autobuilding of the examples in qwtconfig.pri you have to build the examples this way: cd examples qmake examples.pro make make install C2) MSYS Shell Qt >= 4.3.0 Support for the MSYS Shell has been improved in Qt 4.3.0. Now building Qwt from the MSYS Shell works exactly like in UNIX or in the Windows Shell - or at least it should: because of a bug in Qt 4.3.0 you always have to do a 'qmake -r'. C3) MSYS Shell Qt < 4.3.0 For Qt < 4.3.0 you have to set the MINGW_IN_SHELL variable. make will run into errors with the subdirs target, that can be ignored (make -i). export MINGW_IN_SHELL=1; qmake make -i make -i install If you didn't enable autobuilding of the examples in qwtconfig.pri you have to build the examples this way: cd examples qmake examples.pro make -i make -i install C1-C3) When you have built a Qwt DLL you need to add QWT_DLL to your compiler flags. If you are using qmake for your own builds this done by adding the following line to your profile: 'DEFINES += QWT_DLL'. Windows doesn't like mixing of debug and release binaries. Most of the problems with using the Qwt designer plugin are because of trying to load a Qwt debug library into a designer release executable. D) MacOSX Well, the Mac is only another Unix system. So read the instructions in A). In the recent Qt4 releases the default target of qmake is to generate XCode project files instead of makefiles. So you might need to do the following: qmake -spec macx-g++ D) Qtopia Core I only tested Qwt with Qtopia Core in qvfb (Virtual Framebuffer Devivce) Emulator on my Linux box. To build Qwt for the emulator was as simple as for a regular Unix build. qmake make E) Qtopia (!= Qtopia Core) I once compiled the Qwt library against Qtopia 4.2.0 successfully - but not more. It should be possible to build and install Qwt, but it's not done yet. Good luck ! Version 5.2.2 Mon Aug 1 2011 qwtinstall(3)
All times are GMT -4. The time now is 03:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy