My advice on implementing stuff in C:
My advice on implementing stuff in C:
Posted Oct 18, 2010 8:41 UTC (Mon) by marcH (subscriber, #57642)In reply to: My advice on implementing stuff in C: by paulj
Parent article: Russell: On C Library Implementation
> Have you looked at Vala? Modern OOP language that builds on GLib and spits out C.
Compiling to a lower-level yet still "human-writable" language is an interesting approach that can be successful to some extend. However it always has this major drawback: debugging & profiling becomes incredibly more difficult. It also gives a really hard time to fancy IDEs. All these need tight integration and the additional layer of indirection breaks that. So handing maintenance of average/poor quality code over to other developers becomes nearly impossible.
