Pierre Doyon wrote:
Hi Juergen,


Stephan Bergmann wrote:
On 08/29/08 14:36, Pierre Doyon wrote:
Hi Stephan,

On 08/28/08 18:32, Pierre Doyon wrote:
Hi,
The undefined symbols come from the following warnings
ld: warning can't open dynamic library: @loader_path/libuno_sal.dylib.3 referenced from: /Users/pdoyon/OpenOffice.org3.0_SDK/macosx/lib/libuno_cppuhelpergcc3.dylib (checking for undefined symbols may be affected) (No such file or directory, errno = 2) ld: warning can't open dynamic library: @loader_path/libuno_salhelpergcc3.dylib.3 referenced from: /Users/pdoyon/OpenOffice.org3.0_SDK/macosx/lib/libuno_cppuhelpergcc3.dylib (checking for undefined symbols may be affected) (No such file or directory, errno = 2) ld: warning can't open dynamic library: @loader_path/libuno_cppu.dylib.3 referenced from: /Users/pdoyon/OpenOffice.org3.0_SDK/macosx/lib/libuno_cppuhelpergcc3.dylib (checking for undefined symbols may be affected) (No such file or directory, errno = 2)
ld: Undefined symbols:

Can you quote the complete gcc command line that outputs the above ld errors?

-Stephan


Here is the complete gcc command:

gcc -malign-natural -c -O -fPIC -fno-common -I. -I/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/inc -I/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/inc/examples -I../../../../include -I/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/inc/CppComponentSample -DUNX -DGCC -DMACOSX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.0.0 -o/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/slo/CppComponentSample/service1_impl.o service1_impl.cxx mkdir -p /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/slo/CppComponentSample

gcc -malign-natural -c -O -fPIC -fno-common -I. -I/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/inc -I/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/inc/examples -I../../../../include -I/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/inc/CppComponentSample -DUNX -DGCC -DMACOSX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.0.0 -o/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/slo/CppComponentSample/service2_impl.o service2_impl.cxx

Here is the g++ command:
g++ -dynamiclib -single_module -Wl,-multiply_defined,suppress -Wl,-exported_symbols_list /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/misc/CppComponentSample/CppComponent.uno.map -L/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/lib -L/Users/pdoyon/OpenOffice.org3.0_SDK/macosx/lib -L"/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib" -o /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/lib/CppComponent.uno.dylib /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/slo/CppComponentSample/service1_impl.o /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/slo/CppComponentSample/service2_impl.o \ -luno_cppuhelpergcc3 -luno_cppu -luno_sal -Wl,-dylib_file,@__________________________________________________URELIB/libuno_cppuhelpergcc3.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppuhelpergcc3.dylib -Wl,-dylib_file,@__________________________________________________URELIB/libuno_cppu.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppu.dylib -Wl,-dylib_file,@__________________________________________________URELIB/libuno_sal.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_sal.dylib
-Wl,-dylib_file,@loader_path/libuno_sal.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_sal.dylib and similar for libuno_salhelpergcc3.dylib.3 and libuno_cppu.dylib.3 are missing from the above g++ command line. You link against @__________________________________________________URELIB/libuno_cppuhelpergcc3.dylib.3, which really is /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppu.dylib (the -Wl,dylib_file,@... already present), which has a dependency on @loader_path/libuno_sal.dylib.3, which ld wants to resolve, and it appears that ld does not figure out the correct value for "@loader_path" itself (although it probably could) and you must instead also tell it explicitly (via the additional -Wl,-dylib_file,@loader... that is missing) where to look. Also see solenv/bin/macosx-dylib-link-list.pl:1.3 which computes the necessary -Wl,-dylib_file arguments in OOo builds.

Pierre can you please test this? It seems that we have to improve the SDK env here. Maybe it is PPC specific because it works for me on Intel.

Thanks

Juergen



I process the following g++ command with sucess.
g++ -dynamiclib -single_module -Wl,-multiply_defined,suppress -Wl,-exported_symbols_list /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/misc/CppComponentSample/CppComponent.uno.map -L/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/lib -L/Users/pdoyon/OpenOffice.org3.0_SDK/macosx/lib -L"/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib" -o /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/lib/CppComponent.uno.dylib /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/slo/CppComponentSample/service1_impl.o /Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/slo/CppComponentSample/service2_impl.o -luno_cppuhelpergcc3 -luno_cppu -luno_sal -Wl,-dylib_file,@__________________________________________________URELIB/libuno_cppuhelpergcc3.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppuhelpergcc3.dylib -Wl,-dylib_file,@__________________________________________________URELIB/libuno_cppu.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppu.dylib -Wl,-dylib_file,@__________________________________________________URELIB/libuno_sal.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_sal.dylib -Wl,-dylib_file,@loader_path/libuno_sal.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_sal.dylib.3 -Wl,-dylib_file,@loader_path/libuno_salhelpergcc3.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_salhelpergcc3.dylib.3 -Wl,-dylib_file,@loader_path/libuno_cppu.dylib.3:/Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppu.dylib.3
ok, looks good. I have to improve the SDK here. Can you please submit an issue for this problem to me (component sdk, owner jsc)




Then, I run the makefile to install the Component and the execution freeze on this command "/Applications/OpenOffice.org.app/Contents/MacOS/unopkg" add -f "/Users/pdoyon/OpenOffice.org3.0_SDK/MACOSXexample.out/bin/CppComponent.oxt".

that is probably a different problem. I had many deadlocks during my testing as well. The current situation is much better than at the beginning but still not 100% satisfying. The related issue is 92214.
Have you tried to install it via the extensions manager UI in the office?

Juergen


I got the "uno.bin.crash.log" file on de Crash Reporter folder. Here is the content of this file.

Host Name:      Pierre-Doyon-2
Date/Time:      2008-08-29 14:17:41.668 -0400
OS Version:     10.4.11 (Build 8S165)
Report Version: 4

Command: uno.bin
Path: /Applications/OpenOffice.org.app/Contents/basis-link/program/../ure-link/bin/uno.bin
Parent:  unopkg [27121]

Version: 3.0.0 (???)

PID:    27122
Thread: 0

Exception:  EXC_BAD_INSTRUCTION (0x0002)
Code[0]:    0x00000002
Code[1]:    0x000ff974


Thread 0 Crashed:
0   <<00000000>>     0x000ff974 0 + 1046900
1 libuno_cppuhelpergcc3.dylib.3 0x003f5f34 cppu::createComponentContext(cppu::ContextEntry_Init const*, long, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) + 8948
2   libgcc3_uno.dylib                  0x004ea3c0 0x4e5000 + 21440
3   libgcc3_uno.dylib                  0x004eae14 0x4e5000 + 24084
4   libgcc3_uno.dylib                  0x004eb710 0x4e5000 + 26384
5 libuno_cppu.dylib.3 0x00053010 uno_Environment_enter + 388 6 libuno_cppu.dylib.3 0x0005314c uno_Environment_invoke + 140 7 libuno_cppu.dylib.3 0x00052278 uno_EnvDcp_getPurpose + 5312 8 libunsafe_uno_uno.dylib 0x007ce278 UnsafeBridge::v_callInto_v(void (*)(char**), char**) + 56
9   libuno_cppu.dylib.3                0x00064fa4 0x3d000 + 163748
10 libuno_cppu.dylib.3 0x000522e0 uno_EnvDcp_getPurpose + 5416 11 libuno_cppu.dylib.3 0x00053044 uno_Environment_enter + 440 12 libuno_cppu.dylib.3 0x000530ac uno_Environment_invoke_v + 48 13 libuno_cppu.dylib.3 0x000530f4 uno_Environment_invoke + 52 14 ...o_purpenvhelpergcc3.dylib.3 0x007d6474 cppu::helper::purpenv::createMapping(_uno_Mapping**, _uno_Environment*, _uno_Environment*, void (*)(bool, void*, void*, _typelib_TypeDescriptionReference*, _typelib_MethodParameter*, long, _typelib_TypeDescription const*, void*, void**, _uno_Any**), void*) + 2468 15 ...o_purpenvhelpergcc3.dylib.3 0x007d66e8 cppu::helper::purpenv::createMapping(_uno_Mapping**, _uno_Environment*, _uno_Environment*, void (*)(bool, void*, void*, _typelib_TypeDescriptionReference*, _typelib_MethodParameter*, long, _typelib_TypeDescription const*, void*, void**, _uno_Any**), void*) + 3096
16  libgcc3_uno.dylib                  0x004e92e8 0x4e5000 + 17128
17  libgcc3_uno.dylib                  0x004e9af8 0x4e5000 + 19192
18 libuno_cppuhelpergcc3.dylib.3 0x003d4e4c cppu::createNestedRegistry(rtl::OUString const&) + 4556 19 libuno_cppuhelpergcc3.dylib.3 0x003d913c cppu::BootstrapException::BootstrapException[in-charge](cppu::BootstrapException const&) + 7884 20 libuno_cppuhelpergcc3.dylib.3 0x003d9714 cppu::defaultBootstrap_InitialComponentContext() + 36
21  uno.bin                            0x0000a138 main + 11304
22  uno.bin                            0x00002a9c start + 812
23  uno.bin                            0x000027a0 start + 48

Thread 1:
0 libSystem.B.dylib 0x90054388 semaphore_timedwait_signal_trap + 8 1 libSystem.B.dylib 0x900541e4 pthread_cond_timedwait + 676
2   libuno_sal.dylib.3                 0x0021a898 rtl_cache_create + 664
3   libSystem.B.dylib                  0x9002bd08 _pthread_body + 96

Thread 0 crashed with PPC Thread State 64:
srr0: 0x00000000000ff974 srr1: 0x100000000208f030 vrsave: 0x0000000000000000 cr: 0x24004404 xer: 0x0000000000000000 lr: 0x00000000003f517c ctr: 0x00000000000ff974 r0: 0x00000000000ff974 r1: 0x00000000bfffd410 r2: 0x00000000000ff8e0 r3: 0x00000000005181d4 r4: 0x00000000005166e4 r5: 0x00000000bfffd494 r6: 0x00000000bfffd470 r7: 0x0000000000000003 r8: 0x0000000000000003 r9: 0x0000000000000016 r10: 0x0000000000518200 r11: 0x0000000022004224 r12: 0x00000000000ff974 r13: 0x000000000046487c r14: 0x00000000bfffd4b8 r15: 0x0000000000000000 r16: 0x00000000bfffd4ac r17: 0x000000000046487c r18: 0x00000000bfffd484 r19: 0x000000000046487c r20: 0x00000000bfffd47c r21: 0x0000000000460a98 r22: 0x0000000000000001 r23: 0x00000000bfffd494 r24: 0x000000000074a3a4 r25: 0x00000000000ff2e4 r26: 0x000000000074a3a8 r27: 0x00000000bfffd55c r28: 0x00000000bfffe080 r29: 0x00000000005181d4 r30: 0x000000000074a36c r31: 0x00000000003f487c

Binary Images Description:
0x1000 - 0x26fff uno.bin /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/bin/uno.bin 0x37000 - 0x39fff libuno_salhelpergcc3.dylib.3 /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_salhelpergcc3.dylib.3 0x3d000 - 0x6afff libuno_cppu.dylib.3 /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppu.dylib.3 0x205000 - 0x39ffff libuno_sal.dylib.3 /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_sal.dylib.3 0x3c9000 - 0x45ffff libuno_cppuhelpergcc3.dylib.3 /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_cppuhelpergcc3.dylib.3 0x4c2000 - 0x4dffff libreg.dylib.3 /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libreg.dylib.3 0x4e5000 - 0x4f3fff libgcc3_uno.dylib /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libgcc3_uno.dylib 0x65c000 - 0x702fff bootstrap.uno.dylib /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/bootstrap.uno.dylib 0x727000 - 0x73ffff libstore.dylib.3 /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libstore.dylib.3 0x7cc000 - 0x7cefff libunsafe_uno_uno.dylib /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libunsafe_uno_uno.dylib 0x7d2000 - 0x7d7fff libuno_purpenvhelpergcc3.dylib.3 /Applications/OpenOffice.org.app/Contents/basis-link/ure-link/lib/libuno_purpenvhelpergcc3.dylib.3
0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
0x90000000 - 0x901bcfff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib 0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.79 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90b72000 - 0x90b84fff libauto.dylib     /usr/lib/libauto.dylib
0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore 0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91112000 - 0x91120fff libz.1.dylib     /usr/lib/libz.1.dylib
0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x913ed000 - 0x913f5fff libbsm.dylib     /usr/lib/libbsm.dylib
0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91434000 - 0x9143ffff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent 0x9193c000 - 0x9197efff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
0x91b2e000 - 0x91b43fff libcups.2.dylib     /usr/lib/libcups.2.dylib
0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x91b6c000 - 0x91c23fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib 0x91ce7000 - 0x91d24fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x91d2b000 - 0x91d45fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x91d4a000 - 0x91d4dfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91d4f000 - 0x91e3dfff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92a14000 - 0x92b02fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x92bce000 - 0x92df9fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x92fc9000 - 0x92fddfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x92ff5000 - 0x93005fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x93011000 - 0x93026fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x93038000 - 0x930bffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x930d3000 - 0x930defff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x930e8000 - 0x93116fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x93130000 - 0x9313ffff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x9314b000 - 0x931b1fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x931e2000 - 0x93231fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x9325f000 - 0x9327cfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x9328e000 - 0x9329bfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x932a4000 - 0x935b2fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x94c4e000 - 0x94cbffff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib

Best Regards,
Pierre





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to