https://bitcoinqtmsvc2012.codeplex.com/SourceControl/latest#MSVC/BuildHelpers/README-FIRST.md
As far as nasm goes, I am using the nasm that comes with VS. But in the past I have used the Netwide Assembler. Is there any advantage to switching?
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
templateclass vector
reference operator[](size_type _Pos)
{ // subscript mutable sequence
...
_SCL_SECURE_VALIDATE_RANGE(_Pos < size());
#ifndef _MSC_VER
void insert(iterator it, std::vector::const_iterator first,
std::vector::const_iterator last)
{
assert(last - first >= 0);
if (it == vch.begin() + nReadPos && (unsigned int)(last - first) <= nReadPos)
{
// special case for inserting at the front when there's room
nReadPos -= (last - first);
memcpy(&vch[nReadPos], &first[0], last - first);
}
else
vch.insert(it, first, last);
}
#endif
Compiling...
main.cpp
...\src\wallet.h(864) : error C2664:
'void CDataStream::insert(CDataStream::iterator,CDataStream::size_type,const char &)' :
cannot convert parameter 2 from 'std::_Vector_const_iterator<_Ty,_Alloc>' to
'CDataStream::size_type'
with
[
_Ty=char,
_Alloc=std::allocator
]
No user-defined-conversion operator available that can perform this conversion,
or the operator cannot be called
Build Time 0:08
Build log was saved at "file://...\Release\BuildLog.htm"
Bitcoin086CduS - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Compiling...
main.cpp
D:\Program Files\Microsoft Visual Studio 8\VC\include\xtree(1174) : error C3848:
expression having type 'const CBlockIndexWorkComparator' would lose some
const-volatile qualifiers in order to call 'bool CBlockIndexWorkComparator::operator ()
(CBlockIndex *,CBlockIndex *)'
D:\Program Files\Microsoft Visual Studio 8\VC\include\xtree(1169) :
while compiling class template member function 'std::_Tree_nod<_Traits>::_Node
*std::_Tree<_Traits>::_Lbound(CBlockIndex *const &) const'
with
[
_Traits=std::_Tset_traitsstd::allocator ,false>
]
D:\Program Files\Microsoft Visual Studio 8\VC\include\set(69) :
see reference to class template instantiation 'std::_Tree<_Traits>' being compiled
with
[
_Traits=std::_Tset_traitsstd::allocator ,false>
]
.\src\main.cpp(59) : see reference to class template instantiation 'std::set<_Kty,_Pr>'
being compiled
with
[
_Kty=CBlockIndex *,
_Pr=CBlockIndexWorkComparator
]
Build Time 0:15
Build log was saved at "file://...\Release\BuildLog.htm"
Bitcoin086CduS - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
struct CBlockIndexWorkComparator
{
#ifdef _MSC_VER
bool operator()(CBlockIndex *pa, CBlockIndex *pb) const
#else
bool operator()(CBlockIndex *pa, CBlockIndex *pb)
#endif
{
if (pa->nChainWork > pb->nChainWork) return false;
if (pa->nChainWork < pb->nChainWork) return true;
if (pa->GetBlockHash() < pb->GetBlockHash()) return false;
if (pa->GetBlockHash() > pb->GetBlockHash()) return true;
return false; // identical blocks
}
};
'..\..\..\bitcoindeps\qt-everywhere-opensource-src-5.1.1\qtbase\bin\lrelease.exe' is not recognized as an internal or external command,