mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-06 11:55:59 +02:00
GenerateDefaultLinkerScripts should set out_ld_filename.
This commit is contained in:
parent
a9d883ada1
commit
73287c35d2
@ -1176,6 +1176,7 @@ begin
|
|||||||
S:=FindUtil(utilsprefix+'objdump');
|
S:=FindUtil(utilsprefix+'objdump');
|
||||||
if (current_settings.controllertype = ct_esp32) then
|
if (current_settings.controllertype = ct_esp32) then
|
||||||
begin
|
begin
|
||||||
|
out_ld_filename:=outputexedir+'/esp32_out.ld';
|
||||||
project_ld_filename:=outputexedir+'/esp32.project.ld';
|
project_ld_filename:=outputexedir+'/esp32.project.ld';
|
||||||
cmdstr:={$ifndef UNIX}'$IDF_PATH/tools/ldgen/ldgen.py '+{$endif UNIX}
|
cmdstr:={$ifndef UNIX}'$IDF_PATH/tools/ldgen/ldgen.py '+{$endif UNIX}
|
||||||
'--config $OUTPUT/sdkconfig '+
|
'--config $OUTPUT/sdkconfig '+
|
||||||
@ -1193,6 +1194,7 @@ begin
|
|||||||
end
|
end
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
|
out_ld_filename:=outputexedir+'/esp8266_out.ld';
|
||||||
project_ld_filename:=outputexedir+'/esp8266.project.ld';
|
project_ld_filename:=outputexedir+'/esp8266.project.ld';
|
||||||
cmdstr:={$ifndef UNIX}'$IDF_PATH/tools/ldgen/ldgen.py '+{$endif UNIX}
|
cmdstr:={$ifndef UNIX}'$IDF_PATH/tools/ldgen/ldgen.py '+{$endif UNIX}
|
||||||
'--config $OUTPUT/sdkconfig '+
|
'--config $OUTPUT/sdkconfig '+
|
||||||
|
Loading…
Reference in New Issue
Block a user