Ada and Spark on MacOS Apple Silicon with VSCode

Getting a version of Alire built for Apple silicon.

https://github.com/simonjwright/alire-index.mac/releases

Updating the alire index.

https://github.com/simonjwright/alire-index.mac

VSCode

Extensions

CodeLLDB

https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb

Ada & Spark

https://marketplace.visualstudio.com/items?itemName=AdaCore.ada

Configuration

launch.json

{
   // Use IntelliSense to learn about possible attributes.
   // Hover to view descriptions of existing attributes.
   // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
   "version": "0.2.0",
   "configurations": [
	  {
		 "type": "lldb",
		 "request": "launch",
		 "name": "Debug",
		 "program": "${workspaceFolder}/bin/hello",
		 "args": [],
		 "cwd": "${workspaceFolder}"
	  }
   ]
}