配置内核时出现如下错误: liuxin@sunshine-virtual-machine:~/work/nfs_root/system/linux-2.6.22.6$ make menuconfig HOSTCC scripts/kconfig/lxdialog/checklist.o In file included :: scripts/kconfig/lxdialog/dialog.h::: fatal error: curses.h: 没有那个文件或目录 #include CURSES_…
In :: scripts/kconfig/lxdialog/:: fatal error: curses.h: 没有那个文件或目录 #include CURSES_LOC ^ compilation terminated. ]: *** [scripts/kconfig/lxdialog/checklist.o] 错误 ]: *** [menuconfig] 错误 这是因为ubuntu系统中缺少一个套件 ncurses devel sudo apt-get install libncurses…
错误: KeyError: 'INCLUDE' 使编译出错 解决方法: [usrname@host source]$ vim tools/build/site.settings 注释# "include_path" : os.environ["INCLUDE"].split(":"), 行 问题解决.…
xcode5编译一个xcode4时写的代码,提交iTunes审核时出错. 1.iOS提交审核时出现Invalid Binary错误 2.收到邮件: iPhone 5 Optimization Requirement - Your binary is not optimized for iPhone 5. New iPhone apps and app updates submitted targeting iOS 6 and above must support the 4-inch displ…
在WIndows 7操作系统上同时安装VS2012与VS2015并用VS2012创建MFC程序时弹出编译错误”fatal error C1083: 无法打开包括文件:“mprapidef.h”: No such file or directory”的解决办法: I installed vs2015 and vs2012, then the same problem occurs,however, I find a solution. open visual studio project sett…
在infoview中打开WEBI文件时,提示如下错误. 通过查看SCN,找到错误原因是CMC中有一个服务没有启动. 启动这个服务即可: WebIntelligenceProcessingServer…
此例是VS2010的CS项目. 在重新生成解决方案时,出现的错误. 解决步骤:先关闭解决方案,再在项目文件下的bin\Debug\*.exe删除这类之前生成得.exe文件,再在VS2010下重新生成.…
最近的项目里用到Xrm.Utility.openEntityForm 创建新记录时分别碰到以下错误: 以及 这两个错误都是因为想传递给表单的参数太多导致的url 查询参数太长导致的,前者是因为iis的安全设置引起的,后者是因为asp.net的设置引起的,分别在CRM的web服务器的web.config文件中调整以下配置即可解决 对于第一项404.15错误,调整: <system.webServer> <security> <requestFiltering> <r…
今天继续封装下jdom 发现jdom引用了个jaxen的jar 如果不导入这个库,使用xpath时出现noDefClass的错误(找不到某个类) 到csdn上 下了个 ok 同时研究了下List的toArrary方法 接着到了Logger阶段, 在.net里一直用的是系统的Trace方法,其它都是自已写的, 现在到java里,jdk本身提供有Logger,开源有logger 4j,研究中 希望选取一个简单点的…
1)今天遇到个问题,使用ueditor中的setContent() 时经常报innerHtml错误:网上找了下解决方案:发现这个可以用: 不能创建editor之后马上使用ueditor.setContent('文本内容');要等到创建完成之后才可以使用 ueditor.addListener("ready", function () { // editor准备好之后才可以使用 ueditor.setContent('abc'); });…