这很简单:我的 js 是 gnome-shell 扩展的一部分,包含几个导入行:
[...]
const Gettext = imports.gettext;
const MessageTray = imports.ui.messageTray;
imports.searchPath.push("/opt/tempmon/lib"); // append custom search path
const Helper = imports.tempmon; // import helper module
[...implementation...]
我已经用seed-module.h成功编译了我的共享库并将其放在/opt/tempmon/lib/libseed_tempmon.so下
窥镜 (lg) 显示:
gjs/seed(我很困惑)找不到“搜索路径中的 JS-Module tempmon”。
需要什么操作才能让我的模块包含在 JS 环境中?