Csound Csound-dev Csound-tekno Search About

[Cs-dev] Strange error

Date2013-05-28 04:48
FromAndres Cabrera
Subject[Cs-dev] Strange error
AttachmentsNone  None  
Hi,

I'm in the process of moving to a new 64 bit ubuntu, and I'm getting this error:

[ 63%] Building C object CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
Linking C shared library libcsound64.so
/usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
make[2]: *** [libcsound64.so.6.0] Error 1
make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
make: *** [all] Error 2

Any ideas?

Cheers,
Andrés

Date2013-05-28 08:00
FromVictor Lazzarini
SubjectRe: [Cs-dev] Strange error
It builds here on x86_64 ubuntu linux. The function is implemented in csound.c and looks like the linking against a call in main.c is failing. Is -fPIC being used?
On 28 May 2013, at 04:48, Andres Cabrera wrote:

> Hi,
> 
> I'm in the process of moving to a new 64 bit ubuntu, and I'm getting this error:
> 
> [ 63%] Building C object CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
> Linking C shared library libcsound64.so
> /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a shared object; recompile with -fPIC
> /usr/bin/ld: final link failed: Bad value
> collect2: error: ld returned 1 exit status
> make[2]: *** [libcsound64.so.6.0] Error 1
> make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
> make: *** [all] Error 2
> 
> Any ideas?
> 
> Cheers,
> Andrés
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service 
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2013-05-28 15:21
FromAndres Cabrera
SubjectRe: [Cs-dev] Strange error
AttachmentsNone  None  
It is used when linking libcsound, but it seems it might not have been used when building something else...

I'm on 13.04, any idea why this might be a problem?

Cheers,
Andrés


On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
It builds here on x86_64 ubuntu linux. The function is implemented in csound.c and looks like the linking against a call in main.c is failing. Is -fPIC being used?
On 28 May 2013, at 04:48, Andres Cabrera wrote:

> Hi,
>
> I'm in the process of moving to a new 64 bit ubuntu, and I'm getting this error:
>
> [ 63%] Building C object CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
> Linking C shared library libcsound64.so
> /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a shared object; recompile with -fPIC
> /usr/bin/ld: final link failed: Bad value
> collect2: error: ld returned 1 exit status
> make[2]: *** [libcsound64.so.6.0] Error 1
> make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
> make: *** [all] Error 2
>
> Any ideas?
>
> Cheers,
> Andrés
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2013-05-28 15:31
FromVictor Lazzarini
SubjectRe: [Cs-dev] Strange error
AttachmentsNone  None  
According to the error message, it needs to be in the command-line when compiling main.c; 
I'll try and update my ubuntu to see if I can catch this.
On 28 May 2013, at 15:21, Andres Cabrera wrote:

It is used when linking libcsound, but it seems it might not have been used when building something else...

I'm on 13.04, any idea why this might be a problem?

Cheers,
Andrés


On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
It builds here on x86_64 ubuntu linux. The function is implemented in csound.c and looks like the linking against a call in main.c is failing. Is -fPIC being used?
On 28 May 2013, at 04:48, Andres Cabrera wrote:

> Hi,
>
> I'm in the process of moving to a new 64 bit ubuntu, and I'm getting this error:
>
> [ 63%] Building C object CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
> Linking C shared library libcsound64.so
> /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a shared object; recompile with -fPIC
> /usr/bin/ld: final link failed: Bad value
> collect2: error: ld returned 1 exit status
> make[2]: *** [libcsound64.so.6.0] Error 1
> make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
> make: *** [all] Error 2
>
> Any ideas?
>
> Cheers,
> Andrés
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2013-05-28 16:14
FromFelipe Sateler
SubjectRe: [Cs-dev] Strange error
Are you building the static library?

Static libraries are usually built without -fPIC

On Tue, May 28, 2013 at 10:31 AM, Victor Lazzarini
 wrote:
> According to the error message, it needs to be in the command-line when
> compiling main.c;
> I'll try and update my ubuntu to see if I can catch this.
>
> On 28 May 2013, at 15:21, Andres Cabrera wrote:
>
> It is used when linking libcsound, but it seems it might not have been used
> when building something else...
>
> I'm on 13.04, any idea why this might be a problem?
>
> Cheers,
> Andrés
>
>
> On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini
>  wrote:
>>
>> It builds here on x86_64 ubuntu linux. The function is implemented in
>> csound.c and looks like the linking against a call in main.c is failing. Is
>> -fPIC being used?
>> On 28 May 2013, at 04:48, Andres Cabrera wrote:
>>
>> > Hi,
>> >
>> > I'm in the process of moving to a new 64 bit ubuntu, and I'm getting
>> > this error:
>> >
>> > [ 63%] Building C object
>> > CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
>> > Linking C shared library libcsound64.so
>> > /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation
>> > R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a
>> > shared object; recompile with -fPIC
>> > /usr/bin/ld: final link failed: Bad value
>> > collect2: error: ld returned 1 exit status
>> > make[2]: *** [libcsound64.so.6.0] Error 1
>> > make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
>> > make: *** [all] Error 2
>> >
>> > Any ideas?
>> >
>> > Cheers,
>> > Andrés
>> >
>> > ------------------------------------------------------------------------------
>> > Try New Relic Now & We'll Send You this Cool Shirt
>> > New Relic is the only SaaS-based application performance monitoring
>> > service
>> > that delivers powerful full stack analytics. Optimize and monitor your
>> > browser, app, & servers with just a few lines of code. Try New Relic
>> > and get this awesome Nerd Life shirt!
>> > http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> Dr Victor Lazzarini
>> Senior Lecturer
>> Dept. of Music
>> NUI Maynooth Ireland
>> tel.: +353 1 708 3545
>> Victor dot Lazzarini AT nuim dot ie
>>
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Try New Relic Now & We'll Send You this Cool Shirt
>> New Relic is the only SaaS-based application performance monitoring
>> service
>> that delivers powerful full stack analytics. Optimize and monitor your
>> browser, app, & servers with just a few lines of code. Try New Relic
>> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt!
> http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
>
>
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



-- 

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/lis

Date2013-05-28 16:51
FromAndres Cabrera
SubjectRe: [Cs-dev] Strange error
AttachmentsNone  None  
Hi,

This should be the dynamic library build. I didn't specify anything for cmake.

Cheers,
Andrés


On Tue, May 28, 2013 at 8:14 AM, Felipe Sateler <fsateler@gmail.com> wrote:
Are you building the static library?

Static libraries are usually built without -fPIC

On Tue, May 28, 2013 at 10:31 AM, Victor Lazzarini
<Victor.Lazzarini@nuim.ie> wrote:
> According to the error message, it needs to be in the command-line when
> compiling main.c;
> I'll try and update my ubuntu to see if I can catch this.
>
> On 28 May 2013, at 15:21, Andres Cabrera wrote:
>
> It is used when linking libcsound, but it seems it might not have been used
> when building something else...
>
> I'm on 13.04, any idea why this might be a problem?
>
> Cheers,
> Andrés
>
>
> On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini
> <Victor.Lazzarini@nuim.ie> wrote:
>>
>> It builds here on x86_64 ubuntu linux. The function is implemented in
>> csound.c and looks like the linking against a call in main.c is failing. Is
>> -fPIC being used?
>> On 28 May 2013, at 04:48, Andres Cabrera wrote:
>>
>> > Hi,
>> >
>> > I'm in the process of moving to a new 64 bit ubuntu, and I'm getting
>> > this error:
>> >
>> > [ 63%] Building C object
>> > CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
>> > Linking C shared library libcsound64.so
>> > /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation
>> > R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a
>> > shared object; recompile with -fPIC
>> > /usr/bin/ld: final link failed: Bad value
>> > collect2: error: ld returned 1 exit status
>> > make[2]: *** [libcsound64.so.6.0] Error 1
>> > make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
>> > make: *** [all] Error 2
>> >
>> > Any ideas?
>> >
>> > Cheers,
>> > Andrés
>> >
>> > ------------------------------------------------------------------------------
>> > Try New Relic Now & We'll Send You this Cool Shirt
>> > New Relic is the only SaaS-based application performance monitoring
>> > service
>> > that delivers powerful full stack analytics. Optimize and monitor your
>> > browser, app, & servers with just a few lines of code. Try New Relic
>> > and get this awesome Nerd Life shirt!
>> > http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> Dr Victor Lazzarini
>> Senior Lecturer
>> Dept. of Music
>> NUI Maynooth Ireland
>> tel.: +353 1 708 3545
>> Victor dot Lazzarini AT nuim dot ie
>>
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Try New Relic Now & We'll Send You this Cool Shirt
>> New Relic is the only SaaS-based application performance monitoring
>> service
>> that delivers powerful full stack analytics. Optimize and monitor your
>> browser, app, & servers with just a few lines of code. Try New Relic
>> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt!
> http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
>
>
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



--

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2013-05-28 22:11
FromVictor Lazzarini
SubjectRe: [Cs-dev] Strange error
AttachmentsNone  None  
yes, I updated my ubuntu 13.04 version and was able to build csound with no errors.

Victor
On 28 May 2013, at 16:51, Andres Cabrera wrote:

Hi,

This should be the dynamic library build. I didn't specify anything for cmake.

Cheers,
Andrés


On Tue, May 28, 2013 at 8:14 AM, Felipe Sateler <fsateler@gmail.com> wrote:
Are you building the static library?

Static libraries are usually built without -fPIC

On Tue, May 28, 2013 at 10:31 AM, Victor Lazzarini
<Victor.Lazzarini@nuim.ie> wrote:
> According to the error message, it needs to be in the command-line when
> compiling main.c;
> I'll try and update my ubuntu to see if I can catch this.
>
> On 28 May 2013, at 15:21, Andres Cabrera wrote:
>
> It is used when linking libcsound, but it seems it might not have been used
> when building something else...
>
> I'm on 13.04, any idea why this might be a problem?
>
> Cheers,
> Andrés
>
>
> On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini
> <Victor.Lazzarini@nuim.ie> wrote:
>>
>> It builds here on x86_64 ubuntu linux. The function is implemented in
>> csound.c and looks like the linking against a call in main.c is failing. Is
>> -fPIC being used?
>> On 28 May 2013, at 04:48, Andres Cabrera wrote:
>>
>> > Hi,
>> >
>> > I'm in the process of moving to a new 64 bit ubuntu, and I'm getting
>> > this error:
>> >
>> > [ 63%] Building C object
>> > CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
>> > Linking C shared library libcsound64.so
>> > /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation
>> > R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a
>> > shared object; recompile with -fPIC
>> > /usr/bin/ld: final link failed: Bad value
>> > collect2: error: ld returned 1 exit status
>> > make[2]: *** [libcsound64.so.6.0] Error 1
>> > make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
>> > make: *** [all] Error 2
>> >
>> > Any ideas?
>> >
>> > Cheers,
>> > Andrés
>> >
>> > ------------------------------------------------------------------------------
>> > Try New Relic Now & We'll Send You this Cool Shirt
>> > New Relic is the only SaaS-based application performance monitoring
>> > service
>> > that delivers powerful full stack analytics. Optimize and monitor your
>> > browser, app, & servers with just a few lines of code. Try New Relic
>> > and get this awesome Nerd Life shirt!
>> > http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> Dr Victor Lazzarini
>> Senior Lecturer
>> Dept. of Music
>> NUI Maynooth Ireland
>> tel.: +353 1 708 3545
>> Victor dot Lazzarini AT nuim dot ie
>>
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Try New Relic Now & We'll Send You this Cool Shirt
>> New Relic is the only SaaS-based application performance monitoring
>> service
>> that delivers powerful full stack analytics. Optimize and monitor your
>> browser, app, & servers with just a few lines of code. Try New Relic
>> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt!
> http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
>
>
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



--

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2013-05-28 22:47
FromAndres Cabrera
SubjectRe: [Cs-dev] Strange error
AttachmentsNone  None  
Hi,

Strange... I've cleaned and tried to rebuild but still get the same error. I did notice these warnings, which are probably the reason:

/home/andres/Documents/src/csound-csound6-git/Top/main.c:289:12: warning: ‘DummyMidiInOpen’ used but never defined [enabled by default]
/home/andres/Documents/src/csound-csound6-git/Top/main.c:291:12: warning: ‘DummyMidiRead’ used but never defined [enabled by default]

Any ideas?

Cheers,
Andrés



On Tue, May 28, 2013 at 2:11 PM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
yes, I updated my ubuntu 13.04 version and was able to build csound with no errors.

Victor

On 28 May 2013, at 16:51, Andres Cabrera wrote:

Hi,

This should be the dynamic library build. I didn't specify anything for cmake.

Cheers,
Andrés


On Tue, May 28, 2013 at 8:14 AM, Felipe Sateler <fsateler@gmail.com> wrote:
Are you building the static library?

Static libraries are usually built without -fPIC

On Tue, May 28, 2013 at 10:31 AM, Victor Lazzarini
<Victor.Lazzarini@nuim.ie> wrote:
> According to the error message, it needs to be in the command-line when
> compiling main.c;
> I'll try and update my ubuntu to see if I can catch this.
>
> On 28 May 2013, at 15:21, Andres Cabrera wrote:
>
> It is used when linking libcsound, but it seems it might not have been used
> when building something else...
>
> I'm on 13.04, any idea why this might be a problem?
>
> Cheers,
> Andrés
>
>
> On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini
> <Victor.Lazzarini@nuim.ie> wrote:
>>
>> It builds here on x86_64 ubuntu linux. The function is implemented in
>> csound.c and looks like the linking against a call in main.c is failing. Is
>> -fPIC being used?
>> On 28 May 2013, at 04:48, Andres Cabrera wrote:
>>
>> > Hi,
>> >
>> > I'm in the process of moving to a new 64 bit ubuntu, and I'm getting
>> > this error:
>> >
>> > [ 63%] Building C object
>> > CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
>> > Linking C shared library libcsound64.so
>> > /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation
>> > R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a
>> > shared object; recompile with -fPIC
>> > /usr/bin/ld: final link failed: Bad value
>> > collect2: error: ld returned 1 exit status
>> > make[2]: *** [libcsound64.so.6.0] Error 1
>> > make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
>> > make: *** [all] Error 2
>> >
>> > Any ideas?
>> >
>> > Cheers,
>> > Andrés
>> >
>> > ------------------------------------------------------------------------------
>> > Try New Relic Now & We'll Send You this Cool Shirt
>> > New Relic is the only SaaS-based application performance monitoring
>> > service
>> > that delivers powerful full stack analytics. Optimize and monitor your
>> > browser, app, & servers with just a few lines of code. Try New Relic
>> > and get this awesome Nerd Life shirt!
>> > http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> Dr Victor Lazzarini
>> Senior Lecturer
>> Dept. of Music
>> NUI Maynooth Ireland
>> tel.: +353 1 708 3545
>> Victor dot Lazzarini AT nuim dot ie
>>
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Try New Relic Now & We'll Send You this Cool Shirt
>> New Relic is the only SaaS-based application performance monitoring
>> service
>> that delivers powerful full stack analytics. Optimize and monitor your
>> browser, app, & servers with just a few lines of code. Try New Relic
>> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt!
> http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
>
>
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



--

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel



Date2013-05-28 23:04
FromVictor Lazzarini
SubjectRe: [Cs-dev] Strange error
AttachmentsNone  None  
I see, they are declared as static, that's wrong. Fixed in GIT.

On 28 May 2013, at 22:47, Andres Cabrera wrote:

Hi,

Strange... I've cleaned and tried to rebuild but still get the same error. I did notice these warnings, which are probably the reason:

/home/andres/Documents/src/csound-csound6-git/Top/main.c:289:12: warning: ‘DummyMidiInOpen’ used but never defined [enabled by default]
/home/andres/Documents/src/csound-csound6-git/Top/main.c:291:12: warning: ‘DummyMidiRead’ used but never defined [enabled by default]

Any ideas?

Cheers,
Andrés



On Tue, May 28, 2013 at 2:11 PM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
yes, I updated my ubuntu 13.04 version and was able to build csound with no errors.

Victor

On 28 May 2013, at 16:51, Andres Cabrera wrote:

Hi,

This should be the dynamic library build. I didn't specify anything for cmake.

Cheers,
Andrés


On Tue, May 28, 2013 at 8:14 AM, Felipe Sateler <fsateler@gmail.com> wrote:
Are you building the static library?

Static libraries are usually built without -fPIC

On Tue, May 28, 2013 at 10:31 AM, Victor Lazzarini
<Victor.Lazzarini@nuim.ie> wrote:
> According to the error message, it needs to be in the command-line when
> compiling main.c;
> I'll try and update my ubuntu to see if I can catch this.
>
> On 28 May 2013, at 15:21, Andres Cabrera wrote:
>
> It is used when linking libcsound, but it seems it might not have been used
> when building something else...
>
> I'm on 13.04, any idea why this might be a problem?
>
> Cheers,
> Andrés
>
>
> On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini
> <Victor.Lazzarini@nuim.ie> wrote:
>>
>> It builds here on x86_64 ubuntu linux. The function is implemented in
>> csound.c and looks like the linking against a call in main.c is failing. Is
>> -fPIC being used?
>> On 28 May 2013, at 04:48, Andres Cabrera wrote:
>>
>> > Hi,
>> >
>> > I'm in the process of moving to a new 64 bit ubuntu, and I'm getting
>> > this error:
>> >
>> > [ 63%] Building C object
>> > CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
>> > Linking C shared library libcsound64.so
>> > /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation
>> > R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a
>> > shared object; recompile with -fPIC
>> > /usr/bin/ld: final link failed: Bad value
>> > collect2: error: ld returned 1 exit status
>> > make[2]: *** [libcsound64.so.6.0] Error 1
>> > make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
>> > make: *** [all] Error 2
>> >
>> > Any ideas?
>> >
>> > Cheers,
>> > Andrés
>> >
>> > ------------------------------------------------------------------------------
>> > Try New Relic Now & We'll Send You this Cool Shirt
>> > New Relic is the only SaaS-based application performance monitoring
>> > service
>> > that delivers powerful full stack analytics. Optimize and monitor your
>> > browser, app, & servers with just a few lines of code. Try New Relic
>> > and get this awesome Nerd Life shirt!
>> > http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> Dr Victor Lazzarini
>> Senior Lecturer
>> Dept. of Music
>> NUI Maynooth Ireland
>> tel.: +353 1 708 3545
>> Victor dot Lazzarini AT nuim dot ie
>>
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Try New Relic Now & We'll Send You this Cool Shirt
>> New Relic is the only SaaS-based application performance monitoring
>> service
>> that delivers powerful full stack analytics. Optimize and monitor your
>> browser, app, & servers with just a few lines of code. Try New Relic
>> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt!
> http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
>
>
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



--

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2013-05-28 23:24
FromAndres Cabrera
SubjectRe: [Cs-dev] Strange error
AttachmentsNone  None  
Great, thanks, that did it.

Cheers,
Andrés


On Tue, May 28, 2013 at 3:04 PM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
I see, they are declared as static, that's wrong. Fixed in GIT.

On 28 May 2013, at 22:47, Andres Cabrera wrote:

Hi,

Strange... I've cleaned and tried to rebuild but still get the same error. I did notice these warnings, which are probably the reason:

/home/andres/Documents/src/csound-csound6-git/Top/main.c:289:12: warning: ‘DummyMidiInOpen’ used but never defined [enabled by default]
/home/andres/Documents/src/csound-csound6-git/Top/main.c:291:12: warning: ‘DummyMidiRead’ used but never defined [enabled by default]

Any ideas?

Cheers,
Andrés



On Tue, May 28, 2013 at 2:11 PM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
yes, I updated my ubuntu 13.04 version and was able to build csound with no errors.

Victor

On 28 May 2013, at 16:51, Andres Cabrera wrote:

Hi,

This should be the dynamic library build. I didn't specify anything for cmake.

Cheers,
Andrés


On Tue, May 28, 2013 at 8:14 AM, Felipe Sateler <fsateler@gmail.com> wrote:
Are you building the static library?

Static libraries are usually built without -fPIC

On Tue, May 28, 2013 at 10:31 AM, Victor Lazzarini
<Victor.Lazzarini@nuim.ie> wrote:
> According to the error message, it needs to be in the command-line when
> compiling main.c;
> I'll try and update my ubuntu to see if I can catch this.
>
> On 28 May 2013, at 15:21, Andres Cabrera wrote:
>
> It is used when linking libcsound, but it seems it might not have been used
> when building something else...
>
> I'm on 13.04, any idea why this might be a problem?
>
> Cheers,
> Andrés
>
>
> On Tue, May 28, 2013 at 12:00 AM, Victor Lazzarini
> <Victor.Lazzarini@nuim.ie> wrote:
>>
>> It builds here on x86_64 ubuntu linux. The function is implemented in
>> csound.c and looks like the linking against a call in main.c is failing. Is
>> -fPIC being used?
>> On 28 May 2013, at 04:48, Andres Cabrera wrote:
>>
>> > Hi,
>> >
>> > I'm in the process of moving to a new 64 bit ubuntu, and I'm getting
>> > this error:
>> >
>> > [ 63%] Building C object
>> > CMakeFiles/csound64.dir/Engine/cs_par_dispatch.c.o
>> > Linking C shared library libcsound64.so
>> > /usr/bin/ld: CMakeFiles/csound64.dir/Top/main.c.o: relocation
>> > R_X86_64_PC32 against symbol `DummyMidiInOpen' can not be used when making a
>> > shared object; recompile with -fPIC
>> > /usr/bin/ld: final link failed: Bad value
>> > collect2: error: ld returned 1 exit status
>> > make[2]: *** [libcsound64.so.6.0] Error 1
>> > make[1]: *** [CMakeFiles/csound64.dir/all] Error 2
>> > make: *** [all] Error 2
>> >
>> > Any ideas?
>> >
>> > Cheers,
>> > Andrés
>> >
>> > ------------------------------------------------------------------------------
>> > Try New Relic Now & We'll Send You this Cool Shirt
>> > New Relic is the only SaaS-based application performance monitoring
>> > service
>> > that delivers powerful full stack analytics. Optimize and monitor your
>> > browser, app, & servers with just a few lines of code. Try New Relic
>> > and get this awesome Nerd Life shirt!
>> > http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> Dr Victor Lazzarini
>> Senior Lecturer
>> Dept. of Music
>> NUI Maynooth Ireland
>> tel.: +353 1 708 3545
>> Victor dot Lazzarini AT nuim dot ie
>>
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Try New Relic Now & We'll Send You this Cool Shirt
>> New Relic is the only SaaS-based application performance monitoring
>> service
>> that delivers powerful full stack analytics. Optimize and monitor your
>> browser, app, & servers with just a few lines of code. Try New Relic
>> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt!
> http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
>
>
>
>
> ------------------------------------------------------------------------------
> Try New Relic Now & We'll Send You this Cool Shirt
> New Relic is the only SaaS-based application performance monitoring service
> that delivers powerful full stack analytics. Optimize and monitor your
> browser, app, & servers with just a few lines of code. Try New Relic
> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



--

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel