Hi Olivier,
I'm wondering if somehow the compiler is compiling for your 64bit cpu
when compiling csound. I was reading something about enforcing 32bit
by using "-m32" as a compiler flag. Could you try recompiling csound,
modifying your custom.py to have:
customCCFLAGS.append("-m32")
customCXXFLAGS.append("-m32")
customLINKFLAGS.append("-m32")
customSHLINKFLAGS.append("-m32")
I'm not sure if that will work, as I have not ever dealt with 64 bit
cpu's. My current guess is that there is some kind of disagreement
between the JVM and csound and that it has to do with 32/64-bit.
Another option is to uninstall your copy of csound and install the one
that Felipe Satelier packaged for Debian. There is a libcsnd-java
package that the csnd.jar I believe. Those are surely compiled for
32bit.
Hopefully one of these options will help!
steven
On Thu, Oct 9, 2008 at 6:41 AM, obaudouin
<olivierbaudouin@perso.altitudetelecom.fr> wrote:
>
> No, 32 bit is more easy to use!
>
>
> Steven Yi wrote:
>>
>> Hi Olivier,
>>
>> Are you runing 64 bit Linux?
>>
>> steven
>>
>> On Thu, Oct 9, 2008 at 6:35 AM, obaudouin
>> <olivierbaudouin@perso.altitudetelecom.fr> wrote:
>>>
>>> AMD Athlon 64 X2 4000+ (dual core)
>>>
>>>
>>> Steven Yi wrote:
>>>>
>>>> HI Olivier,
>>>>
>>>> Could you tell me what CPU you are using?
>>>>
>>>> Thanks,
>>>> steven
>>>>
>>>> On Thu, Oct 9, 2008 at 12:49 AM, obaudouin
>>>> <olivierbaudouin@perso.altitudetelecom.fr> wrote:
>>>>>
>>>>> Hello!
>>>>>
>>>>> I followed your advices, but Blue crashed yet... Only sun-java6 is
>>>>> installed
>>>>> on my system
>>>>>
>>>>> SCONS:
>>>>> scons useDouble=1 buildJavaWrapper=1 buildInterfaces=1 buildVirtual=1
>>>>> noDebug=0 dynamicCsoundLibrary=1
>>>>>
>>>>> BASHRC:
>>>>> export OPCODEDIR64=/usr/local/lib/csound/plugins64
>>>>> export CSSTRNGS=/usr/local/share/locale
>>>>> export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPCODEDIR64
>>>>>
>>>>> BLUE.SH:
>>>>> BLUE_HOME=/home/maestro/paquetages/blue
>>>>>
>>>>> OPCODEDIR64=/usr/local/lib/csound/plugins64
>>>>> CSSTRNGS=/usr/local/share/locale
>>>>>
>>>>>
>>>>> CSND_JAR=/usr/local/lib/csound/java/csnd.jar
>>>>>
>>>>> BLUE_LIBS=$BLUE_HOME/lib/java-getopt-1.0.9.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/blue.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/jython.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/EXML.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/js.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/xmlrpc-1.1.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/jacl.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/tcljava.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/l2fprod-common-sheet.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/commons-lang-2.2.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/myswing.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/swing-layout-1.0.3.jar
>>>>> BLUE_LIBS=$BLUE_LIBS:$CSND_JAR
>>>>>
>>>>> java -Djava.library.path=/usr/local/lib/ -Xms32m -Xmx256m
>>>>> -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS blue.Blue "$@"
>>>>>
>>>>> LOG FILE AFTER CRASH:
>>>>>
http://www.nabble.com/file/p19894065/hs_err_pid5820.log>>>>> hs_err_pid5820.log
>>>>>
>>>>> Thanks,
>>>>>
>>>>> Olivier.
>>>>>
>>>>>
>>>>> Steven Yi wrote:
>>>>>>
>>>>>> Hi Olivier,
>>>>>>
>>>>>> I have installed Debian from the debian-installer page you sent, using
>>>>>> the netinst version. I checked out csound5 from CVS and installed all
>>>>>> necessary tools and libraries using apt-get. I used the following
>>>>>> build.sh file I wrote to create the build:
>>>>>>
>>>>>> #!/bin/sh
>>>>>> scons useDouble=1 buildJavaWrapper=1 buildInterfaces=1 buildVirtual=1
>>>>>> noDebug=0 dynamicCsoundLibrary=1
>>>>>>
>>>>>> I added the following to ~/.bashrc:
>>>>>>
>>>>>> export OPCODEDIR64=/home/steven/csound5
>>>>>> export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPCODEDIR64
>>>>>>
>>>>>> I installed using the blue_0.124.2_installer.jar from SourceForge, and
>>>>>> for blue.sh I modifed:
>>>>>>
>>>>>> BLUE_HOME=/home/steven/blue
>>>>>> CSND_JAR=/home/steven/csound5/csnd.jar
>>>>>>
>>>>>> BLUE_LIBS=$BLUE_HOME/lib/java-getopt-1.0.9.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/blue.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/jython.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/EXML.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/js.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/xmlrpc-1.1.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/jacl.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/tcljava.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/l2fprod-common-sheet.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/commons-lang-2.2.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/myswing.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$BLUE_HOME/lib/swing-layout-1.0.3.jar
>>>>>> BLUE_LIBS=$BLUE_LIBS:$CSND_JAR
>>>>>>
>>>>>> java -Djava.library.path=/home/steven/csound5 -Xms32m -Xmx256m
>>>>>> -DBLUE_HOME="$BLU
>>>>>> E_HOME" -cp $BLUE_LIBS blue.Blue "$@"
>>>>>>
>>>>>>
>>>>>> With this, I was able to load blue and with API enabled, I was able to
>>>>>> render multiple projects from the examples folder as well as update
>>>>>> automations in realtime.
>>>>>>
>>>>>> Also, after installing java-6-sun with apt-get, as root, I was sure to
>>>>>> run "update-alternatives --config java" to make sure that the
>>>>>> sun-6-java was used and not the gcj version that was also installed.
>>>>>> Also, I ran "update-alternatives --config javac" but had only one
>>>>>> option on this computer.
>>>>>>
>>>>>> Maybe the issue is that you are compiling csound5's java library with
>>>>>> a different version of javac than sun? I don't know if you have
>>>>>> multiple javac installed, but you could check with
>>>>>> "update-alternatives --config javac". Otherwise, could you maybe
>>>>>> rebuild csound5 with the build settings I gave above to see if that
>>>>>> helps?
>>>>>>
>>>>>> Thanks!
>>>>>> steven
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Mon, Oct 6, 2008 at 4:09 PM, Steven Yi <stevenyi@gmail.com> wrote:
>>>>>>> Hi Olivier,
>>>>>>>
>>>>>>> Oh, I didn't realize Sid was the term for the always-ongoing
>>>>>>> development release. That would explain things. =P I'm going to
>>>>>>> download the netinstall version now and see if I can get that setup,
>>>>>>> as the DVD release is 5 dvd's. X_x
>>>>>>>
>>>>>>> Thanks!
>>>>>>> steven
>>>>>>>
>>>>>>> On Mon, Oct 6, 2008 at 2:37 PM, obaudouin
>>>>>>> <olivierbaudouin@perso.altitudetelecom.fr> wrote:
>>>>>>>>
>>>>>>>> See
http://www.debian.org/devel/debian-installer/>>>>>>>>
>>>>>>>>
>>>>>>>> Steven Yi wrote:
>>>>>>>>>
>>>>>>>>> Oh, btw, are you using a 64-bit Linux?
>>>>>>>>>
>>>>>>>>> On Mon, Oct 6, 2008 at 1:41 PM, Steven Yi <stevenyi@gmail.com>
>>>>>>>>> wrote:
>>>>>>>>>> HI Olivier,
>>>>>>>>>>
>>>>>>>>>> I'm on debian.org and see that etch is the latest version. Could
>>>>>>>>>> you
>>>>>>>>>> help point me to a sid release to download? I would like to match
>>>>>>>>>> your
>>>>>>>>>> setup here to try to reproduce.
>>>>>>>>>>
>>>>>>>>>> Thanks!
>>>>>>>>>> steven
>>>>>>>>>>
>>>>>>>>>> On Mon, Oct 6, 2008 at 1:20 PM, obaudouin
>>>>>>>>>> <olivierbaudouin@perso.altitudetelecom.fr> wrote:
>>>>>>>>>>>
>>>>>>>>>>> Hi,
>>>>>>>>>>>
>>>>>>>>>>> In fact, Blue crashes with a simple 'oscili' with stereo output.
>>>>>>>>>>> It
>>>>>>>>>>> plays
>>>>>>>>>>> well one time, and crashes at the second time. Whatever the audio
>>>>>>>>>>> driver
>>>>>>>>>>> (ALSA, JACK).
>>>>>>>>>>>
>>>>>>>>>>> Debian sid, the latest release. All my other softwares work fine,
>>>>>>>>>>> excepted
>>>>>>>>>>> Blue (with Csound API enabled).
>>>>>>>>>>>
>>>>>>>>>>> Olivier.
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Steven Yi wrote:
>>>>>>>>>>>>
>>>>>>>>>>>> Hi Olivier,
>>>>>>>>>>>>
>>>>>>>>>>>> I took a look at the log and it seems there is a segfault going
>>>>>>>>>>>> on
>>>>>>>>>>>> from Csound during a performance. Were you able to start blue,
>>>>>>>>>>>> then
>>>>>>>>>>>> when you tried to render a project it crashed? Does this happen
>>>>>>>>>>>> with
>>>>>>>>>>>> all blue projects, including the ones in the example folders?
>>>>>>>>>>>> If
>>>>>>>>>>>> this
>>>>>>>>>>>> crashed with a particular project, could you by chance place the
>>>>>>>>>>>> project somewhere I can get it and email me off list so I can
>>>>>>>>>>>> try
>>>>>>>>>>>> to
>>>>>>>>>>>> see what is causing the problem?
>>>>>>>>>>>>
>>>>>>>>>>>> If it's none of the above, could you remind me what version of
>>>>>>>>>>>> Debian
>>>>>>>>>>>> you are using? All I remember was looking at debian's site and
>>>>>>>>>>>> thinking you were running an older version than the latest, but
>>>>>>>>>>>> couldn't remember what version. I can try installing Debian and
>>>>>>>>>>>> seeing if I can reproduce the error that way.
>>>>>>>>>>>>
>>>>>>>>>>>> Thanks!
>>>>>>>>>>>> steven
>>>>>>>>>>>>
>>>>>>>>>>>> On Sun, Oct 5, 2008 at 1:33 AM, obaudouin
>>>>>>>>>>>> <olivierbaudouin@perso.altitudetelecom.fr> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>> Hi Steven!
>>>>>>>>>>>>>
>>>>>>>>>>>>> I have uninstalled Csound, cleaned
>>>>>>>>>>>>> /usr/local/lib/csound/plugins64/*,
>>>>>>>>>>>>> and
>>>>>>>>>>>>> reinstall Csound. Blue crashes yet, but all plugins have been
>>>>>>>>>>>>> loaded.
>>>>>>>>>>>>> See
>>>>>>>>>>>>> the log file:
>>>>>>>>>>>>>
http://www.nabble.com/file/p19821909/hs_err_pid6094.log>>>>>>>>>>>>> hs_err_pid6094.log
>>>>>>>>>>>>>
>>>>>>>>>>>>> Best,
>>>>>>>>>>>>>
>>>>>>>>>>>>> Olivier.
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> Steven Yi wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Hello Olivier,
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I looked at the log and it seems that the only plugins loaded
>>>>>>>>>>>>>> were:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> libugakbari.so
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> It also looks like you compiled/installed Csound on your own
>>>>>>>>>>>>>> (I'm
>>>>>>>>>>>>>> assuming this since the library showed up in
>>>>>>>>>>>>>> /usr/local/lib/csound/plugins64). I'm wondering if Csound is
>>>>>>>>>>>>>> crashing
>>>>>>>>>>>>>> on a bad opcode library. Could you maybe try removing all
>>>>>>>>>>>>>> libraries
>>>>>>>>>>>>>> plugins64 (maybe just move to a different directory in case
>>>>>>>>>>>>>> you
>>>>>>>>>>>>>> want
>>>>>>>>>>>>>> to roll back) and recompiling/installing to clear out any old
>>>>>>>>>>>>>> opcode
>>>>>>>>>>>>>> plugins?
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Thanks!
>>>>>>>>>>>>>> steven
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On Mon, Sep 29, 2008 at 11:58 PM, obaudouin
>>>>>>>>>>>>>> <olivierbaudouin@perso.altitudetelecom.fr> wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Hi everybody,
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Blue 0.124.2 or 0.124.1 are unstable yet, with
>>>>>>>>>>>>>>> Linux-Debian-Sid
>>>>>>>>>>>>>>> and
>>>>>>>>>>>>>>> sun-java6. See
>>>>>>>>>>>>>>>
http://www.nabble.com/file/p19737102/hs_err_pid3741.log>>>>>>>>>>>>>>> hs_err_pid3741.log
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Best,
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Olivier.
>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>> View this message in context:
>>>>>>>>>>>>>>>
http://www.nabble.com/Csound-API-unstability-tp19737102p19737102.html>>>>>>>>>>>>>>> Sent from the Csound - Blue - User mailing list archive at
>>>>>>>>>>>>>>> Nabble.com.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>>>>>>> This SF.Net email is sponsored by the Moblin Your Move
>>>>>>>>>>>>>>> Developer's
>>>>>>>>>>>>>>> challenge
>>>>>>>>>>>>>>> Build the coolest Linux based applications with Moblin SDK &
>>>>>>>>>>>>>>> win
>>>>>>>>>>>>>>> great
>>>>>>>>>>>>>>> prizes
>>>>>>>>>>>>>>> Grand prize is a trip for two to an Open Source event
>>>>>>>>>>>>>>> anywhere
>>>>>>>>>>>>>>> in
>>>>>>>>>>>>>>> the
>>>>>>>>>>>>>>> world
>>>>>>>>>>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Bluemusic-users mailing list
>>>>>>>>>>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>>>>>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>>>>>> This SF.Net email is sponsored by the Moblin Your Move
>>>>>>>>>>>>>> Developer's
>>>>>>>>>>>>>> challenge
>>>>>>>>>>>>>> Build the coolest Linux based applications with Moblin SDK &
>>>>>>>>>>>>>> win
>>>>>>>>>>>>>> great
>>>>>>>>>>>>>> prizes
>>>>>>>>>>>>>> Grand prize is a trip for two to an Open Source event anywhere
>>>>>>>>>>>>>> in
>>>>>>>>>>>>>> the
>>>>>>>>>>>>>> world
>>>>>>>>>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Bluemusic-users mailing list
>>>>>>>>>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>>>>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> --
>>>>>>>>>>>>> View this message in context:
>>>>>>>>>>>>>
http://www.nabble.com/Csound-API-unstability-tp19737102p19821909.html>>>>>>>>>>>>> Sent from the Csound - Blue - User mailing list archive at
>>>>>>>>>>>>> Nabble.com.
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>>>>> This SF.Net email is sponsored by the Moblin Your Move
>>>>>>>>>>>>> Developer's
>>>>>>>>>>>>> challenge
>>>>>>>>>>>>> Build the coolest Linux based applications with Moblin SDK &
>>>>>>>>>>>>> win
>>>>>>>>>>>>> great
>>>>>>>>>>>>> prizes
>>>>>>>>>>>>> Grand prize is a trip for two to an Open Source event anywhere
>>>>>>>>>>>>> in
>>>>>>>>>>>>> the
>>>>>>>>>>>>> world
>>>>>>>>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>
>>>>>>>>>>>>> Bluemusic-users mailing list
>>>>>>>>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>>>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>>>> This SF.Net email is sponsored by the Moblin Your Move
>>>>>>>>>>>> Developer's
>>>>>>>>>>>> challenge
>>>>>>>>>>>> Build the coolest Linux based applications with Moblin SDK & win
>>>>>>>>>>>> great
>>>>>>>>>>>> prizes
>>>>>>>>>>>> Grand prize is a trip for two to an Open Source event anywhere
>>>>>>>>>>>> in
>>>>>>>>>>>> the
>>>>>>>>>>>> world
>>>>>>>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Bluemusic-users mailing list
>>>>>>>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> --
>>>>>>>>>>> View this message in context:
>>>>>>>>>>>
http://www.nabble.com/Csound-API-unstability-tp19737102p19845608.html>>>>>>>>>>> Sent from the Csound - Blue - User mailing list archive at
>>>>>>>>>>> Nabble.com.
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>>> This SF.Net email is sponsored by the Moblin Your Move
>>>>>>>>>>> Developer's
>>>>>>>>>>> challenge
>>>>>>>>>>> Build the coolest Linux based applications with Moblin SDK & win
>>>>>>>>>>> great
>>>>>>>>>>> prizes
>>>>>>>>>>> Grand prize is a trip for two to an Open Source event anywhere in
>>>>>>>>>>> the
>>>>>>>>>>> world
>>>>>>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Bluemusic-users mailing list
>>>>>>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>>>>>>>>> challenge
>>>>>>>>> Build the coolest Linux based applications with Moblin SDK & win
>>>>>>>>> great
>>>>>>>>> prizes
>>>>>>>>> Grand prize is a trip for two to an Open Source event anywhere in
>>>>>>>>> the
>>>>>>>>> world
>>>>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>>>>> _______________________________________________
>>>>>>>>> Bluemusic-users mailing list
>>>>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>> --
>>>>>>>> View this message in context:
>>>>>>>>
http://www.nabble.com/Csound-API-unstability-tp19737102p19846922.html>>>>>>>> Sent from the Csound - Blue - User mailing list archive at
>>>>>>>> Nabble.com.
>>>>>>>>
>>>>>>>>
>>>>>>>> -------------------------------------------------------------------------
>>>>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>>>>>>>> challenge
>>>>>>>> Build the coolest Linux based applications with Moblin SDK & win
>>>>>>>> great
>>>>>>>> prizes
>>>>>>>> Grand prize is a trip for two to an Open Source event anywhere in
>>>>>>>> the
>>>>>>>> world
>>>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>>>> _______________________________________________
>>>>>>>> Bluemusic-users mailing list
>>>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>>>
>>>>>>>
>>>>>>
>>>>>> -------------------------------------------------------------------------
>>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>>>>>> challenge
>>>>>> Build the coolest Linux based applications with Moblin SDK & win great
>>>>>> prizes
>>>>>> Grand prize is a trip for two to an Open Source event anywhere in the
>>>>>> world
>>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>>> _______________________________________________
>>>>>> Bluemusic-users mailing list
>>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>>
>>>>>>
>>>>>
>>>>> --
>>>>> View this message in context:
>>>>>
http://www.nabble.com/Csound-API-unstability-tp19737102p19894065.html>>>>> Sent from the Csound - Blue - User mailing list archive at Nabble.com.
>>>>>
>>>>>
>>>>> -------------------------------------------------------------------------
>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>>>>> challenge
>>>>> Build the coolest Linux based applications with Moblin SDK & win great
>>>>> prizes
>>>>> Grand prize is a trip for two to an Open Source event anywhere in the
>>>>> world
>>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>>> _______________________________________________
>>>>> Bluemusic-users mailing list
>>>>> Bluemusic-users@lists.sourceforge.net
>>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>>
>>>>
>>>> -------------------------------------------------------------------------
>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>>>> challenge
>>>> Build the coolest Linux based applications with Moblin SDK & win great
>>>> prizes
>>>> Grand prize is a trip for two to an Open Source event anywhere in the
>>>> world
>>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>>> _______________________________________________
>>>> Bluemusic-users mailing list
>>>> Bluemusic-users@lists.sourceforge.net
>>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>>
>>>>
>>>
>>> --
>>> View this message in context:
>>>
http://www.nabble.com/Csound-API-unstability-tp19737102p19899127.html>>> Sent from the Csound - Blue - User mailing list archive at Nabble.com.
>>>
>>>
>>> -------------------------------------------------------------------------
>>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>>> challenge
>>> Build the coolest Linux based applications with Moblin SDK & win great
>>> prizes
>>> Grand prize is a trip for two to an Open Source event anywhere in the
>>> world
>>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>>> _______________________________________________
>>> Bluemusic-users mailing list
>>> Bluemusic-users@lists.sourceforge.net
>>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>>
>>
>> -------------------------------------------------------------------------
>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>> challenge
>> Build the coolest Linux based applications with Moblin SDK & win great
>> prizes
>> Grand prize is a trip for two to an Open Source event anywhere in the
>> world
>>
http://moblin-contest.org/redirect.php?banner_id=100&url=/>> _______________________________________________
>> Bluemusic-users mailing list
>> Bluemusic-users@lists.sourceforge.net
>>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>>
>>
>
> --
> View this message in context:
http://www.nabble.com/Csound-API-unstability-tp19737102p19899239.html> Sent from the Csound - Blue - User mailing list archive at Nabble.com.
>
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
>
http://moblin-contest.org/redirect.php?banner_id=100&url=/> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@lists.sourceforge.net
>
https://lists.sourceforge.net/lists/listinfo/bluemusic-users>
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluemusic-users