<div class="gmail_quote">On 5 February 2012 01:17, Martin Nowak <span dir="ltr"><<a href="mailto:dawg@dawgfoto.de">dawg@dawgfoto.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">On Fri, 03 Feb 2012 23:42:39 +0100, Manu <<a href="mailto:turkeyman@gmail.com" target="_blank">turkeyman@gmail.com</a>> wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 3 February 2012 23:15, Martin Nowak <<a href="mailto:dawg@dawgfoto.de" target="_blank">dawg@dawgfoto.de</a>> wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Fri, 03 Feb 2012 17:13:04 +0100, Iain Buclaw <<a href="mailto:ibuclaw@ubuntu.com" target="_blank">ibuclaw@ubuntu.com</a>><br>
wrote:<br>
<br>
 On 3 February 2012 08:47, Andrea Fontana <<a href="mailto:advmail@katamail.com" target="_blank">advmail@katamail.com</a>> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Is it possible to compile for avr (atmel) platform using gdc? It would be<br>
interesting for arduino development...<br>
<br>
</blockquote>
It's unlikely that D will run on systems without a MMU.<br>
</blockquote></blockquote>
<br>
<br>
Why?<br>
It just compiles code. Why should it require dependence on anything?<br>
</blockquote>
<br></div></div>
Arrays, AA, string switch, array ops, boundary checks, closures, exception handling, class factory, module constructors, unittests, RTTI.<br>
Just to name some deeply integrated features that require runtime support and or heap allocation. Some of them even rely on GC in their current implementation.<br>
<br>
Obviously you can compile and link a simple "double add(double a, double b) { return a + b; }" without using the runtime.<br>
<br>
What's that thing about not using the C runtime? Don't you use malloc, atexit, str*?<br>
</blockquote></div><br><div>God no. You just case the appropriate address to some sort of pointer and manage it however you like.</div><div>str*? you mean char*.. Of course you use that, that's a buffer :P</div>