diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..f7bd13d5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +*.sch linguist-language=KiCad-Schematic linguist-detectable +*.kicad_sch linguist-language=KiCad-Schematic linguist-detectable +*.kicad_pcb linguist-language=KiCad-Layout linguist-detectable +*.kicad_mod linguist-language=KiCad-Layout linguist-detectable diff --git a/firmware/BUILD.md b/firmware/BUILD.md index 87de57aa..08a75abe 100644 --- a/firmware/BUILD.md +++ b/firmware/BUILD.md @@ -295,6 +295,15 @@ pacman -S mingw-w64-x86_64-toolchain git make libtool pkg-config autoconf automa Now it will be possible to execute and get the return of `cmake --version`. +8. Run the commands: + +```shell +echo "alias make=mingw32-make.exe" >> ~/.profile +source ~/.profile +``` + +This will configure the command `make` to call, the utility provided in the MinGW package. + ### Install Python Pico's SDK needs Python to script and automate some of the build functions. diff --git a/software/BUILD.md b/software/BUILD.md index 933bd80d..02671c6e 100644 --- a/software/BUILD.md +++ b/software/BUILD.md @@ -224,6 +224,15 @@ In this tutorial the [Git-2.31.1-64-bit.exe](https://github.com/git-for-windows/ 3. When you get to the screen asking you to "choose a default editor", feel free to choose whatever you want. A good option is [Notepad++](https://notepad-plus-plus.org/), and if you don't have it installed, you can select Notepad (Windows default), if you don't want to use an editor in console mode. +4. After installation, open the Git Bash and run the commands: + +```shell +echo "alias make=mingw32-make.exe" >> ~/.profile +source ~/.profile +``` + +This will configure the command `make` to call, via Git Bash, the utility provided in the Qt/MinGW package. + ### Install CMake CMake is a build utility, which helps to automate the process of building programs.