Csound Csound-dev Csound-tekno Search About

[Cs-dev] build failure

Date2015-01-04 22:15
Fromjpff
Subject[Cs-dev] build failure
/home/jpff/Sourceforge/csound/New/csound6/Engine/csound_prs.lex: At top level:
cc1: warning: unrecognized command line option "-Wno-warn-absolute-paths" [enabled by default]
make[2]: *** No rule to make target 'emscripten/deps/libsndfile-1.0.25/src/.libs/libsndfile.a', needed by 'libcsound.so.6.0'.  Stop.
make[2]: Leaving directory '/home/jpff/Sourceforge/csound/New/csound6'
CMakeFiles/Makefile2:125: recipe for target 'CMakeFiles/csound.dir/all' failed
make[1]: *** [CMakeFiles/csound.dir/all] Error 2
make[1]: Leaving directory '/home/jpff/Sourceforge/csound/New/csound6'
Makefile:150: recipe for target 'all' failed
make: *** [all] Error 2

==John ffitch

------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-01-05 19:03
Fromjpff
SubjectRe: [Cs-dev] build failure
I looks as is EMSCRIPTEN is set somehow in the cmake world; but why?  I 
cannot find any place where this happens.  Been grepping for -i emscript
Would like to rebuild csound


On Sun, 4 Jan 2015, jpff wrote:

>
> /home/jpff/Sourceforge/csound/New/csound6/Engine/csound_prs.lex: At top level:
> cc1: warning: unrecognized command line option "-Wno-warn-absolute-paths" [enabled by default]
> make[2]: *** No rule to make target 'emscripten/deps/libsndfile-1.0.25/src/.libs/libsndfile.a', needed by 'libcsound.so.6.0'.  Stop.
> make[2]: Leaving directory '/home/jpff/Sourceforge/csound/New/csound6'
> CMakeFiles/Makefile2:125: recipe for target 'CMakeFiles/csound.dir/all' failed
> make[1]: *** [CMakeFiles/csound.dir/all] Error 2
> make[1]: Leaving directory '/home/jpff/Sourceforge/csound/New/csound6'
> Makefile:150: recipe for target 'all' failed
> make: *** [all] Error 2
>
> ==John ffitch
>

------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-01-05 20:32
FromSteven Yi
SubjectRe: [Cs-dev] build failure
Hi John,

I just built from scratch here in a clean build directory and did not
have problems.  I wonder if the problem is not EMSCRIPTEN per-se, but
rather what was set for the libsndfile value in CMakeCache.txt:

//Path to a library.
LIBSNDFILE_LIBRARY:FILEPATH=/usr/local/lib/libsndfile.dylib

Maybe try deleting that value and rerunning CMake, or you can hand
edit the value.  If that works to rebuild, then there may be some
oddity that is causing
emscripten/deps/libsndfile-1.0.25/src/.libs/libsndfile.a as the
version of libsndfile for the system when it shouldn't be.  We can
diagnose further depending on how the above works/fails.

steven

On Mon, Jan 5, 2015 at 2:03 PM, jpff  wrote:
> I looks as is EMSCRIPTEN is set somehow in the cmake world; but why?  I
> cannot find any place where this happens.  Been grepping for -i emscript
> Would like to rebuild csound
>
>
> On Sun, 4 Jan 2015, jpff wrote:
>
>>
>> /home/jpff/Sourceforge/csound/New/csound6/Engine/csound_prs.lex: At top level:
>> cc1: warning: unrecognized command line option "-Wno-warn-absolute-paths" [enabled by default]
>> make[2]: *** No rule to make target 'emscripten/deps/libsndfile-1.0.25/src/.libs/libsndfile.a', needed by 'libcsound.so.6.0'.  Stop.
>> make[2]: Leaving directory '/home/jpff/Sourceforge/csound/New/csound6'
>> CMakeFiles/Makefile2:125: recipe for target 'CMakeFiles/csound.dir/all' failed
>> make[1]: *** [CMakeFiles/csound.dir/all] Error 2
>> make[1]: Leaving directory '/home/jpff/Sourceforge/csound/New/csound6'
>> Makefile:150: recipe for target 'all' failed
>> make: *** [all] Error 2
>>
>> ==John ffitch
>>
>
> ------------------------------------------------------------------------------
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-01-05 21:03
Fromjpff
SubjectRe: [Cs-dev] build failure
Editing that line to point at libsndfile failed.  Deleted  the cache and 
did make; now complaining about

/home/jpff/Sourceforge/csound/New/csound6/Opcodes/stk/stkOpcodes.cpp:52:22: 
fatal error: BandedWG.h: No such file or directory
  #include 
                       ^
compilation terminated.
Opcodes/stk/CMakeFiles/stk-ops.dir/build.make:57: recipe for target 
'Opcodes/stk/CMakeFiles/stk-ops.dir/stkOpcodes.cpp.o' failed

What is irritating is that did not touch any ov=f the cmake files but now 
I am in a mess

Not sure wat this one is at all

Oh well -- time to cook

==John


------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-01-06 12:57
Fromjpff
SubjectRe: [Cs-dev] build failure
It had failed to identify the stk headers correctly.  More hand editing of 
the cache and it almost works.  All that remains is te persistant deletion 
if libstk.so when rebuilding.  I assume someone is doing a "rm lib*" or 
similar.


On Mon, 5 Jan 2015, jpff wrote:

> Editing that line to point at libsndfile failed.  Deleted  the cache and
> did make; now complaining about
>
> /home/jpff/Sourceforge/csound/New/csound6/Opcodes/stk/stkOpcodes.cpp:52:22:
> fatal error: BandedWG.h: No such file or directory
>  #include 
>                       ^
> compilation terminated.
> Opcodes/stk/CMakeFiles/stk-ops.dir/build.make:57: recipe for target
> 'Opcodes/stk/CMakeFiles/stk-ops.dir/stkOpcodes.cpp.o' failed
>
> What is irritating is that did not touch any ov=f the cmake files but now
> I am in a mess
>
> Not sure wat this one is at all
>
> Oh well -- time to cook
>
> ==John
>

------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net