Re: Is build a 64 bit version worth if I'm looking for better perfomance?

2018-05-01 Thread Jonathan M Davis via Digitalmars-d-learn
On Tuesday, May 01, 2018 22:48:08 Dr.No via Digitalmars-d-learn wrote: > Looking for make application run fast as possible, aside > optimization in the source code, is using 64 bit over 32 really > worth? That would heavily depend on the program. The big win for D code and 64-bit that doesn't

Re: Is build a 64 bit version worth if I'm looking for better perfomance?

2018-05-01 Thread Uknown via Digitalmars-d-learn
On Tuesday, 1 May 2018 at 22:48:08 UTC, Dr.No wrote: Looking for make application run fast as possible, aside optimization in the source code, is using 64 bit over 32 really worth? With the GC yes, since false pointers become less of an issue. Also you get to take full advantage of the

Is build a 64 bit version worth if I'm looking for better perfomance?

2018-05-01 Thread Dr.No via Digitalmars-d-learn
Looking for make application run fast as possible, aside optimization in the source code, is using 64 bit over 32 really worth?