1 day ago
On 8/13/2025 11:18 PM, Luna wrote:
> On Thursday, 14 August 2025 at 05:12:19 UTC, Walter Bright wrote:
>> Thanks! I got git installed.
>>
>> It took me a while to get ssh and its utilities installed. The google instructions were wrong, of course. I am baffled why such a basic utility is not included by Apple.
>>
>> I also installed the Mac version of dmd. All of the executables in it promptly seg fault. And yes, I also installed Rosetta and verified its installation. I have no idea what's going on here.
> 
> Bug in druntime that was fixed recently. Shouldn’t be an issue on nightly.

Thank you. The main download needs to be replace immediately.
1 day ago
On Thursday, 14 August 2025 at 05:12:19 UTC, Walter Bright wrote:
> Thanks! I got git installed.
>
> It took me a while to get ssh and its utilities installed. The google instructions were wrong, of course. I am baffled why such a basic utility is not included by Apple.

Huh?  Every Mac I've used since 10.4 came out has had SSH present out of the box, and enabling SSH was simply a case of allowing remote access from the system settings.



1 day ago
On Thursday, 14 August 2025 at 11:07:16 UTC, Derek Fawcus wrote:
> On Thursday, 14 August 2025 at 05:12:19 UTC, Walter Bright wrote:
>> Thanks! I got git installed.
>>
>> It took me a while to get ssh and its utilities installed. The google instructions were wrong, of course. I am baffled why such a basic utility is not included by Apple.
>
> Huh?  Every Mac I've used since 10.4 came out has had SSH present out of the box, and enabling SSH was simply a case of allowing remote access from the system settings.

As to git, it comes with Xcode - or possibly the associated command line tools.
Certainly I'm using the Apple compiled version on my Macs.
1 day ago
On Thursday, 14 August 2025 at 07:52:59 UTC, Walter Bright wrote:
> On 8/13/2025 11:18 PM, Luna wrote:
>> On Thursday, 14 August 2025 at 05:12:19 UTC, Walter Bright wrote:
>>> Thanks! I got git installed.
>>>
>>> It took me a while to get ssh and its utilities installed. The google instructions were wrong, of course. I am baffled why such a basic utility is not included by Apple.
>>>
>>> I also installed the Mac version of dmd. All of the executables in it promptly seg fault. And yes, I also installed Rosetta and verified its installation. I have no idea what's going on here.
>> 
>> Bug in druntime that was fixed recently. Shouldn’t be an issue on nightly.
>
> Thank you. The main download needs to be replace immediately.

2.111.0 (Apr 01, 2025)
2.110.0 (Mar 07, 2025)

2.109.1 (Jul 01, 2024)
2.109.0 (Jun 01, 2024)
2.108.1 (May 01, 2024)
2.108.0 (Apr 01, 2024)
2.107.1 (Mar 01, 2024)
2.107.0 (Feb 01, 2024)
2.106.1 (Jan 01, 2024)

2.106.0 (Dec 01, 2023)
2.105.3 (Nov 01, 2023)
2.105.2 (Sep 15, 2023)
2.105.1 (Sep 01, 2023)
2.105.0 (Aug 01, 2023)
2.104.2 (Jul 15, 2023)
2.104.1 (Jul 01, 2023)
2.104.0 (Jun 01, 2023)
2.103.1 (May 01, 2023)
2.103.0 (Apr 01, 2023)
2.102.2 (Mar 01, 2023)
2.102.1 (Feb 15, 2023)
2.102.0 (Feb 01, 2023)
2.101.2 (Jan 01, 2023)


We have been complaining for over a very long while..
1 day ago

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

>

On 8/13/2025 11:18 PM, Luna wrote:

>

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

>

Thanks! I got git installed.

It took me a while to get ssh and its utilities installed. The google instructions were wrong, of course. I am baffled why such a basic utility is not included by Apple.

I also installed the Mac version of dmd. All of the executables in it promptly seg fault. And yes, I also installed Rosetta and verified its installation. I have no idea what's going on here.

Bug in druntime that was fixed recently. Shouldn’t be an issue on nightly.

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

I highly recommend installing the Xcode command line tools instead of relying on third party packages for stuff like git and co. Apple doesn’t ship dev tools by default and you have to explicitly install them.

xcode-select --install

Should install the compiler toolchains and all the Apple dev tools

Additionally I recommend running
sudo spctl --master-disable which allows you to run unsigned software; after running the command you can enable unsigned software in the system settings

1 day ago

On Thursday, 14 August 2025 at 16:35:20 UTC, Luna wrote:

>

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

>

On 8/13/2025 11:18 PM, Luna wrote:

>

[...]

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

I highly recommend installing the Xcode command line tools instead of relying on third party packages for stuff like git and co. Apple doesn’t ship dev tools by default and you have to explicitly install them.

xcode-select --install

Should install the compiler toolchains and all the Apple dev tools

Additionally I recommend running
sudo spctl --master-disable which allows you to run unsigned software; after running the command you can enable unsigned software in the system settings

Correction, it’s sudo spctl --global-disable

1 day ago
What about sshfs?
1 day ago
On 8/14/2025 9:35 AM, Luna wrote:
> `xcode-select --install`

Thank you. I will give that a try.

1 day ago
On Thursday, 14 August 2025 at 17:28:29 UTC, Walter Bright wrote:
> What about sshfs?

You can possibly compile it against MacFuse, but FUSE is a linux-only technology otherwise.
macOS does support SMB shares and can easily create shares for folders if you need it, however.
https://macfuse.github.io/
1 day ago
On Thursday, 14 August 2025 at 17:58:16 UTC, Luna wrote:
> On Thursday, 14 August 2025 at 17:28:29 UTC, Walter Bright wrote:
>> What about sshfs?
>
> You can possibly compile it against MacFuse, but FUSE is a linux-only technology otherwise.
> macOS does support SMB shares and can easily create shares for folders if you need it, however.
> https://macfuse.github.io/

Actually, the macFUSE project already provides an sshfs port as well
https://github.com/libfuse/sshfs/releases/download/sshfs-3.7.3/sshfs-3.7.3-ccb6821.pkg

So yeah, you should be able to install macFUSE from their website, then the sshfs package and have support for it.