mirror of https://gitlab.com/basile.b/dexed.git
15 lines
494 B
Batchfile
15 lines
494 B
Batchfile
@echo off
|
|
SET THEFILE=coedit.exe
|
|
echo Linking %THEFILE%
|
|
C:\Dev\lazarus\fpc\2.6.4\bin\i386-win32\ld.exe -b pei-i386 -m i386pe --gc-sections --entry=_mainCRTStartup -o coedit.exe link.res
|
|
if errorlevel 1 goto linkend
|
|
C:\Dev\lazarus\fpc\2.6.4\bin\i386-win32\postw32.exe --subsystem console --input coedit.exe --stack 16777216
|
|
if errorlevel 1 goto linkend
|
|
goto end
|
|
:asmend
|
|
echo An error occured while assembling %THEFILE%
|
|
goto end
|
|
:linkend
|
|
echo An error occured while linking %THEFILE%
|
|
:end
|