Csound Csound-dev Csound-tekno Search About

[Csnd] Compiling & debugging - Debian amd64 & CodeLite

Date2012-07-29 07:21
FromRobin Whittle
Subject[Csnd] Compiling & debugging - Debian amd64 & CodeLite
I have downloaded the latest stable source Csound5.17.11.tar.gz from:

  http://sourceforge.net/projects/csound/files/csound5/csound5.17.11/

and am contemplating the compile from source instructions at:

  http://csounds.com/manual/html/BuildingCsound.html

This is on Debian 6.0 amd64.  I have just started using the CodeLite IDE
http://www.codelite.org/ which works (apparently identically and well)
under both Windows and Linux.   I understand that CodeLite can work with
complex projects according to their Makefile, but I see that Csound
doesn't use a Makefile, but uses an SCons system instead.

What IDE, if any, are people using for Csound under Linux?

  - Robin






Date2012-07-29 10:31
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
> I have downloaded the latest stable source Csound5.17.11.tar.gz from:
>
>   http://sourceforge.net/projects/csound/files/csound5/csound5.17.11/
>
> and am contemplating the compile from source instructions at:
>
>   http://csounds.com/manual/html/BuildingCsound.html
>
> This is on Debian 6.0 amd64.  I have just started using the CodeLite IDE
> http://www.codelite.org/ which works (apparently identically and well)
> under both Windows and Linux.   I understand that CodeLite can work with
> complex projects according to their Makefile, but I see that Csound
> doesn't use a Makefile, but uses an SCons system instead.
>
> What IDE, if any, are people using for Csound under Linux?
>
>   - Robin


Hi Robin

I never use an IDE; command line and emacs works fine (for me)

There may be enough code to build via cmake/make but not sure.

Basically I have a script with al the Scons options and I run it.  Same on
Windows -- not sure about OSX as I no longer have such a machine

Anyway, hi long time no see, and if you can stomach command line happy to
give advice.


==John ff



Date2012-07-29 10:34
FromVictor
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
Hi Robin

I always use emacs and the command line.
Why do you to build from sources? Packages for Debian are available.

Regards

Victor

On 29 Jul 2012, at 07:21, Robin Whittle  wrote:

> I have downloaded the latest stable source Csound5.17.11.tar.gz from:
> 
>  http://sourceforge.net/projects/csound/files/csound5/csound5.17.11/
> 
> and am contemplating the compile from source instructions at:
> 
>  http://csounds.com/manual/html/BuildingCsound.html
> 
> This is on Debian 6.0 amd64.  I have just started using the CodeLite IDE
> http://www.codelite.org/ which works (apparently identically and well)
> under both Windows and Linux.   I understand that CodeLite can work with
> complex projects according to their Makefile, but I see that Csound
> doesn't use a Makefile, but uses an SCons system instead.
> 
> What IDE, if any, are people using for Csound under Linux?
> 
>  - Robin
> 
> 
> 
> 
> 
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 


Date2012-07-29 11:42
Fromjoachim heintz
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
just to note that there is - thanks to menno - a description for 
building on ubuntu at
http://sourceforge.net/apps/mediawiki/csound/index.php?title=Building_Csound_on_Ubuntu

i have just used it to build on ubuntu 12.04, so i think it should be 
the same for debian.

	joachim


Am 29.07.2012 08:21, schrieb Robin Whittle:
> I have downloaded the latest stable source Csound5.17.11.tar.gz from:
>
>    http://sourceforge.net/projects/csound/files/csound5/csound5.17.11/
>
> and am contemplating the compile from source instructions at:
>
>    http://csounds.com/manual/html/BuildingCsound.html
>
> This is on Debian 6.0 amd64.  I have just started using the CodeLite IDE
> http://www.codelite.org/ which works (apparently identically and well)
> under both Windows and Linux.   I understand that CodeLite can work with
> complex projects according to their Makefile, but I see that Csound
> doesn't use a Makefile, but uses an SCons system instead.
>
> What IDE, if any, are people using for Csound under Linux?
>
>    - Robin
>
>
>
>
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>

Date2012-07-29 12:03
FromRobin Whittle
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
Hi John, Victor and Joachim,

Thanks for your replies.  I much prefer an IDE which works reasonably
well to command-line based debugging.

There is mention of Scons in the CodeLite forum:

  http://forums.codelite.org/viewtopic.php?f=3&t=1013&p=4524

so perhaps I can get it to work with Csound.  I will report whatever I find.

I want to add and extend some of my own unit generators I wrote in 1996.
 My Csound code base from those days is effectively impossible to
compile with modern compilers and libraries.

Thanks Joachim for the link:


http://sourceforge.net/apps/mediawiki/csound/index.php?title=Building_Csound_on_Ubuntu

  - Robin


Date2012-07-29 15:18
FromSteven Yi
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
Hi Robin,

I use the CMake build myself.  It can generate Makefiles, as well as
IDE Project files for a number of IDE's (though, I don't think it
supports CodeLite).  To generate Makefiles, you can do:

mkdir cs5
cd cs5
cmake ../csound5

(where cs5 is a directory in the same directory that  csound5 is in)

CodeBlocks is an IDE that runs on Windows and Linux, and CMake lists
support for it.  For myself, I am using XCode and Eclipse these days
when working on Csound.

steven

On Sun, Jul 29, 2012 at 7:03 AM, Robin Whittle  wrote:
> Hi John, Victor and Joachim,
>
> Thanks for your replies.  I much prefer an IDE which works reasonably
> well to command-line based debugging.
>
> There is mention of Scons in the CodeLite forum:
>
>   http://forums.codelite.org/viewtopic.php?f=3&t=1013&p=4524
>
> so perhaps I can get it to work with Csound.  I will report whatever I find.
>
> I want to add and extend some of my own unit generators I wrote in 1996.
>  My Csound code base from those days is effectively impossible to
> compile with modern compilers and libraries.
>
> Thanks Joachim for the link:
>
>
> http://sourceforge.net/apps/mediawiki/csound/index.php?title=Building_Csound_on_Ubuntu
>
>   - Robin
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-07-29 15:28
FromDave Phillips
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
On 07/29/12 02:21, Robin Whittle wrote:
> ...
>
> What IDE, if any, are people using for Csound under Linux?
>
>

Hey Robin, good to see your name here again !

IANAD, but I compile Csound myself. Strictly command-line here, I just 
cut & paste from a file with my usual build options, hit the Enter key, 
and away we go.

Best,

dp


Date2012-07-29 17:34
FromVictor Lazzarini
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
Robin,

if your interest is to develop opcodes, then the easiest way is to use the plugin mechanism. For this all you need is the Csound headers that come with the csound-devel package,
or with the sources in sourceforge (in ./H). 

You will need to #include   and then write your opcodes, and add the LINKAGE macro at the end of the file. To build them on Linux, this:

$ gcc -shared -o     -I   [floats csound]

or

$gcc  -shared -o    -DUSE_DOUBLE  -I   [doubles csound]

then run Csound like this

$ csound --opcode-lib=  ....


or you can add the  file to OPCODEDIR (floats) or OPCODEDIR64 (doubles)

It's much less trouble than re-building Csound to add/test your opcodes. 

Regards

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





Date2012-08-01 21:39
FromAndres Cabrera
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
IANAD!  =)

Cheers,
Andrés

On Sun, Jul 29, 2012 at 7:28 AM, Dave Phillips  wrote:
> On 07/29/12 02:21, Robin Whittle wrote:
>>
>> ...
>>
>>
>> What IDE, if any, are people using for Csound under Linux?
>>
>>
>
> Hey Robin, good to see your name here again !
>
> IANAD, but I compile Csound myself. Strictly command-line here, I just cut &
> paste from a file with my usual build options, hit the Enter key, and away
> we go.
>
> Best,
>
> dp
>
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>


Date2012-08-15 03:08
FromForrest Cahoon
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
On Sun, Jul 29, 2012 at 9:18 AM, Steven Yi  wrote:
> Hi Robin,
>
> I use the CMake build myself.
>
> steven

A little late catching up with the list here, but there's a problem in
the CMake build for Csound5 you should know about -- CMake doesn't set
a version define for libsndfile so many of libsndfile's features
aren't compiled in.

If you're sure you have a recent libsndfile installed (like, within
the last couple of years) you can insert this line into CMakeLists.txt
to correct this:

list(APPEND libcsound_CFLAGS -DHAVE_LIBSNDFILE=1016)

anywhere after libcsound_CFLAGS is set.

I'm pretty sure I mentioned this on the dev list, but no one seemed
very interested.

Forrest

Date2012-08-15 11:13
FromTito Latini
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
A little late catching up with the list here, but there's a problem in
the CMake build for Csound5 you should know about -- CMake doesn't set
a version define for libsndfile so many of libsndfile's features
aren't compiled in.

If you're sure you have a recent libsndfile installed (like, within
the last couple of years) you can insert this line into CMakeLists.txt
to correct this:

list(APPEND libcsound_CFLAGS -DHAVE_LIBSNDFILE=1016)

anywhere after libcsound_CFLAGS is set.

I'm pretty sure I mentioned this on the dev list, but no one seemed
very interested.

Forrest

In the past I noticed the broken code with the directives

  if HAVE_LIBSNDFILE >= 1018
  if HAVE_LIBSNDFILE >= 1019

but there was other things to make. The highest useful version
in the csound code is 1.0.19. With 1.0.18 we have `wve' and `ogg'
output formats and with 1.0.19 we have `mpc2k' and `rf64'.

Today is ferragosto in Italy, bonfire, guitars, she loves you yeah
yeah yeah, and bla bla bla gne gne gne. Therfore I have the code
to use the follow output formats

  ogg/vorbis
  wve/alaw, 1 channel
  mpc2k (mpc2000)
  rf64 wave

with libsndfile (tested). I added `--ogg' option to simplify

  csound --format=vorbis --format=ogg ...

so we can

  csound --ogg ...

Question for devs: let me know if I can remove the numbers in
CSOUND_FILETYPES enum (csound.h), because it is only a sequence of
numbers from 1 to 62 (now) and it requires a bigger patch if you want
insert only one or two constants.

I can apply the changes this evening or tomorrow if the society
will kidnap me for a day.

tito



Date2012-08-18 02:55
FromFelipe Sateler
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
On Wed, Aug 15, 2012 at 6:13 AM, Tito Latini  wrote:
> The highest useful version
> in the csound code is 1.0.19. With 1.0.18 we have `wve' and `ogg'
> output formats and with 1.0.19 we have `mpc2k' and `rf64'.

Even debian has 1.0.19 in the stable distribution. I think it is
simpler to just remove the #ifdefs and bump the minimum required
dependencies.

-- 

Saludos,
Felipe Sateler

Date2012-08-18 08:38
FromTito Latini
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
AttachmentsNone  

Date2012-08-18 09:11
FromTito Latini
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
AttachmentsNone  

Date2012-08-18 17:25
FromTito Latini
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
It is impossible because these are enum constants and not macros.
Therefore there is a subtle bug in InOut/libsnd_u.c:337,417 from 2004.

Tomorrow I'll remove all the HAVE_LIBSNDFILE directives (1.0.19 is
minimum required) if there are not objections, otherwise I'll add
the missing #ifdef for SF_FORMAT_VORBIS.

tito


Date2012-08-21 15:03
FromFelipe Sateler
SubjectRe: [Csnd] Compiling & debugging - Debian amd64 & CodeLite
On Sat, Aug 18, 2012 at 12:25 PM, Tito Latini  wrote:
> It is impossible because these are enum constants and not macros.
> Therefore there is a subtle bug in InOut/libsnd_u.c:337,417 from 2004.
>
> Tomorrow I'll remove all the HAVE_LIBSNDFILE directives (1.0.19 is
> minimum required) if there are not objections, otherwise I'll add
> the missing #ifdef for SF_FORMAT_VORBIS.

The documentation needs to be updated, too. I don't have access during
the week to the repos, but I can update it over the weekend (if nobody
beats me to it ;).


-- 

Saludos,
Felipe Sateler