2753
- 收藏
- 点赞
- 分享
- 举报
QT4.8.5 移植到HI3520的问题
问题描述:将QT4.8.5 移植到Hi3520之后,运行QT程序出现段错误。
1、移植方法:
下载源码之后
1、先执行配置
./configure -static -release --prefix=/usr/local/qt4.8.5-arm-static -opensource -release -shared -Declarative -importdir /opt/imports -fast -no-largefile -qt-sql-sqlite -qt3support -exceptions -xmlpatterns -no-glib -no-phonon -no-mmx -no-3dnow -no-script -no-javascript-jit -no-sse -no-sse2 -svg -no-webkit -qt-zlib -qt-libtiff -qt-libpng -qt-libjpeg -make libs -make tools -nomake examples -nomake docs -nomake demo -no-nis -no-cups -iconv -no-dbus -xplatform qws/linux-arm-g++ -embedded arm -little-endian -qt-freetype -depths 16,24,32 -qt-gfx-linuxfb -qt-gfx-transformed -qt-gfx-multiscreen -no-gfx-vnc -no-gfx-qvfb -qt-kbd-linuxinput -no-kbd-qvfb -armfpa -no-mouse-qvfb -qt-mouse-linuxtp -qt-mouse-tslib -DQT_NO_QWS_CURSOR -no-pch -I/usr/local/tslib/include -L/usr/local/tslib/lib -confirm-license -no-webkit
2、然后Make&make install
3、拷贝/usr/local/qt4.8.5-arm/lib 到HI3520开发版的NFS目录并设置环境变量
export LD_LIBRARY_PATH=/lib:$LD_LIBRARY_PATH
export QTDIR=/opt/nfs/qt/qt4.8.5-arm
export T_ROOT=/opt/nfs/qt/tslib
export PATH=$T_ROOT/bin:$PATH
export LD_LIBRARY_PATH=$T_ROOT/lib:$QTDIR/lib:$LD_LIBRARY_PATH
export TSLIB_CONSOLEDEVICE=none
export TSLIB_FBDEVICE=/dev/fb1
export TSLIB_PLUGINDIR=$T_ROOT/lib/ts
export TSLIB_CONFFILE=$T_ROOT/etc/ts.conf
export TSLIB_CALIBFILE=/etc/pointercal
4、编译和helloword.cpp
#include
#include
#include
#include
int main(int argc,char* argv[])
{
QApplication app(argc,argv);
qDebug() << "hello 3520 I am qt\n";
return app.exec();
}
5、qmake make 生产可执行文件。
6、拷贝到开发版nfs目录中。然后执行,然后提示段错误。
#./sample_vio 0 & //先启动sample_vio 初始化VO
# ./helloword
Segmentation fault
#
各位大神,看我哪里有错吗?
谢谢!
1、移植方法:
下载源码之后
1、先执行配置
./configure -static -release --prefix=/usr/local/qt4.8.5-arm-static -opensource -release -shared -Declarative -importdir /opt/imports -fast -no-largefile -qt-sql-sqlite -qt3support -exceptions -xmlpatterns -no-glib -no-phonon -no-mmx -no-3dnow -no-script -no-javascript-jit -no-sse -no-sse2 -svg -no-webkit -qt-zlib -qt-libtiff -qt-libpng -qt-libjpeg -make libs -make tools -nomake examples -nomake docs -nomake demo -no-nis -no-cups -iconv -no-dbus -xplatform qws/linux-arm-g++ -embedded arm -little-endian -qt-freetype -depths 16,24,32 -qt-gfx-linuxfb -qt-gfx-transformed -qt-gfx-multiscreen -no-gfx-vnc -no-gfx-qvfb -qt-kbd-linuxinput -no-kbd-qvfb -armfpa -no-mouse-qvfb -qt-mouse-linuxtp -qt-mouse-tslib -DQT_NO_QWS_CURSOR -no-pch -I/usr/local/tslib/include -L/usr/local/tslib/lib -confirm-license -no-webkit
2、然后Make&make install
3、拷贝/usr/local/qt4.8.5-arm/lib 到HI3520开发版的NFS目录并设置环境变量
export LD_LIBRARY_PATH=/lib:$LD_LIBRARY_PATH
export QTDIR=/opt/nfs/qt/qt4.8.5-arm
export T_ROOT=/opt/nfs/qt/tslib
export PATH=$T_ROOT/bin:$PATH
export LD_LIBRARY_PATH=$T_ROOT/lib:$QTDIR/lib:$LD_LIBRARY_PATH
export TSLIB_CONSOLEDEVICE=none
export TSLIB_FBDEVICE=/dev/fb1
export TSLIB_PLUGINDIR=$T_ROOT/lib/ts
export TSLIB_CONFFILE=$T_ROOT/etc/ts.conf
export TSLIB_CALIBFILE=/etc/pointercal
4、编译和helloword.cpp
#include
#include
#include
#include
int main(int argc,char* argv[])
{
QApplication app(argc,argv);
qDebug() << "hello 3520 I am qt\n";
return app.exec();
}
5、qmake make 生产可执行文件。
6、拷贝到开发版nfs目录中。然后执行,然后提示段错误。
#./sample_vio 0 & //先启动sample_vio 初始化VO
# ./helloword
Segmentation fault
#
各位大神,看我哪里有错吗?
谢谢!
我来回答
回答0个
时间排序
认可量排序
暂无数据
或将文件直接拖到这里
悬赏:
E币
网盘
* 网盘链接:
* 提取码:
悬赏:
E币
Markdown 语法
- 加粗**内容**
- 斜体*内容*
- 删除线~~内容~~
- 引用> 引用内容
- 代码`代码`
- 代码块```编程语言↵代码```
- 链接[链接标题](url)
- 无序列表- 内容
- 有序列表1. 内容
- 缩进内容
- 图片![alt](url)
相关问答
-
2017-08-16 17:10:52
-
2020-07-20 16:11:07
-
2015-06-30 15:56:39
-
2017-05-27 12:34:09
-
2015-08-19 10:15:09
-
2014-08-05 21:15:43
-
2015-07-16 17:15:36
-
2014-12-22 09:19:07
-
2014-07-01 13:30:25
-
2018-03-20 16:03:07
-
2015-03-04 10:25:35
-
02015-10-20 14:54:37
-
32014-11-26 10:09:39
-
2013-12-19 12:22:52
-
2015-01-06 14:18:38
-
2017-04-15 19:37:57
-
2015-06-25 09:31:45
-
2015-02-12 16:21:07
-
2016-09-14 14:11:35
无更多相似问答 去提问
点击登录
-- 积分
-- E币
提问
—
收益
—
被采纳
—
我要提问
切换马甲
上一页
下一页
悬赏问答
-
5Hi3516CV610 如何使用SD卡升级固件
-
5cat /dev/logmpp 报错 <3>[ vi] [func]:vi_send_frame_node [line]:99 [info]:vi pic queue is full!
-
50如何获取vpss chn的图像修改后发送至vo
-
5FPGA通过Bt1120传YUV422数据过来,vi接收不到数据——3516dv500
-
50SS928 运行PQtools 拼接 推到设备里有一半画面会异常
-
53536AV100的sample_vdec输出到CVBS显示
-
10海思板子mpp怎么在vi阶段改变视频数据尺寸
-
10HI3559AV100 多摄像头同步模式
-
9海思ss928单路摄像头vio中加入opencv处理并显示
-
10EB-RV1126-BC-191板子运行自己编码的程序
举报反馈
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明
提醒
你的问题还没有最佳答案,是否结题,结题后将扣除20%的悬赏金
取消
确认
提醒
你的问题还没有最佳答案,是否结题,结题后将根据回答情况扣除相应悬赏金(1回答=1E币)
取消
确认