attempt to fix msvc 64 bit build

This commit is contained in:
arvidn 2015-08-20 20:56:52 +02:00
parent 9ce1d64839
commit 206e4b7c71
1 changed files with 6 additions and 0 deletions

View File

@ -338,6 +338,12 @@ rule building ( properties * )
result += <define>TORRENT_EXPORT_EXTRA ;
}
if <toolset>msvc in $(properties)
{
# allow larger .obj files (with more sections)
result += <cflags>/bigobj ;
}
if ( <variant>debug in $(properties)
&& ( <toolset>clang in $(properties)
|| <toolset>gcc in $(properties)