发布时间:2016-05-18 15:19:39
首先,安装libfccp-dev。然后,基本使用方法如下:点击(此处)折叠或打开#include <libfccp/csv.h>#include <iostream>#include <string>int main(int argument_number, char **argument_array).........【阅读全文】
发布时间:2015-12-29 11:12:28
If you see this warning when using clang with ccache, you can use "-Qunused-arguments" to work around it. That is a ccache bug. It seems that ccache pass too many argument in linking operations (not sure about this).......【阅读全文】
发布时间:2015-08-29 13:48:19
If you got this: undefined reference to `vtable for...
Check your virtual function's definition.
virtual void foo(void) = 0;
.........【阅读全文】
发布时间:2015-06-13 16:42:02
编译的基本步骤:下载源代码:http://www.wxwidgets.org/,具体来说,要下载Windows zip那个包。解压缩放在某个目录,比如说d:\lib\wxWidgets下面。进入D:\lib\wxWidgets\build\msw,点击wx_vc12.sln(Visual Studio 2013点击这个,其他版本的自己选择)。Visual Studio打开以后,可以在上面.........【阅读全文】