Procházet zdrojové kódy

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

git-svn-id: trunk@17712 -
Jonas Maebe před 14 roky
rodič
revize
a03a597374
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;