mirror of
https://github.com/yuzu-emu/build-environments
synced 2024-11-22 21:03:37 +00:00
34efbab012
Also use ownstuff ffmpeg, instead of the dead link from mingw-setup.sh mingw-setup.sh was thus removed as it only did one thing that could be reduced to a single command in the Dockerfile.
26 lines
539 B
Text
26 lines
539 B
Text
toolchain=/usr/x86_64-w64-mingw32
|
|
target_host=x86_64-w64-mingw32
|
|
cc_compiler=gcc
|
|
cxx_compiler=g++
|
|
|
|
[env]
|
|
CONAN_CMAKE_FIND_ROOT_PATH=$toolchain
|
|
CHOST=$target_host
|
|
AR=$target_host-ar
|
|
AS=$target_host-as
|
|
RANLIB=$target_host-ranlib
|
|
CC=$target_host-$cc_compiler
|
|
CXX=$target_host-$cxx_compiler
|
|
STRIP=$target_host-strip
|
|
RC=$target_host-windres
|
|
|
|
[settings]
|
|
# We are cross-building to Windows
|
|
os=Windows
|
|
arch=x86_64
|
|
compiler=gcc
|
|
|
|
# Adjust to the gcc version of your MinGW package
|
|
compiler.version=10.2
|
|
compiler.libcxx=libstdc++11
|
|
build_type=Release
|