Ubuntu 11.10 amd64
ICS
In file included from external/oprofile/libpp/arrange_profiles.cpp:24:0:
external/oprofile/libpp/format_output.h:94:22: error: reference ‘counts’ cannot be declared ‘mutable’ [-fpermissive]
make: *** [out/host/linux-x86/obj/STATIC_LIBRARIES/liboprofile_pp_intermediates/arrange_profiles.o] 오류 1
external/oprofile/libpp/format_output.h 파일의 94번행
========================================================
- mutable counts_t & counts;
+ counts_t & counts;
========================================================
위와 같이 수정해주자.
ICS
In file included from external/oprofile/libpp/arrange_profiles.cpp:24:0:
external/oprofile/libpp/format_output.h:94:22: error: reference ‘counts’ cannot be declared ‘mutable’ [-fpermissive]
make: *** [out/host/linux-x86/obj/STATIC_LIBRARIES/liboprofile_pp_intermediates/arrange_profiles.o] 오류 1
external/oprofile/libpp/format_output.h 파일의 94번행
========================================================
- mutable counts_t & counts;
+ counts_t & counts;
========================================================
위와 같이 수정해주자.