1234567891011121314151617181920212223242526 |
- toolchain=/usr/aarch64-linux-gnu
- target_host=aarch64-linux-gnu
- 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=7.3
- compiler.libcxx=libstdc++11
- build_type=Release
|