From cbe09c08bc65bf67feb0e558161146f3b910b8f8 Mon Sep 17 00:00:00 2001 From: pierre Date: Wed, 14 Feb 2018 15:08:29 +0000 Subject: [PATCH] Add new assmebler flag: af_no_stabs for assemblers that do not support stabs debug format git-svn-id: trunk@38237 - --- compiler/systems.pas | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/compiler/systems.pas b/compiler/systems.pas index e7c05d403e..26d576aa93 100644 --- a/compiler/systems.pas +++ b/compiler/systems.pas @@ -56,13 +56,15 @@ interface maxCrecordalign : longint; end; - tasmflags = (af_none, - af_outputbinary, - af_needar,af_smartlink_sections, - af_labelprefix_only_inside_procedure, - af_supports_dwarf, - af_no_debug, - af_stabs_use_function_absolute_addresses + tasmflags = (af_none + ,af_outputbinary + ,af_needar + ,af_smartlink_sections + ,af_labelprefix_only_inside_procedure + ,af_supports_dwarf + ,af_no_debug + ,af_stabs_use_function_absolute_addresses + ,af_no_stabs ); pasminfo = ^tasminfo;