Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've run this build a few times, with make clean in between and even removing the entire 'out' folder but it fails with different errors each time. Here are a few of the last segments of the output I got.

make: *** [out/host/linux-x86/obj/EXECUTABLES/zipalign_intermediates/zipalign] Error 1
make: *** Waiting for unfinished jobs....
true
preparing StaticLib: libc [including  out/target/product/wingray/obj/STATIC_LIBRARIES/libc_common_intermediates/libc_common.a]
target StaticLib: libdrmframeworkcommon (out/target/product/wingray/obj/STATIC_LIBRARIES/libdrmframeworkcommon_intermediates/libdrmframeworkcommon.a)
target StaticLib: libc (out/target/product/wingray/obj/STATIC_LIBRARIES/libc_intermediates/libc.a)
  1. next

external/valgrind/tsan/thread_sanitizer.cc:3257: warning: unused parameter 'create_new_if_need' In file included from external/stlport/stlport/stl/_algobase.h:721, from external/stlport/stlport/stl/_tree.h:55, from external/stlport/stlport/stl/_set.h:35, from external/stlport/stlport/set:37, from external/valgrind/tsan/ts_util.h:128, from external/valgrind/tsan/thread_sanitizer.h:34, from external/valgrind/tsan/thread_sanitizer.cc:35: external/stlport/stlport/stl/_algobase.c: In instantiation of '_ForwardIter std::priv::__lower_bound(_ForwardIter, _ForwardIter, const _Tp&, _Compare1, _Compare2, _Distance*) [with _ForwardIter = const LID*, _Tp = LID, _Compare1 = std::priv::__less_2<LID, LID>, _Compare2 = std::priv::__less_2<LID, LID>, _Distance = ptrdiff_t]': external/stlport/stlport/stl/_algo.h:487: instantiated from '_ForwardIter std::lower_bound(_ForwardIter, _ForwardIter, const _Tp&) [with _ForwardIter = const LID*, _Tp = LID]' external/valgrind/tsan/dense_multimap.h:67: instantiated from 'DenseMultimap<T, kPreallocatedElements>::DenseMultimap(const DenseMultimap<T, kPreallocatedElements>&, const T&) [with T = LID, int kPreallocatedElements = 3]' external/valgrind/tsan/thread_sanitizer.cc:867: instantiated from here external/stlport/stlport/stl/_algobase.c:454: warning: unused parameter '__comp2' external/stlport/stlport/stl/_algobase.c: In instantiation of '_ForwardIter std::priv::__lower_bound(_ForwardIter, _ForwardIter, const _Tp&, _Compare1, _Compare2, _Distance*) [with _ForwardIter = const size_t*, _Tp = size_t, _Compare1 = std::less<unsigned int>, _Compare2 = std::less<unsigned int>, _Distance = ptrdiff_t]': external/stlport/stlport/stl/_hashtable.c:74: instantiated from 'static size_t std::priv::_Stl_prime<_Dummy>::_S_next_size(size_t) [with _Dummy = bool]' external/stlport/stlport/stl/_hashtable.h:596: instantiated from 'void std::hashtable<_Val, _Key, _HF, _Traits, _ExK, _EqK, _All>::_M_initialize_buckets(size_t) [with _Val = std::pair<SegmentSet* const, SSID>, _Key = SegmentSet*, _HF = SegmentSet::SSHash, _Traits = std::priv::_UnorderedMapTraitsT<std::pair<SegmentSet* const, SSID> >, _ExK = std::priv::_Select1st<std::pair<SegmentSet* const, SSID> >, _EqK = SegmentSet::SSEq, _All = std::allocator<std::pair<SegmentSet* const, SSID> >]' external/stlport/stlport/stl/_hashtable.h:330: instantiated from 'std::hashtable<_Val, _Key, _HF, _Traits, _ExK, _EqK, _All>::hashtable(size_t, const _HF&, const _EqK&, const _All&) [with _Val = std::pair<SegmentSet* const, SSID>, _Key = SegmentSet*, _HF = SegmentSet::SSHash, _Traits = std::priv::_UnorderedMapTraitsT<std::pair<SegmentSet* const, SSID> >, _ExK = std::priv::_Select1st<std::pair<SegmentSet* const, SSID> >, _EqK = SegmentSet::SSEq, _All = std::allocator<std::pair<SegmentSet* const, SSID> >]' external/stlport/stlport/stl/_unordered_map.h:86: instantiated from 'std::tr1::unordered_map<_Key, _Tp, _HashFcn, _EqualKey, _Alloc>::unordered_map(typename std::hashtable<std::pair<const _Key, _Tp>, _Key, _HashFcn, std::priv::_UnorderedMapTraitsT<std::pair<const _Key, _Tp> >, std::priv::_Select1st<std::pair<const _Key, _Tp> >, _EqualKey, _Alloc>::size_type, const typename std::hashtable<std::pair<const _Key, _Tp>, _Key, _HashFcn, std::priv::_UnorderedMapTraitsT<std::pair<const _Key, _Tp> >, std::priv::_Select1st<std::pair<const _Key, _Tp> >, _EqualKey, _Alloc>::hasher&, const typename std::hashtable<std::pair<const _Key, _Tp>, _Key, _HashFcn, std::priv::_UnorderedMapTraitsT<std::pair<const _Key, _Tp> >, std::priv::_Select1st<std::pair<const _Key, _Tp> >, _EqualKey, _Alloc>::key_equal&, const typename std::hashtable<std::pair<const _Key, _Tp>, _Key, _HashFcn, std::priv::_UnorderedMapTraitsT<std::pair<const _Key, _Tp> >, std::priv::_Select1st<std::pair<const _Key, _Tp> >, _EqualKey, _Alloc>::allocator_type&) [with _Key = SegmentSet*, _Tp = SSID, _HashFcn = SegmentSet::SSHash, _EqualKey = SegmentSet::SSEq, _Alloc = std::allocator<std::pair<SegmentSet* const, SSID> >]' external/valgrind/tsan/thread_sanitizer.cc:2404: instantiated from here external/stlport/stlport/stl/_algobase.c:454: warning: unused parameter '__comp2'

share|improve this question
I think that you've not downloaded the whole sources of Android. Sometimes this happens. Try to download Android sources from scratch once again and then run build. – Yury Aug 14 '12 at 8:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.