kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #23624
[PATCH] Add missing depends to the msys2 instructions
I noticed that there is a depends missing in the msys2 the hard way
instructions. The attached patch adds glm and the mingw toolchain.
Add missing depends to the msys2 instructions
diff --git a/Documentation/development/compiling.md b/Documentation/development/compiling.md
index 754f6ff..f553be8 100644
--- a/Documentation/development/compiling.md
+++ b/Documentation/development/compiling.md
@@ -256,7 +256,9 @@ the following commands:
mingw-w64-x86_64-glew \
mingw-w64-x86_64-curl \
mingw-w64-x86_64-wxPython \
- mingw-w64-x86_64-wxWidgets
+ mingw-w64-x86_64-wxWidgets \
+ mingw-w64-x86_64-toolchain \
+ mingw-w64-x86_64-glm
cd kicad-source
mkdir -p build/release
mkdir build/debug # Optional for debug build.
Follow ups