From 50791ec816bb25c93a0c65e1746e59ad0cd04647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Mon, 18 Oct 2021 15:41:15 +0200 Subject: [PATCH] Compiling for Windows: Remove yasm dep, causes WebM crash --- development/compiling/compiling_for_windows.rst | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/development/compiling/compiling_for_windows.rst b/development/compiling/compiling_for_windows.rst index 2b7f8bcab..afadf6995 100644 --- a/development/compiling/compiling_for_windows.rst +++ b/development/compiling/compiling_for_windows.rst @@ -19,20 +19,17 @@ For compiling under Windows, the following is required: - `Python 3.5+ `_. - `SCons 3.0 `_ build system. If using Visual Studio 2019, you need at least SCons 3.1.1. -- *Optional* - `yasm `_ (for WebM SIMD optimizations) .. note:: If you have `Scoop `_ installed, you can easily install MinGW and other dependencies using the following command:: - scoop install gcc python scons yasm make + scoop install gcc python scons make .. note:: If you have `MSYS2 `_ installed, you can easily install MinGW and other dependencies using the following command:: - pacman -S mingw-w64-x86_64-python3-pip \ - mingw-w64-x86_64-gcc mingw-w64-x86_64-yasm \ - mingw-w64-i686-python3-pip mingw-w64-i686-gcc \ - mingw-w64-i686-yasm make + pacman -S mingw-w64-x86_64-python3-pip mingw-w64-x86_64-gcc \ + mingw-w64-i686-python3-pip mingw-w64-i686-gcc make For each MSYS2 MinGW subsystem, you should then run `pip3 install scons` in its shell.