配置 emacs + erlang 用于 wxErlang 的使用

发布于 2024-10-05 01:22:30 字数 206 浏览 2 评论 0原文

你好 Erlang 需要 -smp 才能使用 wxErlang。当我使用 emacs 编辑和编译时,我修改了 erlang.el 文件,如下所示: (defvar lower-erlang-machine-options '("-smp")

但这在我运行程序时没有效果: WX 错误:需要 SMP 模拟器** 异常错误:not_smp

您是否看到语法错误或其他错误?

Hello
Erlang requires -smp for using wxErlang. As I edit and compile with emacs, I modified the erlang.el file like this:
(defvar inferior-erlang-machine-options '("-smp")

But this has no effect when I run the program:
WX ERROR: SMP emulator required** exception error: not_smp

Do you see a syntax error or anything else ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌上青苔 2024-10-12 01:22:30

-smp 选项需要一个参数(enabledisableauto)。如果您始终想要启动支持 SMP 的模拟器,请将以下内容添加到您的 ~/.emacs 文件中:

 (add-hook 'erlang-mode-hook
     (lambda ()
         (setq inferior-erlang-machine-options '("-smp" "enable"))))

The -smp option requires an argument (enable, disable or auto). If you always want to start an SMP-enabled emulator, add the following to your ~/.emacs file:

 (add-hook 'erlang-mode-hook
     (lambda ()
         (setq inferior-erlang-machine-options '("-smp" "enable"))))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文