这个版本的chrome beta升级到38.0.2x.xxx的时候, flash就挂了.
调试下
./libpepflashplayer.so: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by ./libpepflashplayer.so)
linux-vdso.so.1...
分类:
其他好文 时间:
2014-09-19 22:33:16
阅读次数:
243
编译环境准备:1、安装cmake:sudo wget http://www.cmake.org/files/v2.8/cmake-2.8.12.2.tar.gz#tar -zxvf cmake-2.8.12.2.tar.gz#cd cmake-2.8.12.2# ./configure#gmake#...
分类:
其他好文 时间:
2014-09-19 21:01:15
阅读次数:
201
fatal error: malformed or corrupted AST file: 'Unable to load module "/Users/apple/Library/Developer/Xcode/DerivedData/ModuleCache/1380X6D9Q9RXZ/Darwin.pcm": module file not found'
解决办法...
分类:
移动开发 时间:
2014-09-19 19:24:35
阅读次数:
340
需要把整个PCIE的工程移植到Linux下,当初就是用cmake来管理的工程的。但是命令行之类的还是需要改动。改动还不少,cmake里面很多东西都依赖于windows。包括我用cmake重新管理的工程IMageMagick,相当繁琐,工作量也大。当然,首先需要在Linux下安装SVN:http://...
分类:
系统相关 时间:
2014-09-19 18:59:05
阅读次数:
291
根据当前项目的情况,将build部分分为library和binary。编译的中间文件放在library和binary目录,结果放在lib和bin目录。首先,在根目录下建立CMakeLists.txt,将各lib和bin作为subdir加入。其次,建立个subdir的CMakeLists.txt。很幸...
分类:
其他好文 时间:
2014-09-19 18:54:15
阅读次数:
257
"Microsoft.crm.setup.Srsdataconnector UnregisterServer Action操作失败:Requested value 'geo' was not found"1. Ran the follow FixIt tool to remove the progr...
分类:
其他好文 时间:
2014-09-19 11:44:45
阅读次数:
201
References: Ref 1. CMake Practice – Cjacker; 我们将采用out-of-source外部构建,约定的构建目录是工程目录下的build自录。本小节的任务是让前面的Hello World更像一个工程,我们需要作的是:为工程添加一个子目录src,用来放置工程源代码...
分类:
其他好文 时间:
2014-09-19 07:42:45
阅读次数:
351
错误如下:Undefinedsymbolsforarchitecturei386:"_sqlite3_close",referencedfrom:-[DatabaseOperationcloseDatabase]inDatabaseOperation.o"_sqlite3_exec",referencedfrom:-[DatabaseOperationcreateTable:]inDatabaseOperation.o-[DatabaseOperationInsertTable:]inDatabase..
分类:
数据库 时间:
2014-09-19 02:21:25
阅读次数:
226
namespace?Common/Model;
....
class?....?{
????$pdo?=?new?PDO(...);
...
} 提示not found 原因便是开头使用了namespace,导致下面的PDO,被理解为Common/Model/PDO了,只需在第二行加上 use?PDO; 问...
分类:
其他好文 时间:
2014-09-18 20:49:04
阅读次数:
137
网上有个cmake practice的教程不错,够入门了,我当然不会去重复什么,just 搜搜。有变量和控制,基本上就齐活了。再有就是一些内置的函数和变量的掌握,主要还是要“知道”有哪些。控制部分,必须的if...elseif...else endifwhile...endwhileforeach....
分类:
其他好文 时间:
2014-09-18 20:19:34
阅读次数:
173