浏览代码

Add new assmebler flag: af_no_stabs for assemblers that do not support stabs debug format

git-svn-id: trunk@38237 -
pierre 7 年之前
父节点
当前提交
cbe09c08bc
共有 1 个文件被更改,包括 9 次插入7 次删除
  1. 9 7
      compiler/systems.pas

+ 9 - 7
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;