forked from premiere/premiere-libtorrent
enabled standard library debugging in debug mode for gcc toolsets
This commit is contained in:
parent
f2a8fe6df7
commit
77481c24a7
6
Jamfile
6
Jamfile
|
@ -77,6 +77,12 @@ rule linking ( properties * )
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( <toolset>gcc in $(properties) || <toolset>darwin in $(properties) ) && <variant>debug in $(properties)
|
||||||
|
{
|
||||||
|
# enable debug iterators for gcc in debug mode
|
||||||
|
result += <define>_GLIBCXX_DEBUG ;
|
||||||
|
}
|
||||||
|
|
||||||
return $(result) ;
|
return $(result) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue