我正在尝试为linux创建一个firebreath插件,我已经在windows中构建了这个插件,它正在windows中运行。我可以为ubuntu使用相同的代码吗?如果是,如何?正如我所尝试的,但失败了。后来,我尝试从一开始就创建相同的插件,而不是使用我的插件的windows版本代码,但我遇到了以下错误。有什么解决方案吗?
root@roshan-HCL-Notebook:/home/roshan/fbprojects/PLSplugin# sh firebreath/prepmake.sh . build
firebreath/prepmake.sh: 7: firebreath/prepmake.sh: source: not found
firebreath/prepmake.sh: 9: firebreath/prepmake.sh: pushd: not found
CMake Error at CMakeLists.txt:11 (Project):
project PROJECT called with incorrect number of arguments
CMake Error at CMakeLists.txt:39 (include_platform):
Unknown CMake command "include_platform".
-- Configuring incomplete, errors occurred!
firebreath/prepmake.sh: 11: firebreath/prepmake.sh: popd: not found
不要使用sh
(它没有source
、pushd
和popd
),使用bash
-或者直接运行脚本:
firebreath/prepmake.sh . build