linux2aarm64.conanconf 535 B

1234567891011121314151617181920212223242526
  1. toolchain=/usr/aarch64-linux-gnu
  2. target_host=aarch64-linux-gnu
  3. cc_compiler=gcc
  4. cxx_compiler=g++
  5. [env]
  6. CONAN_CMAKE_FIND_ROOT_PATH=$toolchain
  7. CHOST=$target_host
  8. AR=$target_host-ar
  9. AS=$target_host-as
  10. RANLIB=$target_host-ranlib
  11. CC=$target_host-$cc_compiler
  12. CXX=$target_host-$cxx_compiler
  13. STRIP=$target_host-strip
  14. RC=$target_host-windres
  15. [settings]
  16. # We are cross-building to Windows
  17. os=Windows
  18. arch=x86_64
  19. compiler=gcc
  20. # Adjust to the gcc version of your MinGW package
  21. compiler.version=7.3
  22. compiler.libcxx=libstdc++11
  23. build_type=Release