国内没有什么资料。
环境是fedora16 gcc4.6.2
去sourceforge下载源码
./configure --with-gtk --enable-unicode --disable-shared
make install
出现install finish就算成功了
这时候我先天真的cp -r $wxwidgetsource/include/wx /usr/include
g++ -o test test.cpp
出错。然后去stackoverflow上发贴
果断得到回答  
我们可以通过wx-config获得环境具体去看wx-config --help
下面就是我获取环境的:
wx-config --cxxflags --libs
然后把输出加到前面的,成功
大概就是g++ -o test test.cpp 'wx-config --cxxflags --libs'
再注意点。
g++  'wx-config --cxxflags --libs' -o test test.cpp这样会出现链接库找不到,估计是bug
http://ubuntuforums.org/showthread.php?p=11339484#post11339484
这个就是类似的问题,让我找到灵感解决这个最后的问题