From 4018efbab5e6a5ba8f6dff3dfe02703d430d5fae Mon Sep 17 00:00:00 2001 From: Justin LaPolla Date: Wed, 7 Feb 2018 07:48:01 -0600 Subject: [PATCH] Use '-G 0' and '-G 3' instead of '-G n' and '-G f' - Turns out '-G n' and '-G f' are deprecated. --- src/tools/cray.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/cray.jam b/src/tools/cray.jam index c5af87e91..9472b78df 100644 --- a/src/tools/cray.jam +++ b/src/tools/cray.jam @@ -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 = " " ;