Re: Why is the fPIC switch missing?

2019-09-22 Thread Daniel Kozak via Digitalmars-d-learn
On Mon, Sep 23, 2019 at 3:35 AM Emmanuelle via Digitalmars-d-learn wrote: > > Forgot to say: dmd v2.088.0. Also, weirdly enough, `dmd > --version` outputs `DMD32 D Compiler v2.088.0-dirty`. Why is > "dirty" there? https://forum.dlang.org/post/qqxmnoshytmzflviw...@forum.dlang.org

Re: Why is the fPIC switch missing?

2019-09-22 Thread Daniel Kozak via Digitalmars-d-learn
On Mon, Sep 23, 2019 at 3:35 AM Emmanuelle via Digitalmars-d-learn wrote: > > Hello. My problem is exactly what it says on the title: my dmd > (windows 7, x64) doesn't seem to have -fPIC: > > --- > > dmd -fPIC > Error: unrecognized switch '-fPIC' > run `dmd` to print the compiler manual >

Re: D man pages

2019-09-22 Thread Jarek via Digitalmars-d-learn
On Saturday, 5 January 2019 at 21:59:27 UTC, kdevel wrote: For years I missed the man pages of the C++ standard library and now found out that some Linux distros provide them as extra package. The man pages are not generated by a default during a GCC bootstrap install but need an explicit make

Why is the fPIC switch missing?

2019-09-22 Thread Emmanuelle via Digitalmars-d-learn
Hello. My problem is exactly what it says on the title: my dmd (windows 7, x64) doesn't seem to have -fPIC: --- dmd -fPIC Error: unrecognized switch '-fPIC' run `dmd` to print the compiler manual run `dmd -man` to open browser on manual --- `dmd --help` also doesn't have anythin

Re: Why is the fPIC switch missing?

2019-09-22 Thread Emmanuelle via Digitalmars-d-learn
Forgot to say: dmd v2.088.0. Also, weirdly enough, `dmd --version` outputs `DMD32 D Compiler v2.088.0-dirty`. Why is "dirty" there?

Re: Simplifying process piping

2019-09-22 Thread Vladimir Panteleev via Digitalmars-d-learn
On Sunday, 22 September 2019 at 16:06:04 UTC, Jesse Phillips wrote: https://github.com/JesseKPhillips/std.process-example/ I'm wondering if there are any thoughts for simplification. I don't mean simplify to perform the same end result, but is the threading and data copies as simple as they co

Simplifying process piping

2019-09-22 Thread Jesse Phillips via Digitalmars-d-learn
As noted in this announcement, I started writing some basic tutorials for D. https://forum.dlang.org/post/efpyegvrezybdrmug...@forum.dlang.org At a post a week, I've got 10 weeks of backlog posts. One of these is a post on input output piping. https://github.com/JesseKPhillips/std.process-ex