error记录
文章平均质量分 93
flfihpv259
这个作者很懒,什么都没留下…
展开
-
基于FL2440的3.6.6内核移植出现Uncompressing Linux... done, booting the kernel.
一前期准备工作二修改内核源码1 修改编译器2 增加配置项三错误记录1 内核启动后串口打印信息停留在Uncompressing Linux done booting the kernel一、前期准备工作1.1 内核下载到官网地址选相应的内核下载,我这里参考选了3.6.61.2 配置好开发环境我用的cross-compiler版本如下anzyela原创 2016-07-16 19:17:36 · 2952 阅读 · 0 评论 -
const造成的一些错误记录
重载”=”号操作符出现时出现no known conversion for argument 1 from 'CBinmap' to 'CBinmap&'错误代码Class CBinmap{ CBinmap& operator=(CBinmap &bmap);}CBinmap& CBinmap::operator=(CBinmap &bmap){ if(this==&bmap)原创 2017-06-12 13:32:19 · 1592 阅读 · 0 评论 -
inline 的存疑记录
今天把自己的代码中的一些小函数改成inline类型,但奇怪的是在类外调用该类的inline类型成员时出现undefined reference的错误,但其它一些却又能正常。如下getData(),setData()会出错,其它没问题,inline int CBinmap::getWidth(void){ return width;}inline int CBinmap::getHeig原创 2017-05-23 14:31:03 · 396 阅读 · 0 评论 -
PC终端执行开发板上的图形界面程序时出错:Gtk-WARNING **: cannot open display:
场景root@NanoPi2:/home/fa/Documents/opencv-demo# ./demo (edges:1685): Gtk-WARNING **: cannot open display: 按照网上说明添加display如下:root@NanoPi2:/home/fa/Documents/opencv-demo# export DISPLAY=:0.0root@NanoPi2:原创 2016-10-11 14:11:07 · 32621 阅读 · 1 评论 -
A start job is running for LSB: Raise network interfaces
使用开发板的文件系统,利用NFS启动出现此错误。 网上找了下错误,看了此链接http://git.net/ml/general/2016-01/msg13809.html 发现原来是文件系统里是动态分配网络,而NFS启动时uboot设置的是静态网络,应该是有冲突,系统无法正常动态分配网络导致卡死在这一步。更改了下文件系统里的网络设置为静态的,再次启动就OK了。原创 2016-12-30 13:50:38 · 7413 阅读 · 0 评论 -
关于ping外网时出现unknow host的问题
静态IP设置通过修改/etc/network/interfaces就好,参数说明直接man interfaces看就好 修改的参数可看下面第二张图。修改过程首先,ip地址这些是设置正确了,板子可以正常ping通PC,网关,但就是无法PING通外网。如下 根据网上搜索和自己摸索更改了dns如下,直接改resolv.conf下启动又会没了: 然后重启 ,命令如下,如果不是用NFSROOT方式启动原创 2017-01-05 17:53:35 · 7445 阅读 · 0 评论 -
在写类模板时总是出error LNK2019: unresolved external symbol的原因
最近在将代码改成模板时出现一堆的error LNK2019: unresolved external symbol错误;百度才发现类模板的声明和实现不能分开,要放在一个文件中,引用百度的说明原因;“通常情况下,你会在.h文件中声明函数和类,而将它们的定义放置在一个单独的.cpp文件中。但是在使用模板时,这种习惯性做法将变得不再有用,因为当实例化一个模板时,编译器必须看到模板确切的定原创 2015-11-05 17:03:32 · 1174 阅读 · 0 评论 -
PB5.0 KITL 使用中的错误记录
参考http://blog.csdn.net/gooogleman/article/details/4001784 的文章所有都按上面弄好了,但总是出现错误如下:Error: Module kd.dll is kernel module but not in kernel regionError: Module hd.dll is kernel module but not in kern原创 2015-11-23 17:45:41 · 876 阅读 · 0 评论 -
在keil mdk中的error: #28: expression must have a constant value
最近将一段正常的代码复制到另一文件中编译时死活出问题,如下:void GPIO_Link_Init(GPIO_TypeDef* GPIOx,uint32_t RCC_AHB1Periph,uint32_t GPIO_Pin,GPIOMode_TypeDef GPIO_Mode,GPIOSpeed_TypeDef GPIO_Speed,GPIOOType_TypeDef GPIO_OType,G原创 2016-02-23 14:09:26 · 12753 阅读 · 2 评论 -
linux error note
1:undefined reference to `wrong_size_cmpxchg'? :gcc 版本不兼容,更换新版试试原创 2016-04-20 17:17:46 · 4458 阅读 · 0 评论 -
fl2440 2.6.35移植触摸屏驱动错误
bootload出错提示如下:------------[ cut here ]------------WARNING: at lib/kref.c:34 kref_get+0x1c/0x40()Modules linked in:[] (unwind_backtrace+0x0/0xf0) from [] (warn_slowpath_common+0x48/0x60)[]原创 2016-05-11 08:37:58 · 2112 阅读 · 0 评论 -
eclipes error
1 error in final launch sequence提示信息: Error in final launch sequence Failed to execute MI command: maintenance set python print-stack off Error message from debugger back end: Undefined m原创 2016-06-08 15:21:12 · 3475 阅读 · 0 评论 -
解决编译kernel出现WARNING:Section mismatch(es)
在编译内核时出现section mismatch警告原因分析解决方法在编译内核时出现section mismatch警告:警告如下: WARNING: modpost: Found 3 section mismatch(es).To see full details build your kernel with:'make CONFIG_DEBUG_SECTION_MISMATCH=y'使原创 2016-07-12 16:45:42 · 9153 阅读 · 0 评论 -
Mount.cifs cannot allocate memory mounting Windows share
参考文章地址执行mount 我的WIN7机上的共享夹时出现下面的问题:anzyelay@ubuntu:Desktop$ ./files_share.sh 主机IP为:192.168.1.219主机共享目录:2440_linux主机用户名:administratormount error(12): Cannot allocate memoryRefer to the mount.cifs(8原创 2016-06-30 15:46:56 · 1321 阅读 · 0 评论 -
can't open /dev/ttySAC0: No such file or directory
具体错误如下:Starting network...ip: RTNETLINK answers: File existsgetty: can't open '/dev/ttySAC0': No such file or directorygetty: can't open '/dev/ttySAC0': No such file or directorygetty: can't open '原创 2016-08-08 10:04:04 · 4295 阅读 · 2 评论 -
undefined reference to `s3c_dma_get_ops'
出错记录如下:sound/built-in.o: In function `__samsung_dma_get_ops':/home/anzyelay/Desktop/arm/linux-3.6.6-gcc.4.9.4/arch/arm/plat-samsung/include/plat/dma-ops.h:60: undefined reference to `s3c_dma_get_ops'原创 2016-08-12 17:01:51 · 1130 阅读 · 0 评论 -
QT5.6.0安装错误记录
一 使用源码安装下载源码后执行出错如下:1. ./configure时出错 The test for linking against libxcb and support libraries failed!错误提示里叫你查看:qtbase/src/plugins/platforms/xcb/README 里面提示安装相应库,查看版本后安装 sudo apt-get install libxc原创 2016-05-31 17:20:23 · 18140 阅读 · 6 评论 -
配置静态IP后多出个169.254段的IP
这里写自定义目录标题配置好静态ip后出现如下状况原因--APIPA如何解决配置好静态ip后出现如下状况物理地址. . . . . . . . . . . . . : 00-22-64-55-76-8FDHCP 已启用 . . . . . . . . . . . : 否自动配置已启用. . . . . . . . . . : 是自动配置 IPv4 地址 . . . . . . . : ...原创 2019-03-14 10:58:22 · 35647 阅读 · 2 评论