How to install externals, libraries, gui plug-ins, etc.
Edit: This post was originally written with Pd-extended 0.43 in mind. These days there is a nice little plugin called Deken that you can use to easily download and install most of the popular libraries in Pd. It comes bundled with recent versions of Pd-vanilla. You can still use namespaces to load up the objects for most libraries, but for some libraries like zexy that have all the objects bundled into a single file, you will still need to use [declare] to load it up.
Installing libraries and plug-ins isn't so obvious. This guide will hopefully clear up the process, and may even explain more than you need to know.
Recent changes
This first section is mainly for those upgrading to Pd-0.43 from previous versions. If you're new to Pd and are starting on 0.43, you can just skip this section and get on with loading libraries.
It use to be that installing a library was done by putting it wherever you wanted on your system and adding its path to the preferences. While this wasn't particularly difficult, it did have some problems. Recent efforts have been made to standardize this a bit so those problems can be avoided.
In Pd-extended 0.43, you can't add paths from within Pd any more like you used to. You can open the preferences and add a path, but it won't save it. This means that non-default libraries won't load on start-up any more; you have to load them from within the patch. While this sounds like a hassle, it does have the advantage that patches are much easier to share. You don't have to worry about others having different start-up settings than you. It also forces the patch to document what libraries are being used, so if an object isn't loading, you don't have to go on some crazy hunt to find out where it came from or what it's supposed to do.
Putting them in the right folder
To make sure Pd can easily find the library, you need to put them in the right folder. This is OS dependent. The following folders are your options (taken from here). I personally recommend putting them in the user-specific folders since they are likely easier to migrate when updating your OS.
Linux:
User-specific:
~/pd-externals
Global:
/usr/local/lib/pd-externals
Mac OSX
User-specific:
~/Library/Pd
Global:
/Library/Pd
Windows
User-specific:
%AppData%/Pd
Global:
%CommonProgramFiles%/Pd
Linux and OSX are pretty straight-forward. "~" means your home folder.
Windows is a bit trickier. %AppData% and %CommonProgramFiles% are environment variables that contain specific directories. What the exact directory is depends on which version of Windows you are on. You can find out what it is by opening up the command line and typing this:
echo %AppData%
You might end up with something like C:\Users\username\AppData\Roaming or C:\Documentes and Settings\username\Application Data. Also, to see it in the file browser, you might need to show hidden files. At any rate, once you find the directory, create a Pd folder if there isn't one, and put your library, objects, or plug-ins there.
Loading whole libraries
To load a library you have a few options. The one that works on both vanilla and extended is to use [declare -stdpath libraryname]. The libraryname is the name of the folder that all the objects/abstractions are in.
[declare] doesn't always work as expected in abstractions, though. In Pd-extended, you can also use [import], which works well in abstractions. I have found that sometimes it doesn't work with libraries of abstractions that don't have a meta file, though. But that can be fixed by just making one. Simply create an empty Pd patch and save it as libraryname-meta.pd in the library's folder. That's all the meta patch is.
A third option (also Pd-extended only) is to use [path]. This is new to Pd-extended 0.43 and works similarly to [declare]. I haven't needed it, yet. But it's there.
Once the library is loaded, you should be able to load an object or abstraction just by creating it by name.
Loading objects or abstractions using namespaces
While this method means a little more typing, it is also the safest, and it makes it easier to find out what objects are from which library. The way you do it is add the library name (i.e. the namespace) to the beginning of the object when you call it, like this:
[zexy/multiplex~] <-- load the [multiplex~] object from zexy
[cyclone/comb~] <-- load [comb~] from cyclone
You don't have to load the library with [import] or [declare] for this to work. You just call the object that way.
Why is this safest? Because it's possible for different libraries to have objects with the same name. For example, both cyclone and zexy have an object called [mean]. But they don't work exactly the same. zexy's takes a list, while cyclone's takes in a continuous stream. If you have both libraries loaded (and in Pd-extended, these two libraries happen to be loaded by default), you can't be sure which one you're getting if you just type [mean]. However, if you type [cyclone/mean], you know exactly which one you are getting.
Pd extended on OS X 10.7 Lion
All that "build" stuff is referring to compiling the code from source. It's not the same thing as adding libraries to your Pd install. A library that needs to be built is one that is written in C (typically) and needs to be compiled into a binary to run on your system. A library that is already compiled, however, can simply be downloaded and added to your Pd installation.
In terms of the differences between Pd-extended and the standard Pd (often referred to as Pd-vanilla), one of the big advantages to Pd-extended is that it comes with many of the most common libraries already installed. So you may not have to add anything for a while, and you can share patches that have many externals that aren't included in the Pd-vanilla fairly easily, since other Pd-extended users will have those libraries as well. Pd-extended is basically Pd-vanilla plus more. If a patch works in vanilla, it will work in extended, but not the other way around.
The disadvantage to Pd-extended, however, is that those libraries are contributed from various users/developers under various licenses, so if you wanted to package your patch up and make an app out of it, you'll have to go through all the licenses and make sure you're not violating them. With Pd-vanilla, the license pretty much lets you do whatever you want.
In regards to my mmb library, they are all abstractions, so they don't need to be built. But many of them require objects that are included in Pd-extended, so you would need that to use them. Installing the library is the same as any other. You can put it in any folder on your system; you just have to make sure Pd can find it. So, let's say you put the mmb folder containing the abstractions in /Library/Pd. To make sure Pd can find it, open Pd, make a new patch (I don't know why, but you have to do that), and in the menubar click Pd-extended -> Preferences -> Path... In the dialog box, click "New..." and choose the path /Library/Pd/mmb. You should be able to use them then.
0.41.4 doesn't load all of its extensions?
Hi,
i'm having several problems with the externals i'm trying to use.
First of all, I'm trying to add an external to print "hello world" on the screen. I copied the source from the "my first external tutorial" and everything compiled correctly. I added the ~.pd_linux and the ~.o on the /usr/lib/pd-extended/extra/helloworld directory.
In file->path... I put the /usr/lib/pd-extended/extra/helloworld. And in Startup... added external. My files are named external.pd_linux and external.o.
Once I have changed the path and startup settings the startup text box started showng the following messages:
[import] $Revision: 1.2 $
[import] is still in development, the interface could change!
compiled against Pd version 0.42.5
tried but couldn't sync A/D/A
libdir: can't load library
Gem: can't load library
cyclone: can't load library
zexy: can't load library
creb: can't load library
cxc: can't load library
iemlib: can't load library
list-abs: can't load library
mapping: can't load library
markex: can't load library
maxlib: can't load library
memento: can't load library
mjlib: can't load library
motex: can't load library
oscx: can't load library
pddp: can't load library
pdogg: can't load library
pixeltango: can't load library
pmpd: can't load library
rradical: can't load library
sigpack: can't load library
smlib: can't load library
toxy: can't load library
unauthorized: can't load library
pan: can't load library
hcs: can't load library
jmmmp: can't load library
ext13: can't load library
ggee: can't load library
flib: can't load library
ekext: can't load library
flatspace: can't load library
pdp: can't load library
pidip: can't load library
load_object: Symbol "external_setup" not found
external: can't load library
Does anyone know what I did wrong?
A last question. Once I got the library installed correctly, could I simply cal the method "helloworld_setup", on an pd object to print my message?
Thanks for helping!
Upgrade tangle
hello
I upgraded to Ubuntu 10.10 a couple of months ago and had some issues I need help in finding the best way to resolve.
I was using Pd 0.41-4extended and upgraded to Pd 0.42.5-extended when I upgraded Ubuntu
I noticed that the Pd .deb installed a '/usr/lib/pd-extended' directory instead of the old '/usr/lib/pd'
of course the Ubuntu upgrade wiped the '/' partition (I have '/' and '/home' on separate partitions) but everything was left intact on my '/home' partition so all my patches and work files were left untouched in '/home/user/pd-externals' dir
I made sure to backup of my old '/usr/lib/pd/' directory with all my externals and docs
but now when I launch Pd it throws errors saying it can't find my libraries:
cyclone: can't load library
zexy: can't load library
creb: can't load library
cxc: can't load library
list-abs: can't load library
mapping: can't load library
markex: can't load library
maxlib: can't load library
memento: can't load library
mjlib: can't load library
motex: can't load library
oscx: can't load library
pddp: can't load library
pdogg: can't load library
pixeltango: can't load library
pmpd: can't load library
rradical: can't load library
sigpack: can't load library
smlib: can't load library
toxy: can't load library
iemlib: can't load library
unauthorized: can't load library
pan: can't load library
hcs: can't load library
jmmmp: can't load library
ext13: can't load library
ggee: can't load library
flib: can't load library
ekext: can't load library
flatspace: can't load library
so my question is:
what is the best way to migrate all my old libraries, externals and docs?
has anyone else encountered this problem?
and if so, what is the easiest way to deal with this *other* than going in and copying everything over to '/usr/lib'pd-externals/docs/' and '/usr/lib'pd-externals/extras/' dirs?
is it as easy as just changing the paths to a new location?
thanks in advance,
kim
Terminal data into Pd
Hi all,
As the title suggests, does anyone know how to get some terminal data into a useable form in Pd?
Terminal command via [shell]
lsof -c Terminal
Comes back with
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
Terminal 320 sergery cwd DIR 14,2 1224 389127 /Users/sergery
Terminal 320 sergery txt REG 14,2 1089648 138776 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal
Terminal 320 sergery txt REG 14,2 2295501 288102 /System/Library/Fonts/LucidaGrande.dfont
Terminal 320 sergery txt REG 14,2 5425538 293864 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/Extras2.rsrc
Terminal 320 sergery txt REG 14,2 13525940 224074 /private/var/folders/vb/vbpUhSc-HtShEQmAZppmw++++TI/-Caches-/com.apple.ATS/annex_aux
Terminal 320 sergery txt REG 14,2 10244512 400652 /usr/share/icu/icudt36l.dat
Terminal 320 sergery txt REG 14,2 1832384 370074 /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/SArtFile.bin
Terminal 320 sergery txt REG 14,2 11144400 270259 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
Terminal 320 sergery txt REG 14,2 531341 288103 /System/Library/Fonts/Monaco.dfont
Terminal 320 sergery txt REG 14,2 19336 224106 /private/var/folders/vb/vbpUhSc-HtShEQmAZppmw++++TI/-Caches-/com.apple.IntlDataCache.le.sbdl
Terminal 320 sergery txt REG 14,2 808008 352421 /System/Library/Keyboard Layouts/AppleKeyboardLayouts.bundle/Contents/Resources/AppleKeyboardLayouts-L.dat
Terminal 320 sergery txt REG 14,2 100788 246657 /System/Library/Caches/com.apple.IntlDataCache.le.kbdx
Terminal 320 sergery txt REG 14,2 144580 293934 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/HIToolbox.rsrc
Terminal 320 sergery txt REG 14,2 490410 293847 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/English.lproj/Localized.rsrc
Terminal 320 sergery txt REG 14,2 5836820 369904 /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/ArtFile.bin
Terminal 320 sergery txt REG 14,2 2396160 553076 /Library/Caches/com.apple.LaunchServices-023501.csstore
Terminal 320 sergery txt REG 14,2 1059792 393626 /usr/lib/dyld
Terminal 320 sergery txt REG 14,2 139087872 431216 /private/var/db/dyld/dyld_shared_cache_i386
Terminal 320 sergery 0r CHR 3,2 0t0 36655364 /dev/null
Terminal 320 sergery 1 PIPE 0x23baee0 16384
Terminal 320 sergery 2 PIPE 0x23baee0 16384
Terminal 320 sergery 3r REG 14,2 5425538 293864 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/Extras2.rsrc
Terminal 320 sergery 4 PIPE 0x23b812c 16384
Terminal 320 sergery 5 PIPE 0x23b80c8 16384
Terminal 320 sergery 6 PIPE 0x23ba7d8 16384
Terminal 320 sergery 7 PIPE 0x23ba83c 16384
Terminal 320 sergery 9r REG 14,2 144580 293934 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/HIToolbox.rsrc
Terminal 320 sergery 10r REG 14,2 490410 293847 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/English.lproj/Localized.rsrc
Terminal 320 sergery 12u CHR 15,0 0t105 36958084 /dev/ptmx
PostOpChopShop:~ sergery$ lsof -c Terminal
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
Terminal 320 sergery cwd DIR 14,2 1224 389127 /Users/sergery
Terminal 320 sergery txt REG 14,2 1089648 138776 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal
Terminal 320 sergery txt REG 14,2 2295501 288102 /System/Library/Fonts/LucidaGrande.dfont
Terminal 320 sergery txt REG 14,2 5425538 293864 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/Extras2.rsrc
Terminal 320 sergery txt REG 14,2 13525940 224074 /private/var/folders/vb/vbpUhSc-HtShEQmAZppmw++++TI/-Caches-/com.apple.ATS/annex_aux
Terminal 320 sergery txt REG 14,2 10244512 400652 /usr/share/icu/icudt36l.dat
Terminal 320 sergery txt REG 14,2 1832384 370074 /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/SArtFile.bin
Terminal 320 sergery txt REG 14,2 11144400 270259 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
Terminal 320 sergery txt REG 14,2 531341 288103 /System/Library/Fonts/Monaco.dfont
Terminal 320 sergery txt REG 14,2 19336 224106 /private/var/folders/vb/vbpUhSc-HtShEQmAZppmw++++TI/-Caches-/com.apple.IntlDataCache.le.sbdl
Terminal 320 sergery txt REG 14,2 808008 352421 /System/Library/Keyboard Layouts/AppleKeyboardLayouts.bundle/Contents/Resources/AppleKeyboardLayouts-L.dat
Terminal 320 sergery txt REG 14,2 100788 246657 /System/Library/Caches/com.apple.IntlDataCache.le.kbdx
Terminal 320 sergery txt REG 14,2 144580 293934 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/HIToolbox.rsrc
Terminal 320 sergery txt REG 14,2 490410 293847 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/English.lproj/Localized.rsrc
Terminal 320 sergery txt REG 14,2 5836820 369904 /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/ArtFile.bin
Terminal 320 sergery txt REG 14,2 2396160 553076 /Library/Caches/com.apple.LaunchServices-023501.csstore
Terminal 320 sergery txt REG 14,2 1059792 393626 /usr/lib/dyld
Terminal 320 sergery txt REG 14,2 139087872 431216 /private/var/db/dyld/dyld_shared_cache_i386
Terminal 320 sergery 0r CHR 3,2 0t0 36655364 /dev/null
Terminal 320 sergery 1 PIPE 0x23baee0 16384
Terminal 320 sergery 2 PIPE 0x23baee0 16384
Terminal 320 sergery 3r REG 14,2 5425538 293864 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/Extras2.rsrc
Terminal 320 sergery 4 PIPE 0x23b812c 16384
Terminal 320 sergery 5 PIPE 0x23b80c8 16384
Terminal 320 sergery 6 PIPE 0x23ba7d8 16384
Terminal 320 sergery 7 PIPE 0x23ba83c 16384
Terminal 320 sergery 9r REG 14,2 144580 293934 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/HIToolbox.rsrc
Terminal 320 sergery 10r REG 14,2 490410 293847 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/English.lproj/Localized.rsrc
Terminal 320 sergery 12u CHR 15,0 0t3717 36958084 /dev/ptmx
I'd like to get all this data into Pd somehow.
At some point I'd like to write it to a file and then search through it for the file name that I want. I'm having trouble though. Any ideas?
OSCx problems
Hello,
I'm now trying to configure PdIpod patch to work with OSC on MrMr on my ipod, but when I'm trying to load OSC externals I get these messages.
/Users/jonas/Library/Pd/mrpeach/unpackOSC.pd_darwin: dlopen(/Users/jonas/Library/Pd/mrpeach/unpackOSC.pd_darwin, 10): no suitable image found. Did find:
/Users/jonas/Library/Pd/mrpeach/unpackOSC.pd_darwin: mach-o, but wrong architecture
mrpeach/unpackOSC
... couldn't create
/Users/jonas/Library/Pd/mrpeach/pipelist.pd_darwin: dlopen(/Users/jonas/Library/Pd/mrpeach/pipelist.pd_darwin, 10): no suitable image found. Did find:
/Users/jonas/Library/Pd/mrpeach/pipelist.pd_darwin: mach-o, but wrong architecture
mrpeach/pipelist
... couldn't create
OSC
... couldn't create
/Users/jonas/Library/Pd/mrpeach/routeOSC.pd_darwin: dlopen(/Users/jonas/Library/Pd/mrpeach/routeOSC.pd_darwin, 10): no suitable image found. Did find:
/Users/jonas/Library/Pd/mrpeach/routeOSC.pd_darwin: mach-o, but wrong architecture
mrpeach/routeOSC /mrmr
... couldn't create
OSCroute object version 1.05 by Matt Wright. pd: jdl Win32 raf.
OSCroute Copyright ᄅ 1999 Regents of the Univ. of California. All Rights Reserved.
/Users/jonas/Library/Pd/mrpeach/udpreceive.pd_darwin: dlopen(/Users/jonas/Library/Pd/mrpeach/udpreceive.pd_darwin, 10): no suitable image found. Did find:
/Users/jonas/Library/Pd/mrpeach/udpreceive.pd_darwin: mach-o, but wrong architecture
mrpeach/udpreceive $1
... couldn't create
OSC
... couldn't create
Can you help me please?
Thank you very much
Can't run PD 0.42-4 under OSX 10.4.11
I'm getting a similar problem on 10.5.7. I'm also getting crashes when trying to select my M-Box Micro as the output in Pd..
Process: mds [21]
Path: /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds
Identifier: mds
Version: (???)
Code Type: X86 (Native)
Parent Process: launchd [1]
Date/Time: 2008-09-23 14:48:39.862 +1000
OS Version: Mac OS X 10.5.4 (9E17)
Report Version: 6
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
Crashed Thread: 18
Application Specific Information:
/SourceCache/Spotlight/Spotlight-398.18/index/ContentIndex/CIMerging.c:1958: failed assertion 'changes->docIds[0].count==0'
(Error) IndexStore in SIStoreDirytySDBChunks:Error storing dirty sdb pages: 30
Thread 0:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x0000e6c3 0x1000 + 54979
6 mds 0x00005956 0x1000 + 18774
Thread 1:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x0000d61d 0x1000 + 50717
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 2:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x0000d640 0x1000 + 50752
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 3:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x0000d663 0x1000 + 50787
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 4:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x0000d686 0x1000 + 50822
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 5:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x0000d6a9 0x1000 + 50857
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 6:
0 libSystem.B.dylib 0x95fbf68e __semwait_signal + 10
1 libSystem.B.dylib 0x960108e0 pthread_cond_timedwait$UNIX2003 + 72
2 mds 0x0000a3f7 0x1000 + 37879
3 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
4 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 7:
0 libSystem.B.dylib 0x95fdc1ba read$UNIX2003 + 10
1 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
2 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 8:
0 libSystem.B.dylib 0x95fe8f66 kevent + 10
1 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
2 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 9:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x0008714c 0x1000 + 549196
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 10:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x00054157 0x1000 + 340311
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 11:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x00054157 0x1000 + 340311
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 12:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x00054157 0x1000 + 340311
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 13:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.spotlight.index 0x0022a3da _handleExceptions + 238
3 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
4 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 14:
0 libSystem.B.dylib 0x95fb84a6 mach_msg_trap + 10
1 libSystem.B.dylib 0x95fbfc9c mach_msg + 72
2 com.apple.CoreFoundation 0x92bda0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x92bdacf8 CFRunLoopRunInMode + 88
4 mds 0x00058504 0x1000 + 357636
5 mds 0x000448f3 0x1000 + 276723
6 mds 0x000582d2 0x1000 + 357074
7 com.apple.Foundation 0x9631bf1d -[NSThread main] + 45
8 com.apple.Foundation 0x9631bac4 __NSThread__main__ + 308
9 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
10 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 15:
0 libSystem.B.dylib 0x95fb8506 semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x95fea84f _pthread_cond_wait + 1244
2 libSystem.B.dylib 0x95fec0d3 pthread_cond_timedwait_relative_np + 47
3 com.apple.spotlight.index 0x0018b180 si_scheduler_run_waiting_timeout + 163
4 com.apple.spotlight.index 0x00176e50 runLoop + 77
5 com.apple.spotlight.index 0x00176f3c setattr_runLoop + 68
6 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
7 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 16:
0 libSystem.B.dylib 0x95fb8506 semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x95fea84f _pthread_cond_wait + 1244
2 libSystem.B.dylib 0x95fec0d3 pthread_cond_timedwait_relative_np + 47
3 com.apple.spotlight.index 0x0018b180 si_scheduler_run_waiting_timeout + 163
4 com.apple.spotlight.index 0x00176e50 runLoop + 77
5 com.apple.spotlight.index 0x00176eaa query_runLoop + 30
6 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
7 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 17:
0 libSystem.B.dylib 0x95fb8506 semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x95fea84f _pthread_cond_wait + 1244
2 libSystem.B.dylib 0x95fec0d3 pthread_cond_timedwait_relative_np + 47
3 com.apple.spotlight.index 0x0018b180 si_scheduler_run_waiting_timeout + 163
4 com.apple.spotlight.index 0x00176e50 runLoop + 77
5 com.apple.spotlight.index 0x0017705d flush_runLoop + 65
6 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
7 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 18 Crashed:
0 com.apple.spotlight.index 0x002370af _dead_beef + 11
1 com.apple.spotlight.index 0x002307c7 merge_checkAgainstUpdates + 181
2 com.apple.spotlight.index 0x00230a00 PayloadProcessDocIDRangeBitsReversed + 387
3 com.apple.spotlight.index 0x0020ef96 unpackPostingChunk + 422
4 com.apple.spotlight.index 0x0023517b mergeIndexData + 13180
5 com.apple.spotlight.index 0x001a0da6 _ContentIndexMergeIndexes + 128
6 com.apple.spotlight.index 0x001a0fe2 ContentIndexMergeIndexes + 248
7 com.apple.spotlight.index 0x0017ec59 OuterMerge + 1310
8 com.apple.spotlight.index 0x001806fe si_mergeIndex + 4007
9 com.apple.spotlight.index 0x0018aca9 si_work_queue_process + 643
10 com.apple.spotlight.index 0x0018af97 si_scheduler_once + 419
11 com.apple.spotlight.index 0x0018af97 si_scheduler_once + 419
12 com.apple.spotlight.index 0x0018b322 si_scheduler_run_waiting_timeout + 581
13 com.apple.spotlight.index 0x00176e50 runLoop + 77
14 com.apple.spotlight.index 0x00176fce compaction_runLoop + 68
15 libSystem.B.dylib 0x95fe96f5 _pthread_start + 321
16 libSystem.B.dylib 0x95fe95b2 thread_start + 34
Thread 18 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x00230733 ecx: 0x00000000 edx: 0x00000000
edi: 0x00000000 esi: 0x00000616 ebp: 0xb0991738 esp: 0xb0991730
ss: 0x0000001f efl: 0x00010286 eip: 0x002370af cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
cr2: 0x00000000
Binary Images:
0x1000 - 0xb9feb mds (???) <63f8cd1f41b3382ec7d38bb5f76a20c1> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds
0xd7000 - 0xd8ffd com.apple.MDSChannel 1.0 (1.0) /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
0x14a000 - 0x25fff7 com.apple.spotlight.index 10.5.2 (398.18) <cc6d210e1fcd007cb427861ccd748e13> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex
0x6cf000 - 0x6d4ff7 libgermantok.dylib (???) <5608319ae54efad75bb8af543f67134f> /usr/lib/libgermantok.dylib
0x2bce000 - 0x2bceffd liblangid.dylib (???) <d1bba9ec9142b4eb33db9c24d504ac63> /usr/lib/liblangid.dylib
0x30bd000 - 0x31e4feb libmecab.1.0.0.dylib (???) <d42fb7fb40a58840dd30e4364635c245> /usr/lib/libmecab.1.0.0.dylib
0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <5013f43c4d2c33c9619011f103ec3238> /usr/lib/dyld
0x90291000 - 0x902a0ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <43c5b91223501f917392f59fbf9d7ace> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
0x90905000 - 0x9093cfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x9093d000 - 0x9099affb libstdc++.6.dylib (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
0x9099b000 - 0x909e1fef com.apple.Metadata 10.5.2 (398.18) <adbb3a14e8f7da444e16d2fd61862771> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x909e2000 - 0x90ac3ff7 libxml2.2.dylib (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
0x90aff000 - 0x90bf3ff4 libiconv.2.dylib (???) <3f183527811098bb7332f67a1f902bfd> /usr/lib/libiconv.2.dylib
0x90bf4000 - 0x90c7ffff com.apple.framework.IOKit 1.5.1 (???) <60cfc4b175c4ef60bb8e9036716a29f4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x92417000 - 0x9254fff7 libicucore.A.dylib (???) <5031226ea28b371d8dfdbb32acfb48b5> /usr/lib/libicucore.A.dylib
0x92551000 - 0x9256fff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <fe27e80e1a9e86403fd9ed16dcfe4e11> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x92570000 - 0x9264ffff libobjc.A.dylib (???) <99a9ad33ca07114848fdd7580968a572> /usr/lib/libobjc.A.dylib
0x92650000 - 0x9270afe3 com.apple.CoreServices.OSServices 226.5 (226.5) <7e10d25c615a39fe1ab4d48e24a3b555> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x92756000 - 0x92756ffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x92b68000 - 0x92c9afff com.apple.CoreFoundation 6.5.3 (476.14) <7ef7f5db09ff6dd0135a6165872803cc> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x934e8000 - 0x93574ff7 com.apple.LaunchServices 289.2 (289.2) <3577886e3a6d56ee3949850c4fde76c9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x93de5000 - 0x93dfbfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x93e13000 - 0x93e3efe7 libauto.dylib (???) <2072d673706bbe463ed2426af57a28d7> /usr/lib/libauto.dylib
0x944dc000 - 0x944e4fff com.apple.DiskArbitration 2.2.1 (2.2.1) <42908e7ecc17a83cec4afef2850ec79e> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x94991000 - 0x94a13ff3 com.apple.CFNetwork 330.4 (330.4) <ce5b085df34a78b7f198aff9db5b52ec> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x94c22000 - 0x94df0fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x950cf000 - 0x950f3fff libxslt.1.dylib (???) <59399cc446ed903fd9479526ee9f116b> /usr/lib/libxslt.1.dylib
0x955da000 - 0x95609fe3 com.apple.AE 402.2 (402.2) <d0da935e781446faa4563e7a9c587cce> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x9563b000 - 0x956c2ff7 libsqlite3.0.dylib (???) <11311084bc4be9d4555dfac74fe7218a> /usr/lib/libsqlite3.0.dylib
0x9573a000 - 0x95741fe9 libgcc_s.1.dylib (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
0x95ad9000 - 0x95ae7ffd libz.1.dylib (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
0x95e13000 - 0x95e92ff5 com.apple.SearchKit 1.2.0 (1.2.0) <5abfde5537969168b8a8743ccb9ec735> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x95fb7000 - 0x96117ff3 libSystem.B.dylib (???) <a12f397abf2285077b89bd726bff5b18> /usr/lib/libSystem.B.dylib
0x96311000 - 0x9658cfe7 com.apple.Foundation 6.5.5 (677.19) <bfd4ebea1a7739dd6b523f15dca01a37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x9662a000 - 0x9662efff libmathCommon.A.dylib (???) /usr/lib/system/libmathCommon.A.dylib
0x96bec000 - 0x96bf3ffe libbsm.dylib (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
0x96bf7000 - 0x96ed1ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <bc7c12c84fe21ae2626bdd17070aaafa> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0xfffe8000 - 0xfffebfff libobjc.A.dylib (???) /usr/lib/libobjc.A.dylib
0xffff0000 - 0xffff1780 libSystem.B.dylib (???) /usr/lib/libSystem.B.dylib
Can't run PD 0.42-4 under OSX 10.4.11
I hope I did this right: I opened Console, then launched PD. I've pasted the contents of the console window below (after that I pasted the contents of pd.crash.log
===== Saturday, March 28, 2009 11:45:29 AM America/New_York =====
2009-03-28 11:46:02.321 BOMArchiveHelper[343] opened /Users/larz/Downloads/.BAHh1Ptn/pd-0.42-4.mac.tar
Pt_Start() called
Mar 28 11:46:42 KlipperBook crashdump[394]: pd crashed
Mar 28 11:46:43 KlipperBook crashdump[394]: crash report written to: /Users/larz/Library/Logs/CrashReporter/pd.crash.log
pd_gui: pd process exited
================
pd.crash.log:
**********
Host Name: KlipperBook
Date/Time: 2009-03-28 11:46:40.715 -0400
OS Version: 10.4.11 (Build 8S2167)
Report Version: 4
Command: pd
Path: /Applications/Pd-0.42-4.app/Contents/Resources/Scripts/../bin/pd
Parent: Pd [351]
Version: (0.38)
PID: 352
Thread: 3
Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000004
Thread 0:
0 libSystem.B.dylib 0x9001a1cc select + 12
1 pd 0x00044706 sys_microsleep + 19 (s_inter.c:207)
2 pd 0x000423a7 m_mainloop + 468 (m_sched.c:511)
3 pd 0x000444a2 sys_main + 1642 (s_main.c:313)
4 pd 0x00002876 _start + 216
5 pd 0x0000279d start + 41
Thread 1:
0 libSystem.B.dylib 0x90009cd7 mach_msg_trap + 7
1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
3 com.apple.audio.CoreAudio 0x91469356 HALRunLoop::OwnThread(void*) + 158
4 com.apple.audio.CoreAudio 0x91469171 CAPThread::Entry(CAPThread*) + 93
5 libSystem.B.dylib 0x90024227 _pthread_body + 84
Thread 2:
0 libSystem.B.dylib 0x90047dd7 semaphore_timedwait_signal_trap + 7
1 com.apple.audio.CoreAudio 0x914765a4 CAGuard::WaitFor(unsigned long long) + 212
2 com.apple.audio.CoreAudio 0x914764c6 CAGuard::WaitUntil(unsigned long long) + 66
3 com.apple.audio.CoreAudio 0x91474e42 HP_IOThread::WorkLoop() + 690
4 com.apple.audio.CoreAudio 0x91474b8b HP_IOThread::ThreadEntry(HP_IOThread*) + 17
5 com.apple.audio.CoreAudio 0x91469171 CAPThread::Entry(CAPThread*) + 93
6 libSystem.B.dylib 0x90024227 _pthread_body + 84
Thread 3 Crashed:
0 pd 0x00074746 PaUtil_SetInputFrameCount + 13 (pa_process.c:464)
1 pd 0x00079b60 AudioIOProc + 1925 (pa_mac_core.c:1879)
Thread 3 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x000793ec ecx: 0x00000000 edx: 0x00000000
edi: 0x00000000 esi: 0xb0182190 ebp: 0xb0182168 esp: 0xb0182168
ss: 0x0000001f efl: 0x00010246 eip: 0x00074746 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
Binary Images Description:
0x1000 - 0x8cfff pd /Applications/Pd-0.42-4.app/Contents/Resources/bin/pd
0x4ad000 - 0x4b2fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x6cc000 - 0x6cffff com.apple.LiveType.component 2.1.3 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
0x6d4000 - 0x739fff com.apple.LiveType.framework 2.1.3 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
0x761000 - 0x7cefff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
0x7dd000 - 0x7e0fff Motion /Library/Frameworks/Motion.framework/Versions/A/Motion
0x1008000 - 0x10a7fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
0x10cb000 - 0x1111fff com.apple.motion.component 1.0 /Library/QuickTime/Motion.component/Contents/MacOS/Motion
0x1117000 - 0x11b7fff net.sourceforge.webcam-osx.common 0.9.1 /Library/QuickTime/macam.component/Contents/MacOS/macam
0x70000000 - 0x700fafff com.apple.audio.units.Components 1.4.7 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.28 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x91008000 - 0x91047fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x91521000 - 0x9154dfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91560000 - 0x91634fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x91710000 - 0x917b9fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x91891000 - 0x918cefff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
0x91a5b000 - 0x91a79fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91a7e000 - 0x91addfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91aef000 - 0x91af3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91af5000 - 0x91b7dfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91b81000 - 0x91bbefff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91bc4000 - 0x91bdefff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91be3000 - 0x91be5fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91be7000 - 0x91cc5fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
0x91ce2000 - 0x91ce2fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91ce4000 - 0x91d72fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91d79000 - 0x91d79fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91d7b000 - 0x91dd4fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x91ddd000 - 0x91e01fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x91e09000 - 0x92212fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9224c000 - 0x92600fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x9262d000 - 0x9271afff libiconv.2.dylib /usr/lib/libiconv.2.dylib
0x9271c000 - 0x9279afff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x927db000 - 0x92a0bfff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92b25000 - 0x92b40fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92b4c000 - 0x92ba4fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92bb8000 - 0x92bb8fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x92bba000 - 0x92bcafff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x92bd9000 - 0x92be1fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x92be7000 - 0x92bedfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x92bf3000 - 0x92c84fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x92c98000 - 0x92c9cfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x92c9f000 - 0x92cbdfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x92ccf000 - 0x92cd5fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x92cdb000 - 0x92d3efff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x92d65000 - 0x92da6fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x92dcd000 - 0x92ddbfff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x92de2000 - 0x92de7fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x92dec000 - 0x930e1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x931e7000 - 0x931f3fff com.apple.opengl 1.5.1 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x93263000 - 0x93263fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x93265000 - 0x9391bfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x93c9c000 - 0x93d17fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x93d50000 - 0x93e09fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x93e4c000 - 0x93e4cfff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x93e4e000 - 0x9400ffff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x94055000 - 0x94096fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
0x9409e000 - 0x940e1fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x940e5000 - 0x940fbfff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9410b000 - 0x945c7fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x948d3000 - 0x94beafff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x96cbe000 - 0x96cf4fff com.apple.audio.midi.CoreMIDI 1.5.1 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x970c7000 - 0x970c7fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x97641000 - 0x97646fff com.apple.agl 2.6.2 (AGL-2.6.2) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x9896d000 - 0x998fefff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents
Lib pb on pd extended 0.40
hi
i was working on pd ext 0.39 without pb
and I recently I update to 0.40
and glaps! pd can't load any lib anymore (gem, zexy, etc.).
I'm working on mac osX 4 11...
anyone can help
thx
yeli
/Applications/Pd-extended.app/Contents/Resources/extra/Gem/Gem.pd_darwin: dlopen(/Applications/Pd-extended.app/Contents/Resources/extra/Gem/Gem.pd_darwin, 10): Library not loaded: /usr/X11R6/lib/libfreetype.6.dylib
Referenced from: /Applications/Pd-extended.app/Contents/Resources/extra/Gem/Gem.pd_darwin
Reason: image not found
Gem: can't load library
cyclone: can't load library
zexy: can't load library
cxc: can't load library
ext13: can't load library
FFTease - A set of Live Spectral Processors
Originally written by Eric Lyon and Christopher Penrose for MAX/MSP
flext port (version 0.0.0) provided by Thomas Grill, (C)2003-2004
iemabs: can't load library
iemmatrix: can't load library
liblist: can't load library
markex: can't load library
maxlib: can't load library
memento: can't load library
mjlib: can't load library
motex: can't load library
oscx: can't load library
pddp: can't load library
pdogg: can't load library
/Applications/Pd-extended.app/Contents/Resources/extra/pdp.pd_darwin: dlopen(/Applications/Pd-extended.app/Contents/Resources/extra/pdp.pd_darwin, 10): Library not loaded: /usr/X11R6/lib/libX11.6.dylib
Referenced from: /Applications/Pd-extended.app/Contents/Resources/extra/pdp.pd_darwin
Reason: image not found
pdp: can't load library
/Applications/Pd-extended.app/Contents/Resources/extra/pidip.pd_darwin: dlopen(/Applications/Pd-extended.app/Contents/Resources/extra/pidip.pd_darwin, 10): Library not loaded: /usr/X11R6/lib/libX11.6.dylib
Referenced from: /Applications/Pd-extended.app/Contents/Resources/extra/pidip.pd_darwin
Reason: image not found
pidip: can't load library
pixeltango: can't load library
pmpd: can't load library
rradical: can't load library
sigpack: can't load library
smlib: can't load library
toxy: can't load library
unauthorized: can't load library
VASP modular 0.1.4pre
vector assembling signal processor
(C)2002-2007 Thomas Grill
http://grrrr.org/ext
xsample objects, version 0.3.2pre
xrecord~, xplay~, xgroove~
(C)2001-2007 Thomas Grill
/Applications/Pd-extended.app/Contents/Resources/extra/zexy/z~.pd_darwin: can't load library
Success! Arduino to PD video! PLUS Problem loading Libraries - help!!
Hi! Thanks to all the nice people here who have done such great work that got me interested in PureData (and by extension Arduino) in the first place!!!!!
I finally got my Arduino and PureData/GEM communicating nicely with PDuino! Wonderful!
Here's a video:
Hooray!
Now on to my problem. I am using Pd version 0.40.3-extended on an Intel MacBook Pro running OSX 10.5.4.
When I open up PD this is the messages I get:
==============================================
GEM: Graphics Environment for Multimedia
GEM: ver: 0.91.1 'tigital'
GEM: compiled: Jul 29 2008
GEM: maintained by IOhannes m zmoelnig
GEM: Authors : Mark Danks (original version)
GEM: Chris Clepper
GEM: James Tittle
GEM: IOhannes m zmoelnig
GEM: with help by Guenter Geiger, Daniel Heckenberg, Cyrille Henry, et al.
GEM: found a bug? miss a feature? please report it:
GEM: homepage http://gem.iem.at/
GEM: bug-tracker http://sourceforge.net/projects/pd-gem/
GEM: mailing-list http://lists.puredata.info/listinfo/gem-dev/
GEM: compiled for SIMD architecture: SSE2 MMX
GEM: using SSE2 optimization
cyclone: can't load library
zexy: can't load library
creb: can't load library
cxc: can't load library
iemlib: can't load library
list-abs: can't load library
mapping: can't load library
markex: can't load library
maxlib: can't load library
memento: can't load library
mjlib: can't load library
motex: can't load library
oscx: can't load library
pddp: can't load library
pdogg: can't load library
pixeltango: can't load library
rradical: can't load library
sigpack: can't load library
smlib: can't load library
toxy: can't load library
unauthorized: can't load library
pan: can't load library
freeverb: can't load library
hcs: can't load library
jmmmp: can't load library
ext13: can't load library
deprecated: can't load library
flatspace: can't load library
PDP: pure data packet version 0.12.5-darcs
[pdp_qt]: setting LIBQUICKTIME_PLUGIN_DIR to:
/Applications/Pd-extended.app/Contents/lib/libquicktime
PiDiP : additional video processing objects for PDP
version 0.12.22 ( ydegoyon@free.fr )
pdp_colorgrid: version 0.4
by Yves Degoyon (ydegoyon@free.fr) & Lluis Gomez i Bigorda (lluis@artefacte.org)
xsample objects, version 0.3.2pre
xrecord~, xplay~, xgroove~
(C)2001-2007 Thomas Grill
ggee: can't load library
/Applications/Pd-extended.app/Contents/Resources/extra/fftease.pd_darwin: dlopen(/Applications/Pd-extended.app/Contents/Resources/extra/fftease.pd_darwin, 10): no suitable image found. Did find:
/Applications/Pd-extended.app/Contents/Resources/extra/fftease.pd_darwin: mach-o, but wrong architecture
fftease: can't load library
rtc: can't load library
===============
Can anyone tell me why GEM and xsample load in but all the other libraries do not?
Also, where the heck do I get the OpenSoundControl object for PD??? I'm a total noob when it comes to compiling from source code, is there an easier way?
Thanks so much for anyone's help
Thor