1

我想调试在我的本地主机上运行的 openresty lua。为此,我在我的 MAC 中安装了 ZBS IDE。我正在浏览.

指令说我需要在 nginx conf 中设置以下内容

lua_package_path '{ZBS}/lualibs/?/?.lua;{ZBS}/lualibs/?.lua;;';
lua_package_cpath '{ZBS}/bin/clibs/?.dll;;';

我发现很难找到我的 mac 中的位置。我安装了 IDE,我在应用程序目录中移动了 dmg。由于我无法设置此路径,我的 ngix 无法找到模块“mobdebug”。

关于如何在 Mac OS 中找到 ZBS lua lib 路径的任何想法。?

4

1 回答 1

1

如果您将 ZBS 安装为应用程序,则{ZBS}需要将路径中的路径替换为类似/Applications/ZeroBraneStudio.app/Contents/ZeroBraneStudio的内容,因此完整路径变为:

lua_package_path '/Applications/ZeroBraneStudio.app/Contents/ZeroBraneStudio/lualibs/?/?.lua;/Applications/ZeroBraneStudio.app/Contents/ZeroBraneStudio/lualibs/?.lua;;';
lua_package_cpath '/Applications/ZeroBraneStudio.app/Contents/ZeroBraneStudio/bin/clibs/?.dylib;;';
于 2017-09-28T17:54:49.137 回答