gpt4 book ai didi

build-automation - 使用 Sublime Text 3 构建 Pascal

转载 作者:行者123 更新时间:2023-12-01 01:05:23 25 4
gpt4 key购买 nike

我想用 Sublime Text 3 构建 Free Pascal。我总是收到编码错误(见下文)。我还尝试使用编码保存文件。

我创建了一个 sublime-build文件:

{
"cmd":["fpc $file & ${file_path}/${file_base_name}.exe"],
"shell" : true,
}

我的测试程序是一个简单的 hello world:
Program HelloWorld;
begin
writeln("Hello, world!");
readln;
end.

我的错误代码:
[Decode error - output not utf-8]
[Finished in 0.0s with exit code 1]
[cmd: ['fpc C:\\Users\\korndi\\Documents\\FREI\\hellop.p & C:\\Users\\korndi\\Documents\\FREI/hellop.exe']]
[dir: C:\Users\korndi\Documents\FREI]
[path: C:\Python33\;;C:\FPC\2.6.2\bin\i386-Win32]

最佳答案

这对我有用。
CtrlB 将构建您的文件
CtrlShiftB 将运行它(在外部 cmd 中!!,哇哦!)

{
"cmd": ["fpc", "${file_path}/${file_base_name}"],
"selector": "source.pascal",
"variants": [
{
"cmd": ["start", "cmd", "/c", "$file_base_name.exe & pause"],
"name": "Run",
"shell": true
}
]
}

关于build-automation - 使用 Sublime Text 3 构建 Pascal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19291142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com