AV1 Windows Build(Using VS2015)

Step 1:在http://www.msys2.org/下载msys2,安装完成后打开msys2

Step 2:在终端中输入

  • pacman -S cmake gcc mingw-w64-x86_64-winpthreads-git mingw-w64-x86_64-libwinpthread-git binutils coreutils yasm git base-devel p7zip
  • 其中cmake需要替换为mingw-w64-x86_64-cmake

Step 3:在终端中输入

  • git clone https://aomedia.googlesource.com/aom 下载libaom

Step 4:在终端中输入

  • mkdir build && cd build 创建并进入文件夹
  • cmake.exe ../aom -G "Visual Studio 14 2015 Win64" -DAOM_TARGET_CPU=generic引号中应改为自己所用的VS对应版本

猜你喜欢

转载自blog.csdn.net/qq_30945147/article/details/86493083