www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - DMD AArch64 takes its first breath!

reply Walter Bright <newshound2 digitalmars.com> writes:
I got the #RaspberryPi #AArch64 box set up (I've had it for many years, never 
did nuttin with it). Setup went smoothly.

Compiled:

```
int main() { return 0; }
```

with -arm and -betterC switches.

Copied the .o file over to the Pi, linked it there, and ran it.

It ran!

That went far better than expected. It's got a long way to go, but damn.

Next up: getting hello world to work
Jul 12
parent IchorDev <zxinsworld gmail.com> writes:
On Saturday, 13 July 2024 at 05:22:09 UTC, Walter Bright wrote:
 I got the #RaspberryPi #AArch64 box set up (I've had it for 
 many years, never did nuttin with it). Setup went smoothly.

 Compiled:

 ```
 int main() { return 0; }
 ```

 with -arm and -betterC switches.

 Copied the .o file over to the Pi, linked it there, and ran it.

 It ran!

 That went far better than expected. It's got a long way to go, 
 but damn.

 Next up: getting hello world to work
I had no idea this was in store for us!
Jul 21