Auto-DumpObj every file in BuildResults

Having an up-to-date object dump hands greatly speeds up the
round-tripping slog.
This commit is contained in:
Elliot Nunn 2019-12-21 06:03:52 +08:00
parent 4ed556851a
commit 8ed81abc85

View File

@ -133,9 +133,23 @@ if 1: # has MPW
# Tell MPW what to do when it starts (can use {Src} in their -c command)
if config.passthru:
bootscript = 'Set Src Disk:Src:; Export Src; Directory {Src}\r'
bootscript += 'Set Exit 0; %s; Quit\r' % config.passthru
vol['MPW']['UserStartup'].data = bootscript.encode('mac_roman')
bootscript = '''
Set Src Disk:Src:
Export Src
Directory {{Src}}
Set Exit 0
''' + {config.passthru} + '''
# DumpObj SeriousFile.c.o to SeriousFile.c.d
Files -r -o -f -t 'OBJ ' -c 'MPS ' Disk:Src:BuildResults | StreamEdit ∂
-e "1,$ change 'If ∂`Newer ' . ' ' . '.dump∂`; DumpObj ' . '>' . '.dump; End'; replace -c 2 /[a-z]+.dump/ 'd'" ∂
>Disk:DumpObjScript
Disk:DumpObjScript
Quit
'''
vol['MPW']['UserStartup'].data = bootscript.replace('\n', '\r').encode('mac_roman')
# Evil tuning: more RAM for MPW because some tools do not use temp mem
mpw = list(macresources.parse_file(vol['MPW']['MPW Shell'].rsrc))