Library won't load


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Library won't load
# 1  
Old 11-06-2006
Library won't load

Trying to run an X11 executable under Darwin, I keep getting:

dyld: Library not loaded: /sw/lib/libglib-1.2.0.dylib
Referenced from: /usr/X11R6/bin/wav2rsomac
Reason: image not found
Trace/BPT trap

I can't figure out if this is an error in the way the program is running, or if the library won't load because I don't have the library installed! libglib-1.2.0.dylib is part of what package?

Also, on my system I just cannot find the path /sw. Where in the heck should it be?

Thanks.

p.s. I have feeling that I need to be using the Gnome WM instead of the included quartz-wm for this program, but it's just a feeling, so I haven't installed Gnome yet.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

mediawiki page won't load - fedora 16, MediaWiki version 1.18.2

I created a mediawiki page and it was completely working and I had multiple pages within it. When I edited the $wgLogo = " "; to something I wanted (I put the link to the picture within " ") I had to edit the logo on the top right but now I can't even load any of my pages, I may have... (10 Replies)
Discussion started by: kelth
10 Replies

2. Red Hat

mediawiki page won't load - fedora 16, MediaWiki version 1.18.2

I created a mediawiki page and it was completely working and I had multiple pages within it. When I edited the $wgLogo = " "; to something I wanted (I put the link to the picture within " ") I had to edit the logo on the top right but now I can't even load any of my pages, I may have touched... (1 Reply)
Discussion started by: kelth
1 Replies

3. Solaris

Solaris 10 won't boot up "Cannot load drivers for /pci@400.....

This is the error message that I am getting on a Solaris 10 sparc server scsi: no major number cannot load drivers for /pci@400..... Can't load the root filesystem Type 'go' to resume {0} ok Is there a way for me to correct this issue. It looks like I am missing a scsi driver to boot up... (5 Replies)
Discussion started by: trinityforce
5 Replies

4. UNIX for Advanced & Expert Users

Linux on vmware won't boot due to corrupt library file!

We have an issue here: The libc.so.6 file (link) is corrupted and it causes the system unbootable. It even doesn't boot to single user mode. How can we boot the system to fix the library file? Or is there any other solutions for this issue? Here are some boot messages:... (6 Replies)
Discussion started by: aixlover
6 Replies

5. Programming

Dynamic library load with dlopen

Hi, I created two library libsum.so and libproduct.so. In the libproduct.so is defined function "product" that use function "sum" defined in libsum.so. So libproduct depends on libsum. In main function I called product function by a dlopen request. Unfortunaly, when I execute program I have an... (5 Replies)
Discussion started by: shade82
5 Replies

6. UNIX for Dummies Questions & Answers

FreeBSD 7.1 Rel install on 1TB won't load

Hi Folks, Have anyone install FreeBSD on 1TB hard drive and have problem like not able to boot into the system? Well, I just purchase a new Maxtor 1TB SATA 300 hard drive and install FreeBSD on it, everything install well, but then reboot and all I get is just a display cursor.... nothing... (0 Replies)
Discussion started by: bsdme2
0 Replies

7. Linux

load error while creating shared library

Hi, I am trying to create shared library. When i run the script to build the library i get these errors ld: warning: option -o appears more than once, first setting taken ld: fatal: file libgc.so.0: open failed: No such file or directory ld: fatal: File processing errors. No output written... (0 Replies)
Discussion started by: masg1
0 Replies

8. Linux

load dynamic and shared library in kernel

hi how can i load dynamic or shared library in linux kernel modules . mtaghiloo@yahoo.com (0 Replies)
Discussion started by: mtaghiloo
0 Replies

9. Programming

how to auto load a dynamic library

hi, every body. i have in trouble that how to load a dynamic library by hand. for example, i know how to generate a dynamic library and how to link a dynamic library in makefile. generate a dynamic library: add -dy -G behind cc link a dynamic library in makefile: add -dy -Bdynamic behind cc... (0 Replies)
Discussion started by: subrain
0 Replies
Login or Register to Ask a Question
rebase(1)						    BSD General Commands Manual 						 rebase(1)

NAME
rebase -- Changes base address of dylibs and bundles SYNOPSIS
rebase [-low_address addr] [-high_address addr] [-arch arch] [-v] file(s) DESCRIPTION
The base address of an image (dylib or bundle) is the preferred address for it to be loaded. By default all images are built with a base address of zero. At runtime, if the preferred memory range is already occupied, dyld will "slide" the image to a new address range. There is a small cost to the slide, as dyld must do some fix ups. The rebase tool takes a list of images and adjust their base address to be non- overlapping. If no low or high address is specified, the a suitable address range is choosen for the architecture. The options are as follows: -low_address addr Force the base address for the first image to be addr (specified in hex). Each subsequent file gets the next available base address. -high_address addr Force the base address for the last image to be such that when that image is loaded it occupies memory up to addr (specified in hex). Each preceeding file gets the previous available base address. -arch arch Only rebase the specified architecture. Other architectures in a universal image are left as is. -v Verbose. Print information about rebasing done. SEE ALSO
ld(1) Darwin June 6, 2006 Darwin