瀏覽代碼

* don't call assembler when using -s in combination with -ap (mantis #19401)

git-svn-id: trunk@17712 -
Jonas Maebe 14 年之前
父節點
當前提交
a03a597374
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compiler/assemble.pas

+ 1 - 1
compiler/assemble.pas

@@ -270,7 +270,7 @@ Implementation
     Function DoPipe:boolean;
       begin
         DoPipe:=(cs_asm_pipe in current_settings.globalswitches) and
-                (([cs_asm_leave,cs_link_on_target] * current_settings.globalswitches) = []) and
+                (([cs_asm_extern,cs_asm_leave,cs_link_on_target] * current_settings.globalswitches) = []) and
                 ((target_asm.id in [as_gas,as_ggas,as_darwin]));
       end;