Re: wiki: D on AVR

2019-11-28 Thread Ernesto Castellotti via Digitalmars-d-announce
On Thursday, 28 November 2019 at 21:48:52 UTC, Ola Fosheim Grostad wrote: On Thursday, 28 November 2019 at 18:40:17 UTC, Ernesto Castellotti wrote: Yes LDC sets size_t for the platform, not violating the spec. int in D is 32-bit as you said, that if you compare it with the size of the types of

Re: wiki: D on AVR

2019-11-28 Thread Ola Fosheim Grostad via Digitalmars-d-announce
On Thursday, 28 November 2019 at 18:40:17 UTC, Ernesto Castellotti wrote: Yes LDC sets size_t for the platform, not violating the spec. int in D is 32-bit as you said, that if you compare it with the size of the types of AVR-GCC it would be long, This is not a problem, just use the type aliases

Re: wiki: D on AVR

2019-11-28 Thread Ernesto Castellotti via Digitalmars-d-announce
On Thursday, 28 November 2019 at 17:37:31 UTC, H. S. Teoh wrote: On Thu, Nov 28, 2019 at 05:18:59PM +, Ernesto Castellotti via Digitalmars-d-announce wrote: On Thursday, 28 November 2019 at 08:31:36 UTC, Dukc wrote: > On Wednesday, 27 November 2019 at 19:30:15 UTC, Ernesto > Castellotti

Re: wiki: D on AVR

2019-11-28 Thread H. S. Teoh via Digitalmars-d-announce
On Thu, Nov 28, 2019 at 05:18:59PM +, Ernesto Castellotti via Digitalmars-d-announce wrote: > On Thursday, 28 November 2019 at 08:31:36 UTC, Dukc wrote: > > On Wednesday, 27 November 2019 at 19:30:15 UTC, Ernesto Castellotti > > wrote: > > > > > > The support to targets that use 16 bits as a

Re: wiki: D on AVR

2019-11-28 Thread Ernesto Castellotti via Digitalmars-d-announce
On Thursday, 28 November 2019 at 08:31:36 UTC, Dukc wrote: On Wednesday, 27 November 2019 at 19:30:15 UTC, Ernesto Castellotti wrote: The support to targets that use 16 bits as a pointer size has already been added to LDC (https://github.com/ldc-developers/ldc/pull/2194), so minimal AVR

Re: dud: A dub replacement

2019-11-28 Thread Adam D. Ruppe via Digitalmars-d-announce
On Thursday, 28 November 2019 at 13:10:44 UTC, Atila Neves wrote: This is the done already by reggae. Unfortunately, since every D module is effectively a header, the number of files that need to be recompiled is usually large, despite the fact that for most changes the recompilation isn't

Re: D Forum Mobile Version - Beta

2019-11-28 Thread matheus via Digitalmars-d-announce
On Thursday, 28 November 2019 at 04:23:21 UTC, Nick Sabalausky (Abscissa) wrote: Granted, that's not to say there isn't room for tweaking. I'd maybe slightly decrease the vertical spacing on the list of subforums (ie, "general", "announce", "Community", "GDC", etc). Being able to ditch the

Re: dud: A dub replacement

2019-11-28 Thread Atila Neves via Digitalmars-d-announce
On Monday, 25 November 2019 at 15:27:10 UTC, Robert Schadek wrote: On Monday, 25 November 2019 at 13:14:09 UTC, Sebastiaan Koppe wrote: The biggest thing for me would be incremental compilation. As well as a dub build and test 'watch' mode to avoid scanning the dependencies every time. I

Re: dud: A dub replacement

2019-11-28 Thread Atila Neves via Digitalmars-d-announce
On Monday, 25 November 2019 at 13:14:09 UTC, Sebastiaan Koppe wrote: On Monday, 25 November 2019 at 12:15:42 UTC, Joseph Rushton Wakeling wrote: What's currently broken or impossible in DUB? What parts of that can be fixed without changing the config or CLI? And what improvements are most

Re: D Forum Mobile Version - Beta

2019-11-28 Thread Johannes Loher via Digitalmars-d-announce
On Thursday, 28 November 2019 at 04:23:21 UTC, Nick Sabalausky (Abscissa) wrote: 1. I find the text size to be exactly what I wish most sites would use. Most sites just assume everyone's on some kind of "Apple iSuperMini for Oompa-Loompas With The Fingers of Five-Year-Olds" and crank up the

Re: D Forum Mobile Version - Beta

2019-11-28 Thread Johannes Loher via Digitalmars-d-announce
To begin with: Sorry if my last post came across a bit harsh. That was not my intention. I thought you were looking for feedback and I wanted to be honest regarding that. If you are simply doing it for yourself and others, who also like it, that is of course perfectly fine. But personally I

Re: wiki: D on AVR

2019-11-28 Thread Dukc via Digitalmars-d-announce
On Wednesday, 27 November 2019 at 19:30:15 UTC, Ernesto Castellotti wrote: The support to targets that use 16 bits as a pointer size has already been added to LDC (https://github.com/ldc-developers/ldc/pull/2194), so minimal AVR support is present (AVR uses 16 bit pointers). Don't you run