I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla along with the few externals I need. I'm currently using Mac OS X 10.6.8 and have tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
How I do it:
unarchive any recent version of Pd overwrite the source with whatever version you want (for instance, you can clone the git repo) into Pd-xxx/Contents/Resources cd to Pd-xxx/Contents/Resources/src and hit "JACK=true make -f makefile.mac"
(or if you want 64-bit-ness:)
JACK=true make -f makefile.mac "ARCH=-arch x86_64" "EXTRAARCH=-arch x86_64"
cheers Miller
On Sat, Sep 12, 2015 at 07:19:40PM -0500, Mike McGonagle wrote:
I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla along with the few externals I need. I'm currently using Mac OS X 10.6.8 and have tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
Pd-dev mailing list Pd-dev@lists.iem.at http://lists.puredata.info/listinfo/pd-dev
Miller, thanks for the prompt reply. I've looked at what you said, but I'm just a bit confused by what you mean by ...and hit "JACK=true make..."
Does this mean to define an environment variable for JACK and then run make with those options?
Mike
On Saturday, September 12, 2015, Miller Puckette msp@ucsd.edu wrote:
How I do it:
unarchive any recent version of Pd overwrite the source with whatever version you want (for instance, you can clone the git repo) into Pd-xxx/Contents/Resources cd to Pd-xxx/Contents/Resources/src and hit "JACK=true make -f makefile.mac"
(or if you want 64-bit-ness:) JACK=true make -f makefile.mac "ARCH=-arch x86_64" "EXTRAARCH=-arch x86_64"
cheers Miller
On Sat, Sep 12, 2015 at 07:19:40PM -0500, Mike McGonagle wrote:
I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla
along
with the few externals I need. I'm currently using Mac OS X 10.6.8 and
have
tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
Pd-dev mailing list Pd-dev@lists.iem.at javascript:; http://lists.puredata.info/listinfo/pd-dev
Yes... but on looking at it, I think it's better practice to turn the command around and say,
make -f makefile.mac "ARCH=-arch x86_64" "EXTRAARCH=-arch x86_64" JACK=true
cheers Miller
On Sun, Sep 13, 2015 at 10:56:04AM -0500, Mike McGonagle wrote:
Miller, thanks for the prompt reply. I've looked at what you said, but I'm just a bit confused by what you mean by ...and hit "JACK=true make..."
Does this mean to define an environment variable for JACK and then run make with those options?
Mike
On Saturday, September 12, 2015, Miller Puckette msp@ucsd.edu wrote:
How I do it:
unarchive any recent version of Pd overwrite the source with whatever version you want (for instance, you can clone the git repo) into Pd-xxx/Contents/Resources cd to Pd-xxx/Contents/Resources/src and hit "JACK=true make -f makefile.mac"
(or if you want 64-bit-ness:) JACK=true make -f makefile.mac "ARCH=-arch x86_64" "EXTRAARCH=-arch x86_64"
cheers Miller
On Sat, Sep 12, 2015 at 07:19:40PM -0500, Mike McGonagle wrote:
I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla
along
with the few externals I need. I'm currently using Mac OS X 10.6.8 and
have
tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
Pd-dev mailing list Pd-dev@lists.iem.at javascript:; http://lists.puredata.info/listinfo/pd-dev
Thank you, Miller. I don't have jack on my machine, so I dropped that and everything compiled.
Cheers! Mike
On Sunday, September 13, 2015, Miller Puckette <msp@ucsd.edu javascript:_e(%7B%7D,'cvml','msp@ucsd.edu');> wrote:
Yes... but on looking at it, I think it's better practice to turn the command around and say,
make -f makefile.mac "ARCH=-arch x86_64" "EXTRAARCH=-arch x86_64" JACK=true
cheers Miller
On Sun, Sep 13, 2015 at 10:56:04AM -0500, Mike McGonagle wrote:
Miller, thanks for the prompt reply. I've looked at what you said, but
I'm
just a bit confused by what you mean by ...and hit "JACK=true make..."
Does this mean to define an environment variable for JACK and then run
make
with those options?
Mike
On Saturday, September 12, 2015, Miller Puckette msp@ucsd.edu wrote:
How I do it:
unarchive any recent version of Pd overwrite the source with whatever version you want (for instance, you can clone the git repo) into Pd-xxx/Contents/Resources cd to Pd-xxx/Contents/Resources/src and hit "JACK=true make -f makefile.mac"
(or if you want 64-bit-ness:) JACK=true make -f makefile.mac "ARCH=-arch x86_64" "EXTRAARCH=-arch x86_64"
cheers Miller
On Sat, Sep 12, 2015 at 07:19:40PM -0500, Mike McGonagle wrote:
I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla
along
with the few externals I need. I'm currently using Mac OS X 10.6.8
and
have
tried using the standard "autogen/configure/make", but it seems to
stop
when trying to link things up. I noticed that the makefile is set up
to
target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
Pd-dev mailing list Pd-dev@lists.iem.at javascript:; http://lists.puredata.info/listinfo/pd-dev
sorry to hijack the thread, but a parallel question here, what are the libraries already available in the deken plugin? I know of cyclone only. cheers
2015-09-12 21:19 GMT-03:00 Mike McGonagle mjmogo@gmail.com:
I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla along with the few externals I need. I'm currently using Mac OS X 10.6.8 and have tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On Sat, 2015-09-12 at 21:46 -0300, Alexandre Torres Porres wrote:
sorry to hijack the thread, but a parallel question here, what are the libraries already available in the deken plugin? I know of cyclone only.
I try to take care of a few that I use for my own projects:
However, I don't have access to a Mac and I'm also not very familiar with compiling on OS X. Thus, I'm currently able to build for the following architectures:
There are many more externals available through deken, but I can't give you a comprehensive list.
2015-09-12 21:19 GMT-03:00 Mike McGonagle mjmogo@gmail.com: I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla along with the few externals I need. I'm currently using Mac OS X 10.6.8 and have tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Or more generally, what is a recommended way of getting the building tools that one is familiar with on Linux? I've heard of homebrew and fink, but would like to know what people use nowadays.
Roman
On 09/13/2015 02:46 AM, Alexandre Torres Porres wrote:
sorry to hijack the thread,
please don't.
but a parallel question here,
how's that related to compiling Pd on OSX?
what are the libraries already available in the deken plugin?
"so which websites are available in google? i know of puredata.info only" :-)
seriously, deken does not come with any externals/libraries/...
what it does it provide an interface to search for plugins. currently it searches uploads to puredata.info (where the uploaded files have to use a special filename convention).
it also searches for packages provided by apt (on Debian and derivatives).
I know of cyclone only.
how about:
On Sun, Sep 13, 2015 at 9:41 PM, IOhannes m zmölnig zmoelnig@iem.at wrote:
how about:
- install "deken".
- go to "Find externals"
- Click on "Show all"
- read the list of all packages you can download?
I don't see a "Show all" on deken... I get the attached image..
neither do I, no "show all"
2015-09-13 16:04 GMT-03:00 Alexandros Drymonitis adrcki@gmail.com:
On Sun, Sep 13, 2015 at 9:41 PM, IOhannes m zmölnig zmoelnig@iem.at wrote:
how about:
- install "deken".
- go to "Find externals"
- Click on "Show all"
- read the list of all packages you can download?
I don't see a "Show all" on deken... I get the attached image..
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
I ended up simply hitting "search" with nothing in the search bar - that seems to give you everything. (Someone had suggested that on the list I think :)
M
On Sun, Sep 13, 2015 at 05:06:19PM -0300, Alexandre Torres Porres wrote:
neither do I, no "show all"
2015-09-13 16:04 GMT-03:00 Alexandros Drymonitis adrcki@gmail.com:
On Sun, Sep 13, 2015 at 9:41 PM, IOhannes m zmölnig zmoelnig@iem.at wrote:
how about:
- install "deken".
- go to "Find externals"
- Click on "Show all"
- read the list of all packages you can download?
I don't see a "Show all" on deken... I get the attached image..
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
miller, any chance the deken plugin would already come as a built in feature in vanilla 0.47?
that'd be really awesome :)
cheers
2015-09-13 17:12 GMT-03:00 Miller Puckette msp@ucsd.edu:
I ended up simply hitting "search" with nothing in the search bar - that seems to give you everything. (Someone had suggested that on the list I think :)
M
On Sun, Sep 13, 2015 at 05:06:19PM -0300, Alexandre Torres Porres wrote:
neither do I, no "show all"
2015-09-13 16:04 GMT-03:00 Alexandros Drymonitis adrcki@gmail.com:
On Sun, Sep 13, 2015 at 9:41 PM, IOhannes m zmölnig zmoelnig@iem.at wrote:
how about:
- install "deken".
- go to "Find externals"
- Click on "Show all"
- read the list of all packages you can download?
I don't see a "Show all" on deken... I get the attached image..
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management ->
On Sun, Sep 13, 2015 at 9:41 PM, IOhannes m zmölnig zmoelnig@iem.at wrote:
- Click on "Show all"
2015-09-13 16:04 GMT-03:00 Alexandros Drymonitis adrcki@gmail.com:
I don't see a "Show all" on deken... I get the attached image..
On 09/13/2015 10:06 PM, Alexandre Torres Porres wrote:
neither do I, no "show all"
which version of "deken" are you using? recent deken, e.g. v0.1 (it's a bit unfortunate that deken doesn't give any hints about which version it is) should show "show all" in the button if there is no search text.
i just tested this on
attached you'll find a few screenshots how it should look like.
but anyhow, even if you have an outdated version of deken, it should give you a full list of available packages¹ when "search"ing for an empty search string.
mdgds IOhannes
¹ well, minus all the packages that were filtered out by the bugs in your version of deken.
Do you have a particular reason you need to recompile with the externals bundled in the app? Virtually all of the externals that work with extended will work as-is with Vanilla, so you can just make a pd-externals folder in your home directory and copy the .pd_darwin files you need there from your Pd-extended app, then download and open Vanilla (http://msp.ucsd.edu/software.html) and put the externals folder on your search path (in preferences).
Joel
On 09/12/2015 07:19 PM, Mike McGonagle wrote:
I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla along with the few externals I need. I'm currently using Mac OS X 10.6.8 and have tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Yes, I've found some bugs in some of my older externals that I'm still using. For the past couple of years I've just been using cludges to fix those problems, but if I'm going to redo these things, I might as well get rid of the cludges.
I have just copied externals to and from extended, one in particular is the csound external. It is only distributed in compiled format and delivered with the csound distribution. You can copy it either to the pd extern directory, or wherever you have your path set up.
Mike
On Sunday, September 13, 2015, Joel Matthys jwmatthys@gmail.com wrote:
Do you have a particular reason you need to recompile with the externals bundled in the app? Virtually all of the externals that work with extended will work as-is with Vanilla, so you can just make a pd-externals folder in your home directory and copy the .pd_darwin files you need there from your Pd-extended app, then download and open Vanilla ( http://msp.ucsd.edu/software.html) and put the externals folder on your search path (in preferences).
Joel
On 09/12/2015 07:19 PM, Mike McGonagle wrote:
I've recently learned that Pd extended is pretty much no longer being "extended", and as such, I'd like to learn how to compile Pd Vanilla along with the few externals I need. I'm currently using Mac OS X 10.6.8 and have tried using the standard "autogen/configure/make", but it seems to stop when trying to link things up. I noticed that the makefile is set up to target 10.8 by the autogen, what can I do to change it for my system?
Any suggestions for learning this would be greatly appreciated.
Mike
_______________________________________________Pd-list@lists.iem.at javascript:_e(%7B%7D,'cvml','Pd-list@lists.iem.at'); mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list