소스 검색

Always call DoExec to generate linker scripts. Even if cs_link_nolink is set, the ldgen scipt needs to be called in the generated ppas script.

ccrause 3 년 전
부모
커밋
793c157a9c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/systems/t_freertos.pas

+ 1 - 1
compiler/systems/t_freertos.pas

@@ -1215,7 +1215,7 @@ begin
 
   Replace(cmdstr,'$IDF_PATH',idfpath);
   Replace(cmdstr,'$OUTPUT',outputexedir);
-  if success and not(cs_link_nolink in current_settings.globalswitches) then
+  if success then
     success:=DoExec(binstr,cmdstr,true,false);
 end;
 {$endif XTENSA}