mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
Explain why some binutils are blacklisted
svn path=/trunk/; revision=28895
This commit is contained in:
parent
0eccb4aa9d
commit
6bd9e7bed6
1 changed files with 8 additions and 2 deletions
|
@ -898,6 +898,12 @@ MingwBackend::IsSupportedBinutilsVersion ( const string& binutilsVersion )
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* - Binutils older than 2003/10/01 have broken windres which can't handle
|
||||||
|
* icons with alpha channel.
|
||||||
|
* - Binutils between 2004/09/02 and 2004/10/08 have broken handling of
|
||||||
|
* forward exports in dlltool.
|
||||||
|
*/
|
||||||
if ( ( ( strcmp ( binutilsVersion.c_str (), "20040902") >= 0 ) &&
|
if ( ( ( strcmp ( binutilsVersion.c_str (), "20040902") >= 0 ) &&
|
||||||
( strcmp ( binutilsVersion.c_str (), "20041008") <= 0 ) ) ||
|
( strcmp ( binutilsVersion.c_str (), "20041008") <= 0 ) ) ||
|
||||||
( strcmp ( binutilsVersion.c_str (), "20031001") < 0 ) )
|
( strcmp ( binutilsVersion.c_str (), "20031001") < 0 ) )
|
||||||
|
|
Loading…
Reference in a new issue