Use of DBX and shared libraries with SparcWORKS 5.0

We've been trying without much success to debug customer core files using SparcWORKS 5.0 on Solaris 7. Regardless of what we try (including recommended 'fixes' or 'workarounds' we get this message;
<pre>
core file header read successfully
Reading ld.so.1
dbx: warning: could not initialize librtld_db.so.1 -- trying libDP_rtld_db.so
dbx: panic: cannot dlopen libDP_rtld_db.so as "/opt/SUNWspro/bin/../WS5.0/bin/sparcv9/../../lib/libDP_rtld_db.so" either
-- ld.so.1: /opt/SUNWspro/bin/../WS5.0/bin/sparcv9/dbx: fatal:
/opt/SUNWspro/bin/../WS5.0/bin/sparcv9/../../lib/libDP_rtld_db.so:
corrupt or truncated file
</pre>
Anyone have any suggestions?

This looks like a known bug 42057057. This bug has been fixed in
Workshop5.0 patch. It is ia fix in Dbx.
WorkShop IPE 5.0: Patch for dbx
Free Patch Descriptions: 107355-07
Please get that patch and install it.
....jagruti

Similar Messages

  • Downloads to iPhone gone after sync with iTunes 9 and shared libraries

    I have songs that I downloaded directly to my iPhone 3g-s. After the first time I synched the iPhone to my laptop after installing iTunes 9 and sharing songs with my desktop, songs have disappeared from my iPhone. When I search the song, the title is there but when I click the song, it says to purchase the song from iTunes. The songs are on neither of the 2 computers sharing songs. However, only some of the songs that I had downloaded directly to the iPhone from iTunes have disappeared.

    I read another post here and the solution is simple: goto file and select 'Transfer Purchases from iPod". It works perfectly!

  • How do I share my itunes and iphoto libraries with other users (accounts) ?

    Hi !
    I am trying to share my itunes and iphoto libraries with other users on my powerbook, but I seem to have problems with it.
    What is the best way to do it?
    Place an alias in my "shared" folder and access this with the applications from the different accounts ? This seems to workt for the itunes library, at least... Or do I have to mess with the righs managent ?
    I dont want screw up my nice mac...
    Thanx for the help in advance.
    Herman
    PB G4   Mac OS X (10.4.6)  

    Hi... and thanx for your help...
    I did not think that I would have to mess with my firewall, as long as I am talking of useres on the same computer, but I guess I was wrong.
    Your advice helps very much, but only as long as I am still logged in with my user name. I does not work when only my kids are logged in. There has to be a way to use these libraries without the need to log in the user that has created those folders...
    Hmmm
    Thanx for your help
    Herman
    PB G4   Mac OS X (10.4.6)  

  • Linux JVM: How to load shared libraries with mutual/circular dependencies

    Hi,
    I am using the API
    System.loadLibrary(String name)
    to dynamically link shared libaries to Linux JVM.
    The shared libraries has complex circular symbol dependencies among them.
    I am not able to load shared libraries due to java.lang.UnsatisfiedLinkError.
    Any ideas on how a number of shared libraries with interdependent realtionships
    could be successfully linked in to the Linux JVM?
    Thanks,
    Soumen.
    Background
    ===========
    Successful execution of native code within Java virtual machine in a
    host platform, has two necessary prerequisites:
    Prerequisite 1: The native code is written to the JNI specification
    Prerequisite 2: The native code is dynamically linked with Java virtual
    machine.
    The second step is achieved via simple Java interface, System.loadLibrary:
    http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#loadLibrary(java.lang.String)
    However, implementation of this interface is highly platform dependent
    in regards to exact nature of dynamic linking process.
    Tests
    =====
    I made three shared libraries libfeatureA.so, libfeatureB.so and libfeatureC.so.
    Feature A and Feature B are mutually dependent on each other (i.e cicular
    dependencies between libfeatureA.so, libfeatureB.so) whereas libfeatureC.so
    has no external dependencies.
    Case 1
    I could link libfeatureC.so with java.
    Case 2
    Java failed to resolve circular dependency between libfeatureA.so, libfeatureB.so
    resulting in linking failure. There may be repackaging workarounds which I have
    not yet explored.
    Java source code
    ================
    class TestLoadLibrary
    static
    System.loadLibrary("featureB");
    System.loadLibrary("featureA");
    System.loadLibrary("featureB");
    public static void main(String[] args)
    System.out.println("In TestLoadLibrary.main()");
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /homes/soumen/work/event/featureB/libfeatureB.so.1.0: /homes/soumen/work/ev B.so.1.0: undefined symbol: featureA_func2
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1737)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1662)
    at java.lang.Runtime.loadLibrary0(Runtime.java:817)
    at java.lang.System.loadLibrary(System.java:986)
    at TestLoadLibrary.<clinit>(TestLoadLibrary.java:5)

    The use of "dlopen() application programming" to achieve dynamic link closure works if there are
    no circular dependencies. For example, I have the following dependency:
    libfeatureD.so ==> libfeatureC.so
    Even if I call Java APIs in correct dependency order, i.e.,
    System.loadLibrary("featureC");
    System.loadLibrary("featureD");
    there would be java.lang.UnsatisfiedLinkError for call System.loadLibrary("featureD").
    Now, I have a JNI method implementation, which makes native API call in same dependency order:
    dlopen("libfeatureC.so", RTLD_LAZY|RTLD_GLOBAL);
    dlopen("libfeatureD.so", RTLD_LAZY|RTLD_GLOBAL);
    and now System.loadLibrary calls succeed. Note that I had to set environment
    variable LD_LIBRARY_PATH so that dlopen call would find libraries to load.
    In other words, from a JNI programming point of view, "linking chasm" has been crossed.
    I am looking at circular dependency issue, i.e.,
    libfeatureA.so <==> libfeatureB.so
    There may be library repackaging workaround.
    If anybody knows any workaround, please post.
    -Soumen Sarkar
    JNI code
    ========
    #include <jni.h>
    #include "TestLoadLibrary.h"
    #include <stdio.h>
    #include <string.h>
    #include <dlfcn.h>
    JNIEXPORT void JNICALL Java_TestLoadLibrary_libLoadNative
    (JNIEnv * jenv, jclass class, jobjectArray libNames)
    printf("native: In TestLoadLibrary.libLoadNative()\n");
    char linuxLibName[1024];
    jsize idx = 0;
    jsize nLibs = (*jenv)->GetArrayLength(jenv, libNames);
    for(idx = 0; idx < nLibs; ++idx)
    /* obtain the current object from the object array */
    jobject myObject = (*jenv)->GetObjectArrayElement(jenv, libNames, idx);
    /* Convert the object just obtained into a String */
    const char libName = (jenv)->GetStringUTFChars(jenv,myObject,0);
    strcpy(linuxLibName, "lib");
    strcat(linuxLibName, libName);
    strcat(linuxLibName, ".so");
    printf("\nnative: Trying to open lib with name %s\n", linuxLibName);
    void* handle = dlopen(linuxLibName, RTLD_LAZY|RTLD_GLOBAL);
    if(handle == 0)
    fputs ("\nnative: Could not load lib\n", stderr);
    fputs (dlerror(), stderr);
    else
    printf("\nnative: Loaded lib %s\n", linuxLibName);
    /* Free up memory to prevent memory leaks */
    (*jenv)->ReleaseStringUTFChars(jenv, myObject, libName);
    return;

  • How to use g++ to build shared libraries for labview in linux?

    does anyone knows if it's possible to compile a shared library in linux with g++ that could be recognized by labview?
    thks
    JP

    Hi JP,
    Yes you can use g++ to build shared libraries that labview can use. You'll want to give your C++ library a C interface. This is really common practice. You can do this by simply declaring functions as 'extern "C"'. Here is a link with more information:
    http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html#faq-30.8
    I've personally worked on projects that do exactly what you want to do.

  • Music and Video on Nas in folders but how do i set up itunes on multiple computers to see and use these files and create libraries?

    Music and Video on Nas in folders but how do i set up itunes on multiple computers to see and use these files and create libraries?
    So i have had a itunes set up on my old PC, bought a NAS and copied the folders over to the NAS, i did this incorrectly and so then even when i told the old PC to use that folder it saw all the songs but wasnt able to play the songs as it was looking in the incorrect place.
    So now i want my Mac as well as my PC and others to all use the music, videos etc on the NAS they are in itunes friendly folders (as they were compiled this way by the itunes on the old PC.
    When i tell the mac to use the itunes library.itl file it sees the song list (about 100gb) but cant see any songs, so i have removed this file to another location for now with the hope to set up a new file and then get it to see the songs on the folder from the NAS.
    Can someone tell me how to do this for all the Mac's and PC's on my network as i really want one master library that all use and add too.
    Thanks for your help in advance.

    I have the same question but I am using two pc's

  • HT1904 parental controls and shared libraries

    We're slowly migrating towards having all our music and movies in iTunes.
    One item that's crutial to this migration is proper parental controls, especially with shared libraries. They seem to work well on the kids iTouch devices and hide the content that's higher than their allowed rating level.
    However, on my daughter's computer (Vista SP2 with iTunes 11.0.2), the shared libraries with content higher than her allowed rating are visible and can be started, even when the parental controls are enabled.
    What am I doing wrong?
    Thanks,
    Eric

    It seems that the parental controls only apply to iTunes store, not the iTunes library?
    Correct; parental controls do indeed only apply to iTunes Store purchases.
    The only reasonable workaround I can think of that the kids can't easily get around to have separate iTunes libraries, one for the adults in the house and one from the kids.

  • How Can I use 2 Macs and a PC with two monitors

    This is for my office at work.
    I currently am using dual monitors and sharing those between a G4 and a PC. I'm using a Belkin switch box for the two computers. I'm adding a Mac Pro. I'm thinking I might use the Mac Pro by itself at another workstation but I would like to use it at my current workstation along with my other machines.
    I'm getting a new 23" monitor with the Mac Pro. I want to use it as my main monitor, then use one of my other monitors as a second screen. Is it possible to use two monitors with 3 computers? I would have to use the new keyboard and mouse (both will be standard, not wireless) on both of the macs and use the PC keyboard and mouse.
    Thank You
    Jim

    I would use the new Mac Pro as the main workstation and attach your mouse, keyboard and your new monitor to it.
    Then use the Belkin Switch Box to connect 1 monitor to the G4 and PC.
    Download and configure 'Synergy' (http://synergy2.sourceforge.net/) on the new Mac Pro (as the primary) and the G4 and PC (as secondary) - This will allow you to deal with only one keyboard and mouse.
    I'm with Malcolm, I would download and install VMware Fusion. VM the PC w/ Converter (http://www.vmware.com/products/converter/) and only deal with the new Mac Pro and G4. With the new Mac Pro, you can fire up the PC VM with 2 cores and have it set to a secondary space. You will not notice the difference.

  • Iam using iphone 4s and Iphone 5s with same apple ID but my network is different and whenever Iam getting call in i5s and in my both handset same calls are coming. Please provide me solutions

    Iam using iphone 4s and Iphone 5s with same apple ID but my network is different and whenever Iam getting call in i5s and in my both handset same calls are coming. Please provide me solutions

    On both devices, go to Settings>Facetime and turn off cellular calls.
    ~Lyssa

  • Can I use an iPad and a ipad2 with the same iTunes in my computer? I want to use both

    Can I use an iPad and a ipad2 with the same iTunes in my computer? I want to use both. Want to give one to wife.do I need to open a new iTunes account for her?

    bashepard wrote:
    Can I use an iPad and a ipad2 with the same iTunes in my computer? I want to use both.
    Yes, No problem at all.
    Want to give one to wife.do I need to open a new iTunes account for her?
    No - you can share the same iTunes account (my wife and I share the same account). But when you sync the iPads, just remember to select the correct content for her iPad and the correct content for your iPad.

  • My iphone 6 turned off while i was using face time and it returns with the screen saying Hello mean its reset automatically how is this possible ? Now it requires an id and password to activate which i do not remember need help ?

    My iphone 6 turned off while i was using face time and it returns with the screen saying Hello mean its reset automatically how is this possible ? Now it requires an id and password to activate which i do not remember need help ? but i do remember the id and password which i was using on itunes and Apple store. please i almoost buy it in 890$ so it will be a big lost please help me.

    shahzadfromlahore wrote:
    Now it requires an id and password to activate which i do not remember need help ? but i do remember the id and password which i was using on itunes and Apple store. please i almoost buy it in 890$ so it will be a big lost please help me
    Who set up the phone? Who's Apple ID was used to activate it?

  • My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.     Can not load the Organizer from the icon at the bottom

    My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.  
    Can not load the Organizer from the icon at the bottom of  Editor screen, from the icon on the MacBook Air dock (OS 10.10.2),  nor from the file in applications located with Finder.
    I have tried without success to access Organizer after turning off and on the scanner, turning off and on the computer, loading a fresh copy of PSE12 from the CD, and restoring default preferences.  I have searched on line for other options but not  found any. 
    Can you help me?

    Not Charge
    - See:    
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - If a 5G iPod               
    Iphone 5 lightning port charging problem - SOLUTION!
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • I'm trying to play a purchased DVD movie using a superdrive and apple tv with a projector - i just get a checkerboard pattern?  Help - 18 students are frustrated

    I'm trying to play a purchased DVD movie using a superdrive and apple tv with a projector - i just get a checkerboard pattern?  Help - 18 students are frustrated

    I'm afraid this is by design.
    You cannot Airplay Mirror a DVD using DVD Player - Apple block  screen mirroring of certain image data which might be protected.
    I've a funny feeling Airplay mirroring can potentially be interecpted and decoded so someone could potentially copy the video stream (which would be poorer than DVD anyway).
    Try VLC Player:
    VideoLAN - Official page for VLC media player, the Open Source ...

  • Pmap and shared libraries

    I'm trying to subtract the "shared" mappings from the output that pmap
    produces and show memory usage per process and a separate shared
    memory usage for the system.
    Pmap shows shared library mappings like this ...
    Address Kbytes Resident Shared Private Permissions Mapped File
    FF080000 656 616 600 16 read/exec libc.so.1
    FF132000 32 32 - 32 read/write/exec libc.so.1
    It looks like all processes that have access to libc.so have
    the same mapping. It was my understanding that the Shared and Private allocations (at least in the read/exec mapping) were a fixed
    characteristic of the particular shared library.
    Where is the 40 Kbytes that are not currently used? Virtual, swapped
    out?, but would it be Shared or Private?

    No, not all processes mapping a shared library have the same
    shared/private .text section allocations.
    The shared libraries are tuned for maximum sharing, that is they
    are compiled as position independant code so most of the .text
    section (program code) can be mapped without changes into each
    process, at whatever virtual address is appropriate for each
    process. All the code that needs to be adapted for a certain
    virtual address is concentrated at one place in the .text section
    (procedure linkage table, global offset table, ...). This part
    of the shared library cannot be shared between processes and is
    typically what you see as the "private" part of the .text section
    in the pmap -x output. The non sharable .text section part is
    just the procedure linkage table, global offset table, ... and
    thus is ~ the same size for each process.
    By using mprotect on the .text section or by setting breakpoints
    into the .text section (to name two exceptions) you are able to
    make changes to more parts of the shared .text sections, so that
    you get more 'private' pages in a processes' address space. Here's
    an example with breakpoints:
    <pre>
    4% adb /bin/cat
    main:b
    :r
    breakpoint at:
    main: save %sp, -0x190, %sp
    printf:b
    memmove:b
    atoi:b
    malloc:b
    getenv:b
    :c
    breakpoint at:
    getenv: save %sp, -0x60, %sp
    </pre>
    Now in another window you can verify with pmap -x that cat's copy of
    libc.so with several breakpoints (=changes, private copies) in the
    .text section has more private memory allocated:
    <pre>
    FF280000 656 616 568 48 read/exec libc.so.1
    </pre>
    While some other processes' copy of libc.so at the same time has:
    <pre>
    FF180000 656 616 592 24 read/exec libc.so.1
    </pre>
    The 40Kbytes difference you've observed between the .text sections'
    size and the resident size are VM pages not loaded in main memory.
    If these VM pages have not been changed, then they can be paged in
    from the shared lib's file, else there have been changes to these
    pages and they resides on the swap space.

  • Shared Libraries with Apple OS & PCs in the same network...

    We are currently in the process of updating InDesign files. Some of the InDesign users on the network are using InDesign from PC-based laptops. Others are using InDesign from Apple OS laptops. All are on Adobe CS5.  One of the tasks of the rebrand is replacing a branded banner image at the top of the the layouts. We set up banner libraries with a limited number of images available which, when tested, could be shared between users. Previously all of the users were on the Apple OS platform. Some of the new users are on the PC platform. They are able to see the items when they open the library, but when they attempt to place the image on a photo layer from a PC, they have to follow a path to the location on the network and relink the image.
    We're guessing its an Apple to PC problem similar to the issue of when you set up an alias in Apple OS, PCs sometimes don't recognize it.
    Has anyone else had this problem? ...and come up with a solution?
    Please help.
    Thanks.

    Stop using libraries and start using folders of snippets. Combine that with minibridge and you should be good to go.
    Bob

Maybe you are looking for

  • Can I download free apps without a credit card information?

    Hi! I have recently created an Apple ID. I want to download a free app in the iTunes Store, but it forces me to enter a credit card information, and I don't have a credit card right now. I've seen iPhones were there's an option were it says "none"  i

  • Can't get in and out markers to work

    In Pro 7, I can't find the In and Out markers on some clips I've downloaded off Limewire. When I go File:New audio and record blank noise for a few seconds, the markers appear. How can I get the markers and trim down my Limewire clips? Thanks g5 dual

  • How may I integrate a database with pictures in Muse (to show a catalog)?

    As you may imagine, yes, this question has a hidden background (the e-commerce), of course. Muse is a gold window to all those designers that see it's possible to create a website without using code easily. But, websites need rich content, that chang

  • How to Import a DTS Package, while keeping version History in Destination Intact

    Hi Guys, Not sure if this is the right forum for my question. But I couldn't find any other DTS forum to post my query. Basically, I have my Production Environment in SQL 2008R2 and it contains few DTS [NOT SSIS!!!!] packages in Management > Legacy.

  • Append in Oracle SQL/DBMS/Procedure

    Hi, I am running a direct SQL statement against a field. When the user enters values into a field, I want the values to be passed into the Oracle 9 database. When the user adds more info into the same field, I want the new info appended to the previo