Programming in C on RISCOS
Malcolm Hussain-Gambles (1596) 811 posts |
I keep on running into similar issues. ARM Linker: (Error) Undefined symbol(s). I’ve looked in the pdf’s and these aren’t so useful to be honest, they are huge and don’t contain any information that I don’t already know. What method should I use to find the link library, or is banging my head against the wall the best method (the wall does fall, it just takes a long time and it hurts my head) ;-) |
Tim Rowledge (1742) 170 posts |
One very useful thing would be to get all the C related StrongHelp manuals. Not because they explain everything – they don’t – but because if you type a likely api name and hit F1 (in StrongEd, which of course you are using, why wouldn’t you?) then it will not just remind you of the api & arguments but tell you which include file it is from. |
Chris Gransden (337) 1207 posts |
open() is a POSIX function which the DDE doesn’t support. Hence the undefined symbol. |
David Gee (1833) 268 posts |
In general there is a problem with documentation for C programming in RISC OS—not a good way of attracting potential developers. The main issues I see are:
It also doesn’t help that none of the existing cross-platform GUI toolkits—Qt/Gtk/wxWidgets/FOX/FLTK etc etc, works on RISC OS. This makes the need to create tutorial information based on C particularly important. |
Malcolm Hussain-Gambles (1596) 811 posts |
Thanks very much! |