ARM targetting cross-toolchain with GDC

Johannes Pfau nospam at example.com
Sun Aug 25 11:41:13 PDT 2013


Am Sun, 25 Aug 2013 15:55:59 +0200
schrieb "ilya-stromberg" <ilya-stromberg-2009 at yandex.ru>:

> On Saturday, 24 August 2013 at 18:00:05 UTC, Johannes Pfau wrote:
> > Am Sat, 24 Aug 2013 19:18:42 +0200
> > schrieb "ilya-stromberg" <ilya-stromberg-2009 at yandex.ru>:
> >> Do you have any plans for Android support?
> >
> > Not until the 'usual' Linux/GlibC combination works well on ARM.
> 
> I understood. How are you close to finish the work?
> Do you have any working examples, for example "Hello ARM"?

import std.stdio;

version(ARM)
{
    void main()
    {
        writeln("Hello ARM");
    }
}

We're actually past the Hello-World stage. The test suite passes 100%
with optimization disabled. There is one codegen bug with optimizations
which really needs to be solved but those things are hard to track
down. Druntime unit tests pass, phobos has ~10 failing unit tests. 


More information about the Digitalmars-d mailing list