Symbol Not Found

I've just started swing, and had a few promising results, until my code got a little more complex. I've run into a problem, and I don't know enough to really understand why it's there. Basically, I have some code (which I will paste here after my explanation) that is supposed to create a window and add in a text area and text field. The problem is, the JPanel and JScrollPane variables aren't recognized as existent by the compiler. I can seem to figure out why.
Here's the entire code I'm working with:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class TerraGUI {
     private static void createAndShowGUI() {
          JFrame frame = new JFrame("Main Window");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          JPanel mainPane = new JPanel();
          mainPane.setPreferredSize(new Dimension(800, 600));
          frame.getContentPane().add(mainPain);
          JScrollPane chatPain = new JScrollPane();
          chatPain.setVerticalAlignment(JLabel.BOTTOM);
          JTextField textField = new JTextField(20);
          JTextArea textArea = new JTextArea();
          textArea.setColumns(50);
          textArea.setRows(10);
          textArea.setEditable(false);
          chatPane.add(textArea);
          chatPane.add(textField);
          frame.getContentPane().add(chatPain);
          frame.pack();
          frame.setVisible(true);
     public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
               public void run() {               
                    createAndShowGUI();
}And here's the compiler errors:
C:\Program Files\Java\jdk1.6.0_16\bin\javac "TerraGUI.java" (in directory: C:\Users\Cyle Dawson\Documents\Java\Terra)
TerraGUI.java:12: cannot find symbol
symbol  : variable mainPain
location: class TerraGUI
  frame.getContentPane().add(mainPain);
                             ^
TerraGUI.java:15: cannot find symbol
symbol  : method setVerticalAlignment(int)
location: class javax.swing.JScrollPane
  chatPain.setVerticalAlignment(JLabel.BOTTOM);
          ^
TerraGUI.java:21: cannot find symbol
symbol  : variable chatPane
location: class TerraGUI
  chatPane.add(textArea);
  ^
TerraGUI.java:22: cannot find symbol
symbol  : variable chatPane
location: class TerraGUI
  chatPane.add(textField);
  ^
4 errors
Compilation failed.Can anyone explain to me why the variables aren't recognized? I'm supposed to have a small, semi-functioning GUI by Sunday and this is confounding me.

I noticed. I have like 9 API windows up and I got them confused. I'm having a rough time with simple mix ups.
I'll look at the layout manager and hopefully get that part sorted out.
I ran into another problem. I don't think I'm grasping exactly how to use Panels and Scroll Panes. I've edited my code a little (I will paste the new bit below), and maybe you can help.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class TerraGUI {
     private static void createAndShowGUI() {
          JFrame frame = new JFrame("Main Window");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          JPanel mainPane = new JPanel();
          mainPane.setPreferredSize(new Dimension(800, 600));
          JTextField textField = new JTextField(20);
          mainPane.add(textField);
          frame.getContentPane().add(mainPane); //Line A
          JTextArea textArea = new JTextArea("BlahBlah");
          textArea.setColumns(50);
          textArea.setRows(10);
          textArea.setEditable(false);
          JScrollPane chatPane = new JScrollPane();
          chatPane.add(textArea);
          frame.getContentPane().add(chatPane); //Line B
          frame.pack();
          frame.setVisible(true);
     public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
               public void run() {               
                    createAndShowGUI();
}I'm basically trying to get a text field and a text area in the window. I'll work on the positioning when I get them to load. What's been happening is I can get either the JPanel or the JScollPane to load, but not both. In other words, if I comment the line labeled Line A out and leave Line B, I will get my text area, and vice versa, if I comment Line B and leave Line A, I get my text field. When I try both, my window has no size or content. I want the text area to be able to have scroll bars, and that's why I need it in a scroll pane.
I really think I'm missing something important in the concepts department of using Swing.

Similar Messages

  • Safari issue, an error script appear : Symbol not found

    Process:         com.apple.WebKit.WebContent [3975]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.71)
    Build Info:      WebKit2-7537071000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [3927]
    User ID:         501
    Date/Time:       2014-01-05 20:42:22.336 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  4D563E89-B70D-E1F3-9667-B7E57D104F95
    Sleep/Wake UUID: 2F7FE8B2-2718-4D88-A464-A13AF9B97AC9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Dyld Error Message:
      Symbol not found: __ZN7WebCore9FrameView21resumeAnimatingImagesEv
      Referenced from: /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
      Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x00007fff63ed709d dyld_fatal_error + 1
    1   dyld                                    0x00007fff63ed9df6 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 171
    2   libdyld.dylib                           0x000000010eae731d dyld_stub_binder_ + 13
    3   ???                                     0x000000010d6539c0 0 + 4519705024
    4   com.apple.WebKit2                       0x000000010d48ea50 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 28
    5   com.apple.WebKit2                       0x000000010d48e9b9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    6   com.apple.WebKit2                       0x000000010d48e8e2 CoreIPC::Connection::dispatchOneMessage() + 106
    7   com.apple.WebCore                       0x00000001100ab1ed WebCore::RunLoop::performWork() + 557
    8   com.apple.WebCore                       0x00000001100aafa2 WebCore::RunLoop::performWork(void*) + 34
    9   com.apple.CoreFoundation                0x000000010db488f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    10  com.apple.CoreFoundation                0x000000010db3a062 __CFRunLoopDoSources0 + 242
    11  com.apple.CoreFoundation                0x000000010db397ef __CFRunLoopRun + 831
    12  com.apple.CoreFoundation                0x000000010db39275 CFRunLoopRunSpecific + 309
    13  com.apple.HIToolbox                     0x0000000115002f0d RunCurrentEventLoopInMode + 226
    14  com.apple.HIToolbox                     0x0000000115002cb7 ReceiveNextEventCommon + 479
    15  com.apple.HIToolbox                     0x0000000115002abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    16  com.apple.AppKit                        0x0000000111a1128e _DPSNextEvent + 1434
    17  com.apple.AppKit                        0x0000000111a108db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    18  com.apple.AppKit                        0x0000000111a049cc -[NSApplication run] + 553
    19  com.apple.AppKit                        0x00000001119ef803 NSApplicationMain + 940
    20  com.apple.XPCService                    0x0000000117839c0f _xpc_main + 385
    21  libxpc.dylib                            0x000000010ee01b2e xpc_main + 399
    22  com.apple.WebKit.WebContent             0x000000010cf16ba0 0x10cf16000 + 2976
    23  libdyld.dylib                           0x000000010eae95fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x000000010ec92e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010eda6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010eda9fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010ec93662 kevent64 + 10
    1   libdispatch.dylib                       0x000000010eaaf43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x000000010eaaf152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000010ec92e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010eda6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010eda9fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x000000010ec92e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010eda6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010eda9fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x000000010ec8ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010ec8dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010db3a315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010db39939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010db39275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x0000000111bb11ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9266 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x000000010f9a8d85 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x000000010f9a9718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x000000010f9a9718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x000000010f9a9718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 10:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x000000010ec8ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010ec8dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010db3a315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010db39939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010db39275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x000000010dbee9d1 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x0000000110157ab4 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff63f0bdb0  rbx: 0x00007fd533606db0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007fff63f0bf20  rsi: 0x0000000000000000  rbp: 0x00007fff52ce8060  rsp: 0x00007fff52ce8048
       r8: 0x00007fff63ef6b4c   r9: 0x0000000000000000  r10: 0x00007fff52ce7dd9  r11: 0x00007fff63f0bf20
      r12: 0x000000011ad65f30  r13: 0x000000011ad65f40  r14: 0x00007fff63f0bf20  r15: 0x000000011ad7bbd0
      rip: 0x00007fff63ed709d  rfl: 0x0000000000000246  cr2: 0x000000012dc53000
    Logical CPU:     2
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
           0x10cf16000 -        0x10cf16ff4  com.apple.WebKit.WebContent (9537 - 9537.71) <AEC9C0B3-A6B5-30E4-A5EE-480DAF65203F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x10cf1b000 -        0x10cf1bfff  WebProcessShim.dylib (7537.71) <023402A6-15F8-33C5-A734-560E0F234631> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x10cf20000 -        0x10d21ffff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10d463000 -        0x10d652ffc  com.apple.WebKit2 (9537 - 9537.71) <B8FFCE39-9DC6-304E-953A-0BAFDCD19D2F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x10d83d000 -        0x10d9eaf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x10da0c000 -        0x10da5efff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x10dabe000 -        0x10dabfff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x10dac9000 -        0x10dcaeff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10de22000 -        0x10de64ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x10de81000 -        0x10de82ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10de87000 -        0x10e03fff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
           0x10e0e9000 -        0x10e1d0ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x10e209000 -        0x10e21aff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x10e223000 -        0x10e393ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10e49b000 -        0x10e4feff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10e539000 -        0x10e53afff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
           0x10e53f000 -        0x10e797ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10e8e3000 -        0x10e8e3fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10e8ee000 -        0x10e8effff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x10e8fa000 -        0x10e964ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10e998000 -        0x10e9b3ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x10e9c0000 -        0x10e9e9ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x10e9f8000 -        0x10e9fcff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x10ea06000 -        0x10ea10fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x10ea22000 -        0x10ea29fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x10ea3a000 -        0x10ea41ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x10ea4c000 -        0x10ea9afff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x10eaac000 -        0x10eac6fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x10eae6000 -        0x10eae9ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x10eaf6000 -        0x10eaf6ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x10eb01000 -        0x10eb08ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x10eb11000 -        0x10eb16fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x10eb20000 -        0x10eb22ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x10eb2f000 -        0x10eb30ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x10eb3a000 -        0x10eb4bff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x10eb57000 -        0x10eb58ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x10eb63000 -        0x10ebecff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x10ec1c000 -        0x10ec1eff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x10ec2b000 -        0x10ec33fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x10ec3d000 -        0x10ec64ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x10ec7d000 -        0x10ec99ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x10ecc1000 -        0x10ecf0fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x10ed00000 -        0x10ed1bff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x10ed28000 -        0x10ed4fff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x10ed6f000 -        0x10ed78ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x10ed86000 -        0x10ed8cff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x10eda4000 -        0x10edabff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x10edbb000 -        0x10edbcff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x10edc2000 -        0x10edc6fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
           0x10edd3000 -        0x10edd4fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x10ede1000 -        0x10ede6ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x10edee000 -        0x10ee12fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x10ee30000 -        0x10ee40fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x10ee4b000 -        0x10ef35fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x10ef51000 -        0x10ef5eff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x10ef6a000 -        0x10ef6efff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x10ef74000 -        0x10ef74ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x10ef7f000 -        0x10ef8cff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x10ef96000 -        0x10f280fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10f302000 -        0x10f391fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10f3fc000 -        0x10f473fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10f51a000 -        0x10f587fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10f5cd000 -        0x10f628ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10f65d000 -        0x10f726fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10f7a2000 -        0x10f7cbfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10f7f0000 -        0x10f7f5fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10f804000 -        0x10f80bfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10f817000 -        0x10f822fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x10f82c000 -        0x10f837ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10f847000 -        0x10f8abff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10f8f1000 -        0x10f8f4fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x10f902000 -        0x10f919fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10f937000 -        0x10f941ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10f94e000 -        0x10f976ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x10f987000 -        0x10f987fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10f98c000 -        0x10f98cfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10f991000 -        0x10f991fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10f995000 -        0x10fd0bffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x10fe0a000 -        0x10ffa6ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x110080000 -        0x110ecdffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x111840000 -        0x111891ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1118bc000 -        0x11197eff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x1119ed000 -        0x112561ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x112ced000 -        0x11360905f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x113735000 -        0x11383afff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x1138a9000 -        0x113918ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113944000 -        0x1139cdfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113a15000 -        0x113a5aff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113a8d000 -        0x113a9cff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113aaf000 -        0x113afcff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113b2d000 -        0x113b66ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x113b83000 -        0x113b8cfff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x113b9f000 -        0x113ba2ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x113bab000 -        0x113babfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x113bb3000 -        0x113e87fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x113ecd000 -        0x113ecdfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x113ed6000 -        0x113fa1fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x113fb1000 -        0x114061ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x114074000 -        0x114455ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x1144bc000 -        0x11462aff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x114654000 -        0x114743fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x1147bd000 -        0x114804fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x11482d000 -        0x114851ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x114860000 -        0x1148b9fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x1148ce000 -        0x1148e9ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x1148f9000 -        0x1148fdff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x114906000 -        0x1149f4fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x114a21000 -        0x114a23fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x114a2d000 -        0x114a74ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x114a8e000 -        0x114aa7ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x114ac2000 -        0x114af1ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x114b17000 -        0x114b33fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x114b3e000 -        0x114c2fff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x114c43000 -        0x114ca7ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x114cd7000 -        0x114cd8fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x114cdf000 -        0x114ce3ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x114cea000 -        0x114cf6ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x114d0c000 -        0x114d15fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x114d1f000 -        0x114d92ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x114dd3000 -        0x114f26ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x114fbc000 -        0x114fc0fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x114fc8000 -        0x114fcbfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x114fd4000 -        0x11527effd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1153da000 -        0x1153ecfff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x11540c000 -        0x115498ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x1154ce000 -        0x1154e6ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x1154fb000 -        0x1154fcff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x115506000 -        0x115508ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x115511000 -        0x115519ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11552a000 -        0x11560efff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x1156d7000 -        0x115807ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x115888000 -        0x11589aff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x1158ae000 -        0x1158c6ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1158d7000 -        0x115911ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x115928000 -        0x115936fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x115941000 -        0x115966ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x115986000 -        0x115c54ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x115d4b000 -        0x115d9efff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x115dc9000 -        0x115e08fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x115e1e000 -        0x115e26ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x115e31000 -        0x115e3cfff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x115e53000 -        0x115e91ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x115e9c000 -        0x115e9efff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x115ea4000 -        0x115ea7fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x115eae000 -        0x1162e1ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x1164f9000 -        0x116503ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x116511000 -        0x11655ffff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x11657d000 -        0x116589ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x116594000 -        0x1165adff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x1165c7000 -        0x1165d4fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x1165eb000 -        0x11661bfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x116645000 -        0x11666aff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x116676000 -        0x1168befff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x1169e6000 -        0x116a1eff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x116a5d000 -        0x116a5dffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x116a66000 -        0x116aa7fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x1172fb000 -        0x1173beff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x11744b000 -        0x1174cbfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x1174e9000 -        0x117541ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x11758d000 -        0x1175bcfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x117838000 -        0x11783eff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
           0x117848000 -        0x117852fff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
           0x11785d000 -        0x117887ff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
           0x117890000 -        0x1178a3ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
           0x1178b8000 -        0x1178baff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
           0x1178c0000 -        0x1178c8fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
           0x1198f9000 -        0x119925fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x11998f000 -        0x11999cff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x11ae7a000 -        0x11b37affb  com.apple.Safari.framework (9537 - 9537.71) <C27DBF3C-7BE7-3422-9081-DE09461F9B62> /System/Library/PrivateFrameworks/Safari.framework/Safari
           0x11b761000 -        0x11b77fff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
           0x11b79d000 -        0x11b7baff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x11b7c6000 -        0x11b824ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
           0x11b861000 -        0x11b892ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
           0x11b8a2000 -        0x11b8d0ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x11b8fe000 -        0x11ba34ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x11bb28000 -        0x11bb2afff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
           0x11bb30000 -        0x11bb8ffff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x11bbcd000 -        0x11bbf7ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x11bc05000 -        0x11bc6bfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x11bcca000 -        0x11be85ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
           0x11bfd9000 -        0x11bfe3ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
           0x11c073000 -        0x11c075fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
           0x11c650000 -        0x11c658ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x11c660000 -        0x11c6fbff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/PDFKit
           0x11c76f000 -        0x11c7f7ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x11d203000 -        0x11d22bffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x11d23b000 -        0x11d35dff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
           0x11d475000 -        0x11d48cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
           0x11d49e000 -        0x11d4e7fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x11d515000 -        0x11d82fff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x11d8da000 -        0x11dd28fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x11dd83000 -        0x11ddcfffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x11ddf7000 -        0x11de0dfff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x11de25000 -        0x11df51fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x11df87000 -        0x11dfb6ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x11dfc1000 -        0x11dfc6ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
           0x11dfd1000 -        0x11e541fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x11e550000 -        0x11e5b0ff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
           0x11e5d7000 -        0x11e624fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff63ed6000 -     0x7fff63f09817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 23652
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=180.0M resident=86.6M(48%) swapped_out_or_unallocated=93.4M(52%)
    Writable regions: Total=1.1G written=10.6M(1%) resident=13.3M(1%) swapped_out=0K(0%) unallocated=1.1G(99%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG image                              260K
    CG shared images                      140K
    Dispatch continuations               8192K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    JS VM register file (reserved)       4096K        reserved VM address space (unallocated)
    JS garbage collector                  256K
    Kernel Alloc Once                       8K
    MALLOC                               40.4M
    MALLOC (admin)                         32K
    Memory Tag 242                         12K
    Memory Tag 251                         40K
    SQLite page cache                     256K
    STACK GUARD                          56.0M
    Stack                                12.6M
    VM_ALLOCATE                          16.4M
    WebKit Malloc                        1232K
    __DATA                               24.6M
    __IMAGE                               528K
    __LINKEDIT                           44.6M
    __TEXT                              135.5M
    __UNICODE                             544K
    mapped file                          34.3M
    shared memory                           4K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      375.7M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f41
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547575A9E384, 750,16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    Hi
    The crash occurs because either multiple JavaPlugins are installed on your HD, or you need to reinstall the latest Java Update.
    Go to your Finder: Your User Account>Library>Internet Plug Ins folder. If you see JavaPluginCocoa there, move it to the trash, then restart Safari.
    If there is no such plugin in that folder, reinstall the Java update using this download. In the event Safari is stable only for a short time preventing you from downloading the file again, first, go to Safari Preferences>Security and uncheck the Java option. Then try the download. After the install, restart Safari, go back to the Security Panel and select Java again.

  • Ld.so.1 problem - fatal: relocation error - "referenced symbol not found"

    Hi, I've been trying to compile and run my application non Solaris using CC (detils below) but haven't got luck with running the application because of a linker error :
    ld.so.1: java: fatal: relocation error: file ./libtest.so: symbol __1cDstdMbasic_string4Ccn0ALchar_traits4Cc__n0AJallocator4Cc___J__nullref_: referenced symbol not found
    Here's what I'm trying to do :
    I'm compieing one library to include another shared library whcih uses the "string" class (STL). The compilation of both the libraries proceeds perfectly fine. However, when i preload this library with LD_PRELOAD and run a JAVA application (which will have calls to some function in the preloaded library), the get the above linker error.
    Here's what all I have tries to get thsi wroking : ( I understand that this error is due to a missing library that CC has not linked to and i've no idea what the library is!!!)
    1.> # LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH
    # export LD_LIBRARY_PATH - NO LUCK :-(
    2.> linked to /opt/SUNWspro/lib/libCrun.so (found this from another forum on the net), but NO LUCK :-(
    3.> export LD_DEBUG=bindings
    export LD_DEBUG_OUTPUT=/home/log.txt (so that all sysmbols refered are logged!!!)
    i did a grep on the log for the symbol but NO LUCK!!! :-(
    Please can you help me with this? What is the library that is to be linked too, or is there something else?
    Details About my system, compiler and compilation options :
    1.> uname -a output : SunOS sh1sol9 5.9 Generic_117171-12 sun4u sparc SUNW,Sun-Fire-280R Solaris
    2.> CC version : Sun WorkShop 6 update 2 C++ 5.3
    3.> Compilation flags i've used to build the library :
    FIRST LIBRARY : CC -G -xcode=pic32 -I../common/ -ldl ../common/logger.cpp helper_functions.cpp BCPEntries.cpp BCP_class.cpp -o libBCP.so
    SECOND LIBRARY : CC -G -xcode=pic32 -I../common/ test_BCP_construct.cpp -lBCP -L. -o libtest.so
    Please help me out of this,
    Any and every help (or even a hint to it) will be appreciated!!!
    Thanks in advance,
    Madhur Kumar Tanwani

    Refer to the C++ Users Guide that comes with the compiler, the chapter on Building Libraries, which explains these points in more detail.
    When you build a C++ shared library, you must explicitly list all the libraries that it depends on. Unlike building an executable, the CC -G command does not by default create dependencies on system libraries. Although not explained well in the Guide, you should be sure you get the shared (.so) versions of all libraries, not the static (.a) versions.
    All C++ programs require at least libCrun and libc. Programs that use the C++ Standard library (using anything in the std namespace, like std::string) also need to link to the appropriate version of the library.
    The default library is libCstd. If you compile using the optional STLport library, you need the libstlport instead. You cannot use both libCstd and libstlport in the same program.
    In your case, the build command would look something like this, assuming you are using the default libCstd:
    CC -G -o mylib.so ..... -library=Cstd,Crun -lc
    Be sure that any preceeding -Bstaic option is followed by -Bdynamic before listing these system libraries.
    To verify you have picked up the dynamic libraries, run the command
    ldd mylib.so
    to see a list of dependencies. If you don't see the following in the list
    /usr/lib/libCstd
    /usr/lib/libCrun
    /usr/lib/libc (or /lib/libc)
    something is wrong.
    A note about LD_LIBRARY_PATH: don't use it.
    Ideally, the environment variable should never be set. If you must set it to reach vendor-supplied libraries, never put the system directories /lib or /usr/lib on the path, and never put the compiler installation directory, like /opt/SUNWspro/... on the path. You can wind up forcing the runtime loader to seach directories in the wrong order and pick up inappropriate versions of libraries.
    For more on LD_LIBRARY_PATH, read this note in Rod Evans' blog. He's the Sun linker expert. The material here is available in the manuals, but his blog has a nice summary.
    http://blogs.sun.com/roller/page/rie/?anchor=tt_ld_library_path_tt

  • Avoiding Error: referenced symbol not found in STL matrix

    Hi,
    in Sun WorkShop 6 update 2 C++ 5.3 2001/05/15 there is a well known problem when STL classes are used. For example, the following code:
    #include <vector>
    int main()
    std::vector<int> myVector;
    myVector.push_back(1);
    will cause a linking error:
    symbol std::vector::__insert_aux : referenced symbol not found.
    There is a workaround in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5069680
    Some recommended link options are provided in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5104725
    Once solved this problem, something similar happens when I try to build a matrix using nested templates std::vector:
    // Matrix defined in my class.
    class myClass
    public:
    std::vector<std::vector<double> > matrix;
    Of course, I want to use the matrix dynamically:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    object.matrix = std::vector<std::vector<double> > (Nrows);
    // etc ...
    This code will cause the following referenced symbol not found error at linking:
    $ echo __1cDstdGvector4n0AGvector4Cdn0AJallocator4Cd____n0AJallocator4n0C____2G6Mrk1_r1_ | c++filt
    std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >::operator=(const std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&)
    so the matter is that the operator = is not found for matrix as a nested template. std::vector::push_back method cannot also be used, as shown above.
    I have found a workaround to avoid this linking error:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    std::vector<std::vector<double> > auxiliarMatrix (Nrows);
    object.matrix.swap (auxiliarMatrix);
    // Now matrix can be filled:
    for(int nCont=0; nCont < Nrows; nCont++)
    std::vector<double> auxiliarVector;
    // Vector must be filled first...
    object.matrix[nCont] = auxiliarVector;
    // etc ...
    std::vector::swap method exchanges auxiliarMatrix and object.matrix, so now I have a matrix with the required size. And, very important, doesn't cause linking error in my case.
    Hope this may be useful for somebody.
    Bye.

    Hi,
    in Sun WorkShop 6 update 2 C++ 5.3 2001/05/15 there is a well known problem when STL classes are used. For example, the following code:
    #include <vector>
    int main()
    std::vector<int> myVector;
    myVector.push_back(1);
    will cause a linking error:
    symbol std::vector::__insert_aux : referenced symbol not found.
    There is a workaround in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5069680
    Some recommended link options are provided in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5104725
    Once solved this problem, something similar happens when I try to build a matrix using nested templates std::vector:
    // Matrix defined in my class.
    class myClass
    public:
    std::vector<std::vector<double> > matrix;
    Of course, I want to use the matrix dynamically:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    object.matrix = std::vector<std::vector<double> > (Nrows);
    // etc ...
    This code will cause the following referenced symbol not found error at linking:
    $ echo __1cDstdGvector4n0AGvector4Cdn0AJallocator4Cd____n0AJallocator4n0C____2G6Mrk1_r1_ | c++filt
    std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >::operator=(const std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&)
    so the matter is that the operator = is not found for matrix as a nested template. std::vector::push_back method cannot also be used, as shown above.
    I have found a workaround to avoid this linking error:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    std::vector<std::vector<double> > auxiliarMatrix (Nrows);
    object.matrix.swap (auxiliarMatrix);
    // Now matrix can be filled:
    for(int nCont=0; nCont < Nrows; nCont++)
    std::vector<double> auxiliarVector;
    // Vector must be filled first...
    object.matrix[nCont] = auxiliarVector;
    // etc ...
    std::vector::swap method exchanges auxiliarMatrix and object.matrix, so now I have a matrix with the required size. And, very important, doesn't cause linking error in my case.
    Hope this may be useful for somebody.
    Bye.

  • Apache: mod_wl.so: symbol ap_log_rerror: referenced symbol not found

    Hello.
    I am working with os solaris 64 and weblogic 12c.
    I installes weblogic and wiork fine, I compiled the apache and start without problem bt when I try to load the module for weblogic the apache no start.
    This is the sentences:
    ./configure prefix=$APACHE_HOME with-apr=$UTILS/apr with-apr-util=$UTILS/apr-util with-pcre=$UTILS/pcre enable-module=all enable-rule=SHARED_CODE --enable-so
    I did the make and make install without problem.
    I add the Load Module in the httpd.conf and fail the start:
    LoadModule weblogic_module /orasoft/product/middleware/apache/plugins/wlsapache/lib/mod_wl.so
    weblogic:sc-prodBD0-2:/orasoft/product/middleware/apache/conf>apachectl start
    httpd: Syntax error on line 507 of /orasoft/product/middleware/apache/conf/httpd.conf: Cannot load /orasoft/product/middleware/apache/plugins/wlsapache/lib/mod_wl.so into server: ld.so.1: httpd: fatal: relocation error: file /orasoft/product/middleware/apache/plugins/wlsapache/lib/mod_wl.so: symbol ap_log_rerror: referenced symbol not found
    What is wrong?
    Regards

    Hi,
    I am having same problem.added line in APACHE   httpd.conf  file
    LoadModule weblogic_module /u01/APACHE2/lib/mod_wl_24.so
    and following error:
    httpd: Syntax error on line 67 of /usr/apache2.4/conf/httpd.conf: Cannot load /u01/APACHE2/lib/mod_wl_24.so into server: ld.so.1: httpd: fatal: /u01/APACHE2/lib/mod_wl_24.so: wrong ELF class: ELFCLASS64
    i complied Apache 2.4.6  on solaris 10 u11. by using this procedure
    2) and pkg add, gcc-3.4.6-sol10-sparc-local    libgcc-3.3-sol10-sparc-local  libiconv-1.14-sol10-sparc-local  openssl-1.0.0j-sol10-sparc-local
    3) then install in this order   pcre, apr, apr-util  & then apache-httpd
    4) ./configure --prefix=/u01/APACHE2/pcre
      make
      make install
    5) ./configure --prefix=/u01/APACHE2/apr
      make
      make install
    6) ./configure --prefix=/u01/APACHE2/apr-util --with-apr=/u01/APACHE2/apr/
      make
      make install
    7) ./configure --prefix=/usr/apache2.4 --enable-so --enable-pie --enable-module=all --enable-mods-shared=all --enable-proxy --enable-proxy-connect --enable-
    proxy-ftp --enable-proxy-http --enable-proxy-ajp --enable-proxy-balancer --enable-ssl --enable-static-support --enable-static-htpasswd --enable-static-
    htdigest --enable-static-rotatelogs --enable-static-logresolve  --enable-substitute  --enable-rewrite --enable-cgi --enable-vhost --enable-imagemap --with-
    mpm=prefork --with-pcre=/u01/APACHE2/pcre/ --with-apr=/u01/APACHE2/apr --with-apr-util=/u01/APACHE2/apr-util/
      make
      make install

  • Safari 4 won't load - Symbol not found: _WebActionFormKey

    I'm really frustrated with this problem. I'm hoping someone from Apple monitors these posts, since I can't find any way to post a bug report. This is the family computer, and it doesn't have any add-ons or plug-ins for Safari. I have deliberately avoided geeking with this box, and I don't want to start now. I hope Apple will issue a patch promptly.
    Host Name: Family-Computer
    Date/Time: 2009-06-14 19:47:00.021 -0400
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [484]
    Version: 4.0 (4530.17)
    PID: 2525
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _WebActionFormKey
    Referenced from: /Applications/Safari.app/Contents/MacOS/Safari
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit

    Hi,
    I'm hoping someone from Apple monitors these posts
    Sorry, I'm afraid not, just us fellow users here.
    I hope Apple will issue a patch promptly
    There's nothing to patch in this case. It simply seems to be the case that the installation failed (for whatever reason - a problem with your hard disk maybe?).
    If you still have the installation package, see if you can re-run it. If not try downloading a fresh copy from www.apple.com/safari/download.
    I have a feeling the installer requires WebKit (which is the improperly installed part) so the installer may not run either. If that's the case, post back.

  • Safari 7.0.6 crashes: Dyld Error Message: Symbol Not Found

    After I did the latest MacOS update (10.9.5) Safari (7.0.6) no longer runs. I repaired permissions and also rebooted in safe mode so I could potentially remove any spurious plug-ins, but the last time I did this was with MaxOS 6 so I have no idea where to look in the current version.
    The error message that pops up is:
    Process:         Safari [1279]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         ???
    Build Info:      WebBrowser-7537085010017001~4
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [194]
    Responsible:     Safari [1279]
    User ID:         505
    Date/Time:       2014-09-26 08:16:17.066 +1000
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  84ADDFB5-CAD4-0759-3667-8E0B47E8E995
    Sleep/Wake UUID: 51EC656E-25AB-4167-810D-D7A644340E28
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries, ignoring DYLD_* env vars
    Dyld Error Message:
    Symbol not found: __ZN3JSC10JSDataView6s_infoE
    Referenced from: /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    in /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    (insert a 'shed load' of other lines of log data which you probably don't need, right?)

    If you don't already have a current backup, back up all data, then reinstall the OS.* You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used.
    If you use FileVault 2, then before running the Installer you must launch Disk Utility and select the icon of the FileVault startup volume ("Macintosh HD," unless you gave it a different name.) It will be nested below another icon with the same name. Click the Unlock button in the toolbar and enter your login password when prompted. Then quit Disk Utility to be returned to the main Recovery screen.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode. All other data will be preserved.
    *The linked support article refers to OS X 10.9 ("Mavericks"), but the procedure is the same for OS X 10.7 ("Lion") and later.

  • Workshop 5.0, Sol 2.7/64-bit: "referenced symbol not found"

    One of our customers reports that "some" of their Sol2.7 machines cannot run our 64-bit software (compiled with -xarch=v9).
    % a.out
    ld.so.1: a.out: fatal: relocation error: file a.out: symbol __1cDstdJbad_allocG__vtbl_: referenced symbol not found
    Killed
    On the machines where our stuff doesn't run, this message is seen with all of the executables we provide, and even with trivial test programs. The same symbol name is shown every time.
    We are using
    % CC -V
    CC: WorkShop Compilers 5.0 98/12/15 C++ 5.0
    and ldd on a test program shows this:
    % ldd a.out
    libCrun.so.1 => /usr/lib/sparcv9/libCrun.so.1
    libm.so.1 => /usr/lib/sparcv9/libm.so.1
    libw.so.1 => /usr/lib/sparcv9/libw.so.1
    libc.so.1 => /usr/lib/sparcv9/libc.so.1
    libdl.so.1 => /usr/lib/sparcv9/libdl.so.1
    /usr/platform/SUNW,Ultra-4/lib/sparcv9/libc_psr.so.1
    Any ideas? Thanks.

    Try a 'ldd -r' on your shared library. My bet is you will receive tons of unresolved symbols. You have to eliminate them all. In my case, -lCrun helped a lot and reduced the number of missing symbols radically. Some were still missing, though, and I was quite sure to take care of those with -lCstd (Note that the manual says that both are included by default...). Didn't help, but I just found a hint that the libC shipped with Solaris might need a patch...

  • SUNWcry_installed: referenced symbol not found

    We have installed some patches on our solaris server. After installationw hen we are trying to open SSH connection from that host to any another we are getting this error:
    ssh: fatal: relocation error: file /usr/bin/ssh: symbol SUNWcry_installed: referenced symbol not found
    LDD check gave the below results :
    libsocket.so.1 => /lib/libsocket.so.1
    libnsl.so.1 => /lib/libnsl.so.1
    libz.so.1 => /usr/lib/libz.so.1
    libcrypto.so.0.9.7 => /opt/symas/lib/libcrypto.so.0.9.7
    libgss.so.1 => /usr/lib/libgss.so.1
    libc.so.1 => /lib/libc.so.1
    libmp.so.2 => /lib/libmp.so.2
    libmd.so.1 => /lib/libmd.so.1
    libscf.so.1 => /lib/libscf.so.1
    libdl.so.1 => /lib/libdl.so.1
    libcmd.so.1 => /lib/libcmd.so.1
    libdoor.so.1 => /lib/libdoor.so.1
    libuutil.so.1 => /lib/libuutil.so.1
    libgen.so.1 => /lib/libgen.so.1
    libm.so.2 => /lib/libm.so.2
    /platform/SUNW,Sun-Fire-T200/lib/libc_psr.so.1
    /platform/SUNW,Sun-Fire-T200/lib/libmd_psr.so.1
    Please advice.

    That look sensible enough.
    On my system ldd output looks like this
    directory4# ldd /usr/bin/ssh
            libsocket.so.1 =>        /lib/libsocket.so.1
            libnsl.so.1 =>   /lib/libnsl.so.1
            libz.so.1 =>     /usr/lib/libz.so.1
            libcrypto.so.0.9.7 =>    /usr/sfw/lib/libcrypto.so.0.9.7
            libgss.so.1 =>   /usr/lib/libgss.so.1
            libc.so.1 =>     /lib/libc.so.1
            libmp.so.2 =>    /lib/libmp.so.2
            libmd.so.1 =>    /lib/libmd.so.1
            libscf.so.1 =>   /lib/libscf.so.1
            libcmd.so.1 =>   /lib/libcmd.so.1
            libdoor.so.1 =>  /lib/libdoor.so.1
            libuutil.so.1 =>         /lib/libuutil.so.1
            libgen.so.1 =>   /lib/libgen.so.1
            libcrypto_extra.so.0.9.7 =>      /usr/sfw/lib/libcrypto_extra.so.0.9.7
            libm.so.2 =>     /lib/libm.so.2
            /platform/SUNW,Sun-Fire-V210/lib/libc_psr.so.1
            /platform/SUNW,Sun-Fire-V210/lib/libmd_psr.so.1so you can see your picking up stuff from /opt/symas/lib inappropriately.
    That can be caused by either setting LD_LIBRARY_PATH or using crle.
    What does crle show.
    Mine show
    directory4# crle
    Default configuration file (/var/ld/ld.config) not found
      Default Library Path (ELF):   /lib:/usr/lib  (system default)
      Trusted Directories (ELF):    /lib/secure:/usr/lib/secure  (system default)

  • Referenced symbol not found

    Hi,
    I'm trying to migrate a program from Solaris2.6 with the 4.2 C++ compiler to Solaris 2.8 with the 6.3 C++ compiler.
    The compilation and link works fine. I then try to use a dynamic library obtained to run python test on my server and I get the following error:
    ImportError: ld.so.1: python: fatal: relocation error: file /space4/users/bmicha/livr/sem/lib/libpy_oss_orp.so: symbol __1cDstd2l6Frn0ANbasic_ostream4Ccn0ALchar_traits4Cc____pkc_2_: referenced symbol not found
    The symbol is defined in the libCstd.a library.
    The compilation option I use are:
    CC -c -library=rwtools7_std -I/opt/SUNWSPRO/WS6U2/include/CC -pto -I/space4/users/bmicha/sem/../brique/include -I/space2/integre/export/include -DSYSTEM_SunOS -DUSE_MULTITHREAD -D_REENTRANT -DCTBP_NDEBUG -DCTBO_NDEBUG -g -I/usr/local/include/python2.2 -D_REENTRANT -I/opt/iona/include
    I'd be very greatfull if anyone could tell me how I can get this symbol defined in the dynamic library?
    Thanks

    Problems like this one are usually caused by a bad LD_LIBRARY_PATH environment variable. Since the symbol for which your application is looking is in a standard library, you should not need to specifically reference the directory.
    Try a couple things:
    1) % ldd <application name>
    This should give you a list of libraries that your application will try to dynamically load.
    Example:
    % ldd /usr/bin/strings
    libelf.so.1 => /usr/lib/libelf.so.1
    libc.so.1 => /usr/lib/libc.so.1
    libdl.so.1 => /usr/lib/libdl.so.1
    /usr/platform/SUNW,Ultra-250/lib/libc_psr.so.1
    If any of the libraries are undefined, then your LD_LIBRARY_PATH is messed up.
    2) unsetenv LD_LIBRARY_PATH
    or
    LD_LIBRARY_PATH=
    export LD_LIBRARY_PATH
    if you're running /bin/sh
    3) Try the ldd again and see if the libraries are all
    being picked up now.

  • Referenced symbol not found error

    Hello,
    I am using Solaris 5.6 and CC(Sun native) compiler 5.0.
    I build Xalan1.0 (C++ version) in Solaris and created necessary '.so' files. If I use this '.so' in my development environment, while runing my program it is showing the following error.
    "/home/kvelu/EDP_R1_GA_1114/EDPSERVER/SOLARISDEBUG/Bin/EDPServer: fatal: relocation error: file /home/kvelu/EDP_R1_GA_1114/SOFTWARE/SOLARISDEBUG/BIN/libxalan-c1_0.so: symbol __1cDstdGvector4Cbn0AJallocator4Cb___M__insert_aux6Mn0CIiterator_b_v_: referenced symbol not found"
    The demangling of this symbol is
    void std::vector<bool,std::allocator<bool> >::__insert_aux(std::vector<bool,std::allocator<bool> >::iterator,bool)
    Then I added some more options in the Xalan Makefile like "-library=iostream,Crun" compiler option and "-liostream -lCrun -lc -ltls7d" link option. Again I got the same error. Instead of "lc" I used "lCstd" also, again not solved.
    Can any body give me which compiler option and link option I must use to avoid this problem?
    Thanks
    kalees.

    Hi Kalees,
    I know this error quite well but I don't know if the cause is the same, because your environment seems to be different.
    Anyway you can take a look on thread:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5069680
    If vectors causing the error are in your library you can try to solve it using the solution suggested there, but if those vectors are in external linked libraries maybe you have no chance, so you need to update the compiler or the Workshop environment (Sun Studio nowadays).
    Good luck.
    Bye.

  • Ldopen() failed:ld.s0.1: fatal: relocation error: ..symbol not found

    Hi All,
    I got the following fatal error when running my application:
    dlopen() failed:ld.so.1: delosd: fatal: relocation error: file libwellbuilder.so.1: symbol __1cDstdM__node_alloc4BiA_N_M_deallocate6FpvI_v_: referenced symbol not found
    I compile and link with option -library=stlport4,Crun
    I check the libwellbuilder.so.1 but don't see stlport lib at all. Not sure in what lib the undefined symbol is defined.
    ldd libwellbuilder.so.1
    libconfig.so.1 => /mnt/calnas02/home/zik31726/libs/server/libconfig.so.1
    liblogging.so.1 => /mnt/calnas02/home/zik31726/libs/server/liblogging.so.1
    libtiff.so.1 => (file not found)
    libcdm.so.1 => (file not found)
    libdelos.so.1 => /mnt/calnas02/home/zik31726/libs/server/libdelos.so.1
    libdbaccess.so.1 => (file not found)
    libxtiff.so.1 => (file not found)
    libsrvutil.so.1 => /mnt/calnas02/home/zik31726/libs/server/libsrvutil.so.1
    libdbprovider.so.1 => (file not found)
    libsrvnet.so.1 => /mnt/calnas02/home/zik31726/libs/server/libsrvnet.so.1
    libloader.so.1 => /mnt/calnas02/home/zik31726/libs/server/libloader.so.1
    libiss_conf.so.1 => /mnt/calnas02/home/zik31726/libs/server/libiss_conf.so.1
    libCrun.so.1 => /*usr/lib/libCrun.so.1*
    libmd5.so.1 => /usr/lib/libmd5.so.1
    libsocket.so.1 => /usr/lib/libsocket.so.1
    libc.so.1 => /usr/lib/libc.so.1
    libnsl.so.1 => /usr/lib/libnsl.so.1
    libdl.so.1 => /usr/lib/libdl.so.1
    libmp.so.2 => /usr/lib/libmp.so.2
    /usr/platform/SUNW,Ultra-250/lib/libmd5_psr.so.1
    /usr/platform/SUNW,Ultra-250/lib/libc_psr.so.1
    My solaris system is as following:
    CC -V: CC: Sun C++ 5.8 2005/10/13
    uname -a: SunOS dlp001 5.9 Generic_122300-32 sun4u sparc SUNW,Ultra-250System = SunOS
    If you know how to resolve this issue, please let me know.
    Thanks,
    Iceman

    Thanks for your quick response.
    Here is the compiling line, I cut off some due it exceed 5000 line:
    /sw/opt/SUNWspro/bin/CC -KPIC -zdefs -library=stlport4 -library=stlport4,Crun -lm -lc -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.config/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.logging/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.vendor.lib.libtiff/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/nsl/1.1 -I/usr/include/test -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.loader/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.issconf/1.0 -DSunOS=900000 -g -DUNIX -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.config/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.util/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.dbprovider/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.net/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.loader/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.issconf/1.0 -c CurveDigits.cpp -o CurveDigits.cpp_So.o
    /usr/ccs/bin/ld -o CurveDigits.So -r CurveDigits.cpp_So.o
    /bin/rm CurveDigits.cpp_So.o
    And linking line:
    /sw/opt/SUNWspro/bin/CC -Bdynamic -G -zdefs -library=stlport4 -library=stlport4,Crun -lm -lc -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.config/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.logging/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.vendor.lib.libtiff/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.loader/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.issconf/1.0 -DSunOS=900000 -g -DUNIX -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.config/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.logging/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.loader/1.0 -I/mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.issconf/1.0 -o libwellbuilder.so.1 -h libwellbuilder.so.1 *.So -L /mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.config/1.0 -lconfig -L /mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.logging/1.0 -llogging -lxtiff -L /mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.util/1.0 -lsrvutil -L /mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.dbprovider/1.0 -ldbprovider -L /mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.net/1.0 -lsrvnet -L /mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.loader/1.0 -lloader -L /mnt/calnas02/home/zik31726/devcm/workspaces/merge_server/inst/SunOS-5.9-sun4u/NativeLibrary/src.server.lib.issconf/1.0 -liss_conf

  • Symbol __SUNW_init_wiostreams: referenced symbol not found

    We have an executable built with the 5.2 compiler that fails on Solaris 10 with the 119963-08 patch installed. It gets the error in the subject line:
    ld.so.1: <executable>: fatal: relocation error: file <full path to exe>: symbol __SUNW_init_wiostreams: referenced symbol not found
    However, if we remove the patch, the executable runs just fine. We do not link libCstd statically; all system libs are linked dynamically.
    Any suggestions on how to track this down?

    please refer infoDoc#89603, recompile the program will resolve the issue, then could you please send your app sample code to me ([email protected]) so that I can made the doc more perfect.

  • Symbol __mt_MasterFunction_: referenced symbol not found

    I am trying to build a matlab s-function using Sun Studio 10 compilers. The program compiles but when I try to load it into matlab I get
    ??? Invalid MEX-file '/export/ford/sl0473/u/jmccall4/+Work/GMP_data/Release_tests_6/gmp_cf_4_state_gui_redo/gmp_4_state_base_gmp_mex.mexsol': ld.so.1: /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/MATLAB: fatal: relocation error: file /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfai_isa.so.3: symbol __mt_MasterFunction_: referenced symbol not found.
    This is a mixed Fortran and C program.
    The fortran code is compiled with
    f90 -c -I/apps/matlab/14sp3.p/vendor/extern/include -I/apps/matlab/14sp3.p/vendor/simulink/include -KPIC -C -e -u -O2 -v -r8const -mt -xopenmp base_main.f
    The C code with
    cc -c -I/apps/matlab/14sp3.p/vendor/extern/include -I/apps/matlab/14sp3.p/vendor/simulink/include -DMATLAB_MEX_FILE -KPIC -xO2 -xlibmieee -D__EXTENSIONS__ -D_POSIX_C_SOURCE=199506L -mt -xopenmp -D_XOPEN_SOURCE=600 -xlibmil -DNDEBUG base_mex.c
    and the link is done with
    f90 -xO2 -G -mt -xopenmp -M/apps/matlab/14sp3.p/vendor/extern/lib/sol2/fexport.map -o base_mex.mexsol base_main.o base_mex.o /apps/matlab/14sp3.p/vendor/extern/lib/sol2/version4.o my_base_main.a -L/apps/matlab/14sp3.p/vendor/bin/sol2 -lmx -lmex -lmat -lm -lc -L/apps/matlab/14sp3.p/vendor/bin/sol2 -lmx -lmex -lmat -lfui -lfai -lfai2 -lfsumai -lfprodai -lfminlai -lfmaxlai -lfminvai -lfmaxvai -lfsu -lsunmath -lm -lc -lmtsk
    an elfdump of the mtsk library leads me to believe the __mt_MasterFunction_ is defined in that library.
    How can I compile this so it will run in Matlab?
    James.

    I am running Solaris 2.8.
    The output from ldd is
    !ldd gmp_4_state_base_gmp_mex.mexsollibmx.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmx.so
    libmex.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmex.so
    libmat.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmat.so
    libm.so.1 => /usr/lib/libm.so.1
    libc.so.1 => /usr/lib/libc.so.1
    libfui.so.2 => /opt/SUNWspro/lib/libfui.so.2
    libfai.so.3 => /opt/SUNWspro/lib/v8plus/libfai.so.3
    libfai2.so.3 => /opt/SUNWspro/lib/v8plus/libfai2.so.3
    libfsumai.so.1 => /opt/SUNWspro/lib/v8plus/libfsumai.so.1
    libfprodai.so.1 => /opt/SUNWspro/lib/v8plus/libfprodai.so.1
    libfminlai.so.1 => /opt/SUNWspro/lib/v8plus/libfminlai.so.1
    libfmaxlai.so.1 => /opt/SUNWspro/lib/v8plus/libfmaxlai.so.1
    libfminvai.so.1 => /opt/SUNWspro/lib/v8plus/libfminvai.so.1
    libfmaxvai.so.1 => /opt/SUNWspro/lib/v8plus/libfmaxvai.so.1
    libfsu.so.1 => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/sys/os/sol2/libfsu.so.1
    libsunmath.so.1 => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/sys/os/sol2/libsunmath.so.1
    libmtsk.so.1 => /usr/lib/libmtsk.so.1
    libut.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libut.so
    libicudata.so.32 => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libicudata.so.32
    libicuuc.so.32 => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libicuuc.so.32
    libicui18n.so.32 => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libicui18n.so.32
    libicuio.so.32 => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libicuio.so.32
    libw.so.1 => /usr/lib/libw.so.1
    librt.so.1 => /usr/lib/librt.so.1
    libz.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libz.so
    libpthread.so.1 => /usr/lib/libpthread.so.1
    libCstd.so.1 => /usr/lib/libCstd.so.1
    libCrun.so.1 => /usr/lib/libCrun.so.1
    libmwmvalue.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmwmvalue.so
    libmwservices.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmwservices.so
    libmwmpath.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmwmpath.so
    libmwm_dispatcher.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmwm_dispatcher.so
    libdl.so.1 => /usr/lib/libdl.so.1
    libMTwister.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libMTwister.so
    libaio.so.1 => /usr/lib/libaio.so.1
    libxnet.so.1 => /usr/lib/libxnet.so.1
    libnsl.so.1 => /usr/lib/libnsl.so.1
    libcurses.so.1 => /usr/lib/libcurses.so.1
    libmwdatasvcs.so => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libmwdatasvcs.so
    libxerces-c.so.26 => /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/bin/sol2/libxerces-c.so.26
    libmp.so.2 => /usr/lib/libmp.so.2
    libsocket.so.1 => /usr/lib/libsocket.so.1
    /usr/platform/SUNW,Sun-Blade-2500/lib/libc_psr.so.1
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfai_isa.so.3
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfai2_isa.so.3
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfsumai_isa.so.1
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfprodai_isa.so.1
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfminlai_isa.so.1
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfmaxlai_isa.so.1
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfminvai_isa.so.1
    /opt/SUNWspro/prod/lib/cpu/sparcv9+vis2/libfmaxvai_isa.so.1
    /apps/avcae-fsabs/1.0/common/mathworks/matlab/14sp3.p/vendor/sys/os/sol2/cpu/sparcv8plus+vis/libfsu_isa.so.1
    libthread.so.1 => /usr/lib/lwp/libthread.so.1
    /usr/lib/cpu/sparcv8plus/libCstd_isa.so.1
    libmtsk is in the ldd list, but it appears earlier in the list than libfai2_isa.so.3, which has the unresolved symbol. Is the list order relevant?

  • Symbol kglsimlat_p: referenced symbol not found

    Hi,
    anyone have ever encountered this error
    ld.so.1: rman: fatal: relocation error: file /app/oracle/product/10.2.0/bin/rman: symbol kglsimlat_p: referenced symbol not found
    I am getting this error from my EM Grid Control webpage while doing backup.
    In the BACKUP step webpage.
    Below is the complete output log
    ===============================================================
    Output Log
    SQL*Plus: Release 10.2.0.2.0 - Production on Thu Jul 27 16:52:16 2006
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    SQL> SQL> Connected.
    SQL> SQL> SQL> Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.2.0.2.0 - Production on Thu Jul 27 16:52:42 2006
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    SQL> SQL> Connected to an idle instance.
    SQL> SQL> ORACLE instance started.
    Total System Global Area 524288000 bytes
    Fixed Size          2030168 bytes
    Variable Size          171967912 bytes
    Database Buffers     343932928 bytes
    Redo Buffers          6356992 bytes
    Database mounted.
    SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ld.so.1: rman: fatal: relocation error: file /app/oracle/product/10.2.0/bin/rman: symbol kglsimlat_p: referenced symbol not found
    SQL*Plus: Release 10.2.0.2.0 - Production on Thu Jul 27 16:52:49 2006
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    SQL> SQL> Connected.
    SQL> SQL>

    Hi,
    I am using Oracle 10g rel 2 (OMS & Database) on Solaris 10.
    I read somewhere that the problem is with the LD_LIBRARY_PATH.
    I set the LD_LIBRARY_PATH to ${ORACLE_HOME}/lib, but it still doesn't work.
    When I ran RMAN manually from the telnet terminal, it works okay.
    Thanks

  • Symbol log: referenced symbol not found

    Hello,
    We are running Netscape Directory Server 4.16 in our mailserver (iMS 5.2).Sometimes the ldap process scratch and when we start it (start-slapd), we receive the following error message:
    ld.so.1: ./ns-slapd: fatal: relocation error: file /usr/iplanet/server5/bin/msg/
    lib/libnsuni31.so: symbol log: referenced symbol not found
    Killed
    But when we restart the host, the ldap process starts whithout any error.
    Could anyone help us understand and fix this problem?Because, we could not restart our mailserver everytime the ldap process goes down!!!
    Any contributions are wellcome.
    Thanks in advance
    Best Regards.

    It looks like you have set LD_LIBRARY_PATH somewhere and the slapd process is picking up the wrong version of the shared libraries.

Maybe you are looking for