您的位置:首页 > 运维架构 > Linux

skyeye-1.3.0在Red hat Linux 的安装文档

2010-03-23 10:53 411 查看

(1)问题

下载目前最新skyeye-1.3.0且在Redhat里安装过的人都知道,在redhat下对skyeye1.3.0进行make会出现以下问题:
****************************************
/usr/bin/ld: cannot find –lXpm
*****************************************
按照提示是因为没有找到lxpm的库,这是一个关于图形的库,于是到网上(http://www.rpmfind.net/,这是专门用来查找rpm包的资源网站)找了好多关于xpm的库,但都是因为需要安装其他的库而安装未果。

(2)解决办法

后来老师提醒要用以下命令,且应在命令行模式下安装:
./configure –build=arm –without-x
(to configure the package for your system.)
Make lib
(to compile the third party library under third-party directory.)
Make
(to compile the package. Optionally, type `make check' to run any self-tests that come with the package.)
Make intall_lib
(to install the libraries under third-party directory.)
Make install
(to install the programs and any data files and documentation.)
这样就安装成功了。

(3)装好之后

在/opt/skyeye有以下目录:

说明如下:
Bin目录存放了skyeye的二进制程序,描述如下:
l
mknandflashdump

用来制作nandflash的镜像文件
l
skyeye
:skyeye的命令行应用程序。
l
Prof_convert:对数据文件进行解析
l
uart_instance:
被skyeye调用的应用程序,功能为通过一个xterm终端来显示串口的输出。
include目录存放了skyeye开发插件时所用到的头文件,这些头文件定义了skyeye提供的API函数的原
型。
info目录存放了info格式的文档,暂时没有提供。
Lib目录存放了skyeye的核心库libcommon.so和其他一些以动态库存在的插件。
testsuite目录存放了一个简单的测试用例,用来演示skyeye的一些功能。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: