compiling csoundapi examples directly
Date | 2016-05-22 17:00 |
From | Forrest Curo |
Subject | compiling csoundapi examples directly |
The cmake & make approach works on the 'c' examples... but if I want to modify and use those examples, compiling them directly with gcc under ubuntu linux, I first need to add /usr/local/include/csound to the include path -- and now |
Date | 2016-05-22 17:04 |
From | Victor Lazzarini |
Subject | Re: compiling csoundapi examples directly |
-I /path/to/csound.h Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy Maynooth University Ireland
|
Date | 2016-05-22 17:14 |
From | Victor Lazzarini |
Subject | Re: compiling csoundapi examples directly |
But use just the path not the actual csound.h Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy Maynooth University Ireland
|
Date | 2016-05-22 17:34 |
From | Rory Walsh |
Subject | Re: compiling csoundapi examples directly |
Something like: g++ youtfile.c -o test -I ../../csound/include/ -lcsound64 -lsndfile On 22 May 2016 at 17:14, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
|
Date | 2016-05-22 21:15 |
From | Forrest Curo |
Subject | Re: compiling csoundapi examples directly |
"gcc example6.c -o example6 -I /usr/local/include/csound -lcsound64 -lsndfile" Yes. It's happy, thanks!On Sun, May 22, 2016 at 9:34 AM, Rory Walsh <rorywalsh@ear.ie> wrote:
|