Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Hello Erlang 需要 -smp 才能使用 wxErlang。当我使用 emacs 编辑和编译时,我修改了 erlang.el 文件,如下所示:
但这在我运行程序时没有效果:WX ERROR: SMP emulator required** exception error: not_smp
您是否看到语法错误或其他任何内容?
该-smp选项需要一个参数 ( enable,disable或auto)。如果您总是想启动启用 SMP 的模拟器,请将以下内容添加到您的~/.emacs文件中:
-smp
enable
disable
auto
~/.emacs
(add-hook 'erlang-mode-hook (lambda () (setq inferior-erlang-machine-options '("-smp" "enable"))))