Building on Windows
Install Git
Git is an essential tool for version control in development. If you haven’t installed it yet, follow these steps:
-
Check if Git is installed by running
git --version
in your terminal.
-
If Git isn’t installed, follow the official installation guide to set it up for your system.
Install Make
Make
is crucial for building projects, especially when working with embedded systems. Matrix OS uses Make on top of the chip vendor-provided build system to achieve cross-platform compatibility.
-
Install Chocolatey, which will be used to get the latest version of Make.
-
Restart your terminal to ensure Chocolatey is ready to use.
-
Install Make:
choco install make
-
Restart your terminal to make sure
Make
is ready to use. -
Confirm the installation by typing:
make --version