2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 00:12:11 +00:00

Use '-G 0' and '-G 3' instead of '-G n' and '-G f'

- Turns out '-G n' and '-G f' are deprecated.
This commit is contained in:
Justin LaPolla
2018-02-07 07:48:01 -06:00
parent fea201e31b
commit 4018efbab5

View File

@@ -782,11 +782,11 @@ rule set-debug-symbols-procedure ( targets * : sources * : properties * )
local debug-option = ;
if $(optimization) = speed
{
debug-option = f ;
debug-option = 3 ;
}
else
{
debug-option = n ;
debug-option = 0 ;
}
local space = " " ;