Re: Necessity of D Library (and/or Core Library)

2015-05-23 Thread Adam D. Ruppe via Digitalmars-d-learn
On Saturday, 23 May 2015 at 12:47:12 UTC, Mike wrote: You can disable linking phobos and the D Runtime with the -nophoboslib compiler flag. I'm not sure if DMD or LDC offer a similar compiler option. -defaultlib= You can use that to change to linking to a .so for example but leaving it bla

Re: Necessity of D Library (and/or Core Library)

2015-05-23 Thread Mike via Digitalmars-d-learn
On Saturday, 23 May 2015 at 06:35:50 UTC, Anthony Monterrosa wrote: Does D require the standard library to function? Or to be more direct, does D as a language need its library, or core library, to function correctly? There are two main libraries in D: The D Runtime, and the standard lib

Re: Necessity of D Library (and/or Core Library)

2015-05-23 Thread lobo via Digitalmars-d-learn
On Saturday, 23 May 2015 at 06:35:50 UTC, Anthony Monterrosa wrote: Does D require the standard library to function? Or to be more direct, does D as a language need its library, or core library, to function correctly? I have become very interested in how programming languages do their

Re: Necessity of D Library (and/or Core Library)

2015-05-23 Thread Kagamin via Digitalmars-d-learn
On Saturday, 23 May 2015 at 06:35:50 UTC, Anthony Monterrosa wrote: Does D require the standard library to function? Or to be more direct, does D as a language need its library, or core library, to function correctly? Phobos is not required completely. D runtime can be a couple of lines n

Re: Necessity of D Library (and/or Core Library)

2015-05-23 Thread Rikki Cattermole via Digitalmars-d-learn
On 23/05/2015 6:35 p.m., Anthony Monterrosa wrote: Does D require the standard library to function? Or to be more direct, does D as a language need its library, or core library, to function correctly? I have become very interested in how programming languages do their magic; how they i

Necessity of D Library (and/or Core Library)

2015-05-22 Thread Anthony Monterrosa via Digitalmars-d-learn
Does D require the standard library to function? Or to be more direct, does D as a language need its library, or core library, to function correctly? I have become very interested in how programming languages do their magic; how they interact with the computer itself, and their inner