Csound Csound-dev Csound-tekno Search About

[Csnd] Building from sources strange version message

Date2017-12-18 14:27
FromAnton Kholomiov
Subject[Csnd] Building from sources strange version message
Hi!

I'm trying to build Csound from sources on Ubuntu.
I've build it ok.

But after installing it shows that it has version 6.08
But when I run it in the directory that I've build it it shows that it's 6.09.1
It's Strange! Isn't sudo make install just copies the files?

I've checked that it's the right executable by deleting it from the
/usr/local/bin and then installing again with
sudo make install

But I get the same message with old version.
The csound 6.08 was installed from the central repo, but I have
removed it prior to installation from sources.



Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2017-12-18 14:43
FromAnton Kholomiov
SubjectRe: [Csnd] Building from sources strange version message
Actually I get old Csound installed somwere else but don't how to find it
I've ended up by manual copy of compiled csound executable

2017-12-18 17:27 GMT+03:00 Anton Kholomiov <anton.kholomiov@gmail.com>:
Hi!

I'm trying to build Csound from sources on Ubuntu.
I've build it ok.

But after installing it shows that it has version 6.08
But when I run it in the directory that I've build it it shows that it's 6.09.1
It's Strange! Isn't sudo make install just copies the files?

I've checked that it's the right executable by deleting it from the
/usr/local/bin and then installing again with
sudo make install

But I get the same message with old version.
The csound 6.08 was installed from the central repo, but I have
removed it prior to installation from sources.




Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2017-12-18 14:53
Fromjpff
SubjectRe: [Csnd] Building from sources strange version message
to find all versions try
find / -name libcsound\* -exec ;s -l {} \;
or similar for other components

On Mon, 18 Dec 2017, Anton Kholomiov wrote:

> Actually I get old Csound installed somwere else but don't how to find it
> I've ended up by manual copy of compiled csound executable
>

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2017-12-18 14:56
FromAnton Kholomiov
SubjectRe: [Csnd] Building from sources strange version message
But that's kind of weird.
Because when I remove csound from /usr/local/bin
trying to execute csound I get no command found.
So there should be  no other csound hanging around.
But after `sudo make install' from my cs6make directory
The csound is visible again and I get old 6.08 message from it.



2017-12-18 17:53 GMT+03:00 jpff <jpff@codemist.co.uk>:
to find all versions try
find / -name libcsound\* -exec ;s -l {} \;
or similar for other components

On Mon, 18 Dec 2017, Anton Kholomiov wrote:

Actually I get old Csound installed somwere else but don't how to find it
I've ended up by manual copy of compiled csound executable


Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
       https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2017-12-18 15:16
FromSteven Yi
SubjectRe: [Csnd] Building from sources strange version message
I would guess you have the csound executable dynamically linked and
maybe when you do 'sudo make install', you have one executable but two
.so's on your system.  You might try 'ldd /usr/local/bin/csound' to
see if that points out a different libcsound64.so than what is
installed in /usr/local/lib.

On Mon, Dec 18, 2017 at 9:56 AM, Anton Kholomiov
 wrote:
> But that's kind of weird.
> Because when I remove csound from /usr/local/bin
> trying to execute csound I get no command found.
> So there should be  no other csound hanging around.
> But after `sudo make install' from my cs6make directory
> The csound is visible again and I get old 6.08 message from it.
>
>
>
> 2017-12-18 17:53 GMT+03:00 jpff :
>>
>> to find all versions try
>> find / -name libcsound\* -exec ;s -l {} \;
>> or similar for other components
>>
>> On Mon, 18 Dec 2017, Anton Kholomiov wrote:
>>
>>> Actually I get old Csound installed somwere else but don't how to find it
>>> I've ended up by manual copy of compiled csound executable
>>>
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>        https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>
>
> Csound mailing list Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to
> https://github.com/csound/csound/issues Discussions of bugs and features can
> be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2017-12-18 15:24
FromAnton Kholomiov
SubjectRe: [Csnd] Building from sources strange version message
Thanks Steven!

That hint helps, I have to run

sudo apt-get remove csound  libcsound64-6.0

to remove the old csound from my system. Not only just csound.


2017-12-18 18:16 GMT+03:00 Steven Yi <stevenyi@gmail.com>:
I would guess you have the csound executable dynamically linked and
maybe when you do 'sudo make install', you have one executable but two
.so's on your system.  You might try 'ldd /usr/local/bin/csound' to
see if that points out a different libcsound64.so than what is
installed in /usr/local/lib.

On Mon, Dec 18, 2017 at 9:56 AM, Anton Kholomiov
<anton.kholomiov@gmail.com> wrote:
> But that's kind of weird.
> Because when I remove csound from /usr/local/bin
> trying to execute csound I get no command found.
> So there should be  no other csound hanging around.
> But after `sudo make install' from my cs6make directory
> The csound is visible again and I get old 6.08 message from it.
>
>
>
> 2017-12-18 17:53 GMT+03:00 jpff <jpff@codemist.co.uk>:
>>
>> to find all versions try
>> find / -name libcsound\* -exec ;s -l {} \;
>> or similar for other components
>>
>> On Mon, 18 Dec 2017, Anton Kholomiov wrote:
>>
>>> Actually I get old Csound installed somwere else but don't how to find it
>>> I've ended up by manual copy of compiled csound executable
>>>
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>        https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>
>
> Csound mailing list Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to
> https://github.com/csound/csound/issues Discussions of bugs and features can
> be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here