我已经在c:\masm32\
中安装了masm32。然后,我在ST3中创建了一个构建系统:
{
"shell_cmd": "c:\\masm32\\bin\\build.bat \"${file_path}/${file_base_name}\"",
"file_patterns": "[\"*.asm\"]",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"selector": "source.asm,source.ASM",
"working_dir": "${file_path}",
"encoding": "utf-8"
}
我可以在“构建系统”菜单下的列表中看到我的新系统,但是当打开.asm文件并尝试进行构建时,我可以在底部看到文本Line XX, ColumnXX; No Build System
。如果我明确选择构建系统,也会发生这种情况。
我的配置有什么问题?
我尝试this configuration失败:
{
"shell": true,
"cmd": ["ml", "/c", "/coff", "$file", "&&",
"link", "/SUBSYSTEM:WINDOWS", "${file/\\.asm/\\.obj/}", "&&",
"explorer.exe", "$file_path"],
"selector": "source.asm"
}
按Ctrl + B仍会显示“没有构建系统”。