forked from aria2/aria2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.mingw
52 lines (38 loc) · 1.53 KB
/
README.mingw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
aria2 Windows build
===================
aria2 Windows build is provided in 2 flavors: 32bit version and 64bit
version. The executable was compiled using mingw-w64 cross compiler on
Ubuntu Linux.
The executable is statically linked, so no extra DLLs are
necessary. The linked libraries are:
* gmp 6.3.0
* expat 2.5.0
* sqlite 3.43.1
* zlib 1.3.1
* c-ares 1.19.1
* libssh2 1.11.0
This build has the following difference from the original release:
* 32bit version only: ``--disable-ipv6`` is enabled by default. (In
other words, IPv6 support is disabled by default).
Known Issues
------------
* TLSv1.3 does not work.
* --file-allocation=falloc uses SetFileValidData function to allocate
disk space without filling zero. But it has security
implications. Refer to
https://msdn.microsoft.com/en-us/library/windows/desktop/aa365544%28v=vs.85%29.aspx
for more details.
* When Ctrl-C is pressed, aria2 shows "Shutdown sequence
commencing... Press Ctrl-C again for emergency shutdown." But
mingw32 build cannot handle second Ctrl-C properly. The second
Ctrl-C just kills aria2 instantly without proper shutdown sequence
and you may lose data. So don't press Ctrl-C twice.
* --daemon option doesn't work.
* 32bit version only: When ``--disable-ipv6=false`` is given,
BitTorrent DHT may not work properly.
* 32bit version only: Most of the IPv6 functionality does not work
even if ``--disable-ipv6=false`` is given.
References
----------
* http://smithii.com/aria2
* http://kemovitra.blogspot.com/2009/12/download-aria2-163.html