On Thursday 06 September 2007 22:03:42 Felipe Sateler wrote: > When building csound, if fltk-config --compile cseditor.cxx fails, the > build doesn't fail inmediately. Instead, it continues and the build appears > to complete successfully. The invocation is line 1869 from SConstruct. The > scons user guide doesn't hint on wether this is possible, although I guess > it should be. On a related note, fltk-config --compile uses the static fltk library. This can be fixed easily, on line 1875 of SConstruct replace the csEdit.Command call with csEditFltkConfig = 'fltk-config --cxxflags --ldflags' csEdit.ParseConfig(csEditFltkConfig) csEditor = csEdit.Program( 'cseditor', ['frontends/cseditor/cseditor.cxx']) -- Felipe Sateler