From 9ff4ee4f654c87582f2cf9189a0c6bbf6aa7d4ca Mon Sep 17 00:00:00 2001 From: John McFarlane Date: Fri, 8 Mar 2024 19:17:22 +0000 Subject: [PATCH] Fix QCC debug build flag (#364) As per the patch put forward in https://github.com/boostorg/build/issues/453 --- src/tools/qcc.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/qcc.jam b/src/tools/qcc.jam index 96f927f4b8..5d915b6574 100644 --- a/src/tools/qcc.jam +++ b/src/tools/qcc.jam @@ -88,7 +88,7 @@ local rule check-target-platform } # Declare flags for compilation. -toolset.flags qcc.compile OPTIONS on : -gstabs+ ; +toolset.flags qcc.compile OPTIONS on : -g ; # Declare flags and action for compilation. toolset.flags qcc.compile OPTIONS off : -O0 ; @@ -215,7 +215,7 @@ generators.register [ new qcc-linking-generator qcc.link.dll : LIB OBJ # Declare flags for linking. # First, the common flags. -toolset.flags qcc.link OPTIONS on : -gstabs+ ; +toolset.flags qcc.link OPTIONS on : -g ; toolset.flags qcc.link OPTIONS on : -p ; toolset.flags qcc.link OPTIONS ; toolset.flags qcc.link LINKPATH ;