0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-27 22:01:26 +03:00

updated win_make.bat

This commit is contained in:
OneOfEleven 2023-11-06 09:28:36 +00:00
parent f256d1fe6a
commit b4841f0ba9
4 changed files with 5 additions and 3 deletions

View File

@ -166,6 +166,7 @@ To compile directly in windows without the need of a linux virtual machine:
``` ```
1. Download and install "gcc-arm-none-eabi-10.3-2021.10-win32.exe" from https://developer.arm.com/downloads/-/gnu-rm 1. Download and install "gcc-arm-none-eabi-10.3-2021.10-win32.exe" from https://developer.arm.com/downloads/-/gnu-rm
2. Download and install "gnu_make-3.81.exe" from https://gnuwin32.sourceforge.net/packages/make.htm 2. Download and install "gnu_make-3.81.exe" from https://gnuwin32.sourceforge.net/packages/make.htm
3. If need be (probably not), also download Dependency.zip that includes the library files from https://gnuwin32.sourceforge.net/packages/make.htm
3. You may need to (I didn't) manualy add gcc path to your OS environment PATH. 3. You may need to (I didn't) manualy add gcc path to your OS environment PATH.
ie add C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin ie add C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin

Binary file not shown.

Binary file not shown.

View File

@ -8,6 +8,7 @@
:: ::
:: 1. Download and install "gcc-arm-none-eabi-10.3-2021.10-win32.exe" from https://developer.arm.com/downloads/-/gnu-rm :: 1. Download and install "gcc-arm-none-eabi-10.3-2021.10-win32.exe" from https://developer.arm.com/downloads/-/gnu-rm
:: 2. Download and install "gnu_make-3.81.exe" from https://gnuwin32.sourceforge.net/packages/make.htm :: 2. Download and install "gnu_make-3.81.exe" from https://gnuwin32.sourceforge.net/packages/make.htm
:: 3, If need be (probably not), also download Dependency.zip that includes the library files from https://gnuwin32.sourceforge.net/packages/make.htm
:: ::
:: 3. You may (or may not) need to manualy add a path to you OS environment PATH, ie .. :: 3. You may (or may not) need to manualy add a path to you OS environment PATH, ie ..
:: C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin :: C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin
@ -31,9 +32,9 @@ del /Q *.bin >nul 2>nul
:: ::
:: Temporarily add the compiler and make program directories to the system PATH .. :: Temporarily add the compiler and make program directories to the system PATH ..
:: ::
@set PATH="C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin";%PATH% @set PATH=C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin;%PATH%
@set PATH="C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\arm-none-eabi\bin";%PATH% @set PATH=C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\arm-none-eabi\bin;%PATH%
@set PATH="C:\Program Files (x86)\GnuWin32\bin\";%PATH% @set PATH=C:\Program Files (x86)\GnuWin32\bin;%PATH%
:: Do the compile :: Do the compile
:: ::