August 14
This is covered extensively in https://github.com/dlang/dmd/issues/21126

Thanks to everyone helping out with finding the cause!
August 14
On Thursday, 14 August 2025 at 17:28:29 UTC, Walter Bright wrote:
> What about sshfs?

Never seen the need, I just use sftp if necessary, but mainly git syncing.

What I tend to do is have a git repo on my workstation, and parallel git repo's on the dev servers. Then I simply push and fetch between the two over SSH, editing and committing wherever is most convenient.

So mainly on the workstation. When compiling and doing UTs on the server I'd often commit there after fixing something, and use git over ssh to fetch back to my workstation.  Driving all fetch/push actions from the local workstation side.

So not having a filesystem abstraction over the top of it has never been an issue.

Mind, I'm often doing this across trans-Atlantic links, and so explicitly working with git that way is more comfortable than the 100ms+ delay of direct FS interactions.
August 14
My machines are all connected via a LAN, so no lag problems. I use sshfs to do cross-compilation.
August 15
On Thursday, 14 August 2025 at 22:29:07 UTC, Walter Bright wrote:
> My machines are all connected via a LAN, so no lag problems. I use sshfs to do cross-compilation.

Since I assume one of those is a windows machine, I'd just be inclined to use CIFS.

As windows, macOS, and Linux will all have support out of the box - the latter may need samba installed, not sure.

If windows wasn't in the mix, and since it is a private LAN, I'd just use NFS - despite its flaws.
August 15
Thank you. I did these, and downloaded the nightly, which works!
August 15
I'm using the putty utilities on Windows.
August 15
I've got everything installed now, and was able to bootstrap the compiler. "hello world" compiles and runs.

And, finally, I got my text editor compiled natively. I can only suffer under nano so much!
August 16
Thanks everyone for the help!
August 16

On Thursday, 14 August 2025 at 07:52:59 UTC, Walter Bright wrote:

> >

On Thursday, 14 August 2025 at 05:12:19 UTC, Walter Bright

Thank you. The main download needs to be replace immediately.

Yes, please! I hope that with Walter now owning a Mac, we can finally have stuff work without segmentation faults, linker issuers, C stdlib errors (like int128.h being invalid when using importC)!

I just opened this ticket the other day, which shows what the Mac experience looks like for someone trying D (if they get past the fact most D things immediately segfault, including DMD and serve-d): https://github.com/Pure-D/serve-d/issues/403

August 16
The nightly does work. We'll see about the rest.