对于汇编程序中的小段代码,我很乐意将它们放入批处理文件并直接编译或在远程 Windows 机器中编译。
这是我设计用于 MASM32 的工作 .bat 文件
;@goto end
.486
.model flat,stdcall
option casemap:none
include \masm32\include\kernel32.inc
include \masm32\include\user32.inc
includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib
.data
msg db "Hello Word",0
.code
start:
push 0
push offset msg
push offset msg
push 0
call MessageBox
push 0
call ExitProcess
end start
:end
@echo off
set name=%~n0
set cmpname=ml.exe
set linkname=link.exe
for %%X in (%cmpname%) do (set CMPL=%%~$PATH:X)
if defined CMPL (
for %%I in (%linkname%) do (set MLINK=%%~$PATH:I)
if defined MLINK (
%CMPL% /nologo /c /coff /Cp %name%.bat
%MLINK% /SUBSYSTEM:WINDOWS /FIXED:NO %name%.obj
del *.obj
) ELSE (
ECHO Cannot find %linkname% !
)
) ELSE (
ECHO Cannot find %cmpname% !
)
exit /b %ERRORLEVEL%
我的问题:
例如,在尝试使用 GCC 时
;@goto end
#include <stdio.h>
int main()
{
return 0;
}
:end
;@echo off
set name=%~n0
set cmpname=gcc.exe
for %%I in (%cmpname%) do (set CMPL=%%~$PATH:I)
if defined CMPL (
%CMPL% -Wall -o %name% %name%.bat
del *.obj
) ELSE (
echo Cannot find %cmpname% !
)
exit /b %ERRORLEVEL%
第一个错误:
此时 \CodeBlocks\MinGW\bin\gcc.exe 是意外的。
我搜索并找到了这个,然后我改为:
for %%I in (%cmpname%) do (set CMPL="%%~$PATH:I")
解决了,但是有一个新的错误:
testc.bat: file not recognize: File format not Recognized collect2.exe: error: ld returned 1 exit status
我的问题是:
是否有可能以及如何使上述批处理文件与 C/C++ 编译器一起使用?