README.mingw 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. aria2 Windows build
  2. ===================
  3. aria2 Windows build is provided in 2 flavors: 32bit version and 64bit
  4. version. The executable was compiled using mingw-w64 cross compiler on
  5. Debian Linux.
  6. * gcc-mingw-w64 10.2.1-6+24.2
  7. * g++-mingw-w64 10.2.1-6+24.2
  8. * binutils-mingw-w64-i686 2.35.2-2+8.11+b3
  9. * binutils-mingw-w64-x86-64 2.35.2-2+8.11+b3
  10. The executable is statically linked, so no extra DLLs are
  11. necessary. The linked libraries are:
  12. * gmp 6.2.1
  13. * expat 2.4.1
  14. * sqlite 3.36.0
  15. * zlib 1.2.11
  16. * c-ares 1.17.2
  17. * libssh2 1.9.0 (+ https://github.com/libssh2/libssh2/commit/ba149e804ef653cc05ed9803dfc94519ce9328f7.patch)
  18. This build has the following difference from the original release:
  19. * 32bit version only: ``--disable-ipv6`` is enabled by default. (In
  20. other words, IPv6 support is disabled by default).
  21. Known Issues
  22. ------------
  23. * TLSv1.3 does not work.
  24. * --file-allocation=falloc uses SetFileValidData function to allocate
  25. disk space without filling zero. But it has security
  26. implications. Refer to
  27. https://msdn.microsoft.com/en-us/library/windows/desktop/aa365544%28v=vs.85%29.aspx
  28. for more details.
  29. * When Ctrl-C is pressed, aria2 shows "Shutdown sequence
  30. commencing... Press Ctrl-C again for emergency shutdown." But
  31. mingw32 build cannot handle second Ctrl-C properly. The second
  32. Ctrl-C just kills aria2 instantly without proper shutdown sequence
  33. and you may lose data. So don't press Ctrl-C twice.
  34. * --daemon option doesn't work.
  35. * 32bit version only: When ``--disable-ipv6=false`` is given,
  36. BitTorrent DHT may not work properly.
  37. * 32bit version only: Most of the IPv6 functionality does not work
  38. even if ``--disable-ipv6=false`` is given.
  39. References
  40. ----------
  41. * http://smithii.com/aria2
  42. * http://kemovitra.blogspot.com/2009/12/download-aria2-163.html