google protobuff编译过程

遇到好多错误,写在这里,方便查看

1.相关网址

http://code.google.com/intl/zh-CN/apis/protocolbuffers/docs/encoding.html

http://code.google.com/p/protobuf/downloads/list

2.编译环境

cygwin

protobuf-2.4.1

3.configure: error: C compiler cannot create executables错误解决

 export LIBS=

 export CFLAGS=

4.windows下面编译protobuf,生成.a文件供android NDK使用

打开cygwin

cd 到protobuf的目录下:

依次执行命令:

./configure
make
make check
make install


最后到目录下查看是否生成:\protobuf-2.4.2\src\.libs

到cygwin目录下查看生成的include头文件:\cygwin\usr\local\include


5. objdump -x libsuper3DHomeActivity_jni.so | grep NEEDED


你可能感兴趣的:(c,android,Google,include,compiler)