Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Andrew Wiley
On Mon, Feb 6, 2012 at 1:40 AM, Johannes Pfau wrote: > Am Mon, 6 Feb 2012 03:07:31 +0200 > schrieb Manu : > >> On 6 February 2012 02:25, Manu wrote: >> >> > On 6 February 2012 00:04, Johannes Pfau wrote: >> > >> >> Am Sun, 5 Feb 2012 18:04:12 +0100 >> >> schrieb Johannes Pfau : >> >> >> >> > I w

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Johannes Pfau
Am Mon, 6 Feb 2012 03:07:31 +0200 schrieb Manu : > On 6 February 2012 02:25, Manu wrote: > > > On 6 February 2012 00:04, Johannes Pfau wrote: > > > >> Am Sun, 5 Feb 2012 18:04:12 +0100 > >> schrieb Johannes Pfau : > >> > >> > I will probably need some more time to get this working... > >> > > >

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Manu
On 6 February 2012 02:25, Manu wrote: > On 6 February 2012 00:04, Johannes Pfau wrote: > >> Am Sun, 5 Feb 2012 18:04:12 +0100 >> schrieb Johannes Pfau : >> >> > I will probably need some more time to get this working... >> > >> >> I have some good news: >> http://www.mediafire.com/?107we120sh3xx

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Manu
On 6 February 2012 00:04, Johannes Pfau wrote: > Am Sun, 5 Feb 2012 18:04:12 +0100 > schrieb Johannes Pfau : > > > I will probably need some more time to get this working... > > > > I have some good news: > http://www.mediafire.com/?107we120sh3xx > > I fixed that problem and then the whole build

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread maarten van damme
wow, great news for my phone :) I've read another blogpost about someone trying to achieve the same, had something to do with "between ideals", I'll google it up if you need it. he had a github repo with some "ugly hacks" to make druntime work for android, maybe this can be looked into? 2012/2/5 A

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Alex Rønne Petersen
On 02/05/2012 11:04 PM, Johannes Pfau wrote: Am Sun, 5 Feb 2012 18:04:12 +0100 schrieb Johannes Pfau: I will probably need some more time to get this working... I have some good news: http://www.mediafire.com/?107we120sh3xx I fixed that problem and then the whole build worked fine. I'll pos

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Johannes Pfau
Am Sun, 5 Feb 2012 18:04:12 +0100 schrieb Johannes Pfau : > I will probably need some more time to get this working... > I have some good news: http://www.mediafire.com/?107we120sh3xx I fixed that problem and then the whole build worked fine. I'll post build instructions soon, but the binaries

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Johannes Pfau
Am Sun, 5 Feb 2012 02:31:01 +0200 schrieb Manu : > On 5 February 2012 01:17, Johannes Pfau wrote: > > > Am Sat, 4 Feb 2012 22:17:54 + > > schrieb Iain Buclaw : > > > > > On 4 February 2012 21:59, Manu wrote: > > > > On 4 February 2012 21:31, Johannes Pfau > > > > wrote: > > > >> > > > >> H

Re: _Dmodule_ref question

2012-02-05 Thread Iain Buclaw
On 5 February 2012 10:28, Johannes Pfau wrote: > > Is there a reason why _Dmodule_ref can't be defined in a d source file? > - > module test; > > extern(C) > { >    void* _Dmodule_ref = null; >    int printf(in char* format, ...); > >    void main() >    { >        printf("Hell

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Johannes Pfau
Am Sun, 05 Feb 2012 12:21:43 +0100 schrieb Sönke Ludwig : > Great thing! I tried some time ago to build gdc like this, but I > always faild miserably due to obscure make problems. Maybe my library > versions were slightly off... I'll try this out later today. Library versions are one problem but

Re: [Tutorial][Binaries] gdc for android

2012-02-05 Thread Sönke Ludwig
Great thing! I tried some time ago to build gdc like this, but I always faild miserably due to obscure make problems. Maybe my library versions were slightly off... I'll try this out later today.

_Dmodule_ref question

2012-02-05 Thread Johannes Pfau
Is there a reason why _Dmodule_ref can't be defined in a d source file? - module test; extern(C) { void* _Dmodule_ref = null; int printf(in char* format, ...); void main() { printf("Hello, %s!".ptr, "no runtime".ptr); } } -- do