Ok sorry I've just realised the const strings split(...) function is obviously something else with the split bit.
For the problem line void write_lines (const rld::strings& ss); If I remove 'const' I get ../rtl-host/rld-process.h:175:30: error: ‘rld::strings’ has not been declared void write_lines (rld::strings& ss); If I change to 'const' to 'void' I get ../rtl-host/rld-process.h:175:42: error: expected unqualified-id before ‘&’ token void write_lines (void rld::strings& ss); ^ ../rtl-host/rld-process.h:175:42: error: expected ‘)’ before ‘&’ token ../rtl-host/rld-process.h:175:42: error: expected ‘;’ at end of member declaration ../rtl-host/rld-process.h:175:44: error: ‘ss’ does not name a type void write_lines (void rld::strings& ss); If I remove the line completely just to see will it run without it [146/147] Linking build/tester/covoar/covoar /usr/bin/ld: cannot find -lrld /usr/bin/ld: cannot find -liberty /usr/bin/ld: cannot find -lelf collect2: error: ld returned 1 exit status I can't really think of anything else to try, any hints at all would be great. Thanks, Cillian.
_______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel