android 最新ソースの make でコケた
こんなエラーメッセージが出て。。。
make: *** [out/host/linux-x86/obj/STATIC_LIBRARIES/libMesa_intermediates/src/glsl/linker.o] エラー1
環境
- ubuntu 11.10 (64bit)
- あとは全部ここに書いてあるビルド環境
エラーメッセージでググったらすぐ解決した
まあ、備忘録ってことで。(ここを参照のこと)
I'm hitting this too. The bug is the use of the offsetof() macro. Adding a "#include <stddef.h>" to linker.cpp fixes the issue for me.とのことなので、
$ vi external/mesa3d/src/glsl/linker.cpp
#include "main/shaderobj.h" #include <stddef.h> /** * Visitor that determines whether or not a variable is ever written. */ class find_assignment_visitor : public ir_hierarchical_visitor {したら、一応最後まで走りましたよっと。
0 件のコメント:
コメントを投稿