Hello,
Following the instructions in doc for unix, i made :
make -f makefile.unix # Headless litecoin
As a result i got :
In file included from /usr/include/boost/iterator/iterator_categories.hpp:22:0,
from /usr/include/boost/iterator/iterator_facade.hpp:14,
from /usr/include/boost/range/iterator_range_core.hpp:27,
from /usr/include/boost/range/iterator_range.hpp:13,
from /usr/include/boost/assign/list_of.hpp:20,
from rpcrawtransaction.cpp:6:
/usr/include/boost/variant/get.hpp: In instantiation of ‘typename boost::add_reference
/usr/include/boost/variant/get.hpp:284:25: required from ‘typename boost::add_reference
rpcrawtransaction.cpp:242:77: required from here
/usr/include/boost/variant/get.hpp:178:5: error: invalid application of ‘sizeof’ to incomplete type ‘boost::STATIC_ASSERTION_FAILURE
BOOST_STATIC_ASSERT_MSG(
^
makefile.unix:186: recipe for target 'obj/rpcrawtransaction.o' failed
make: *** [obj/rpcrawtransaction.o] Error 1
Thank you for your consideration.
basicaly he tells me to go rpcrawtransaction.cpp and check line 242 ==>
const CScriptID& hash = boost::get just remove const and &
It's an error due to boost incompatible version : you could try this, from FTC :
const CScriptID& hash = boost::get<const CScriptID>(address);
const CScriptID& hash = boost::get<const CScriptID&>(address);
CScript redeemScript;
what do you mean by FTC ?
http:/github.com/Feathercoin/Feathercoin
thank you
:720: error: parse error before "DEMOD_PID_FILTER"
/home/vishal/projects/factory_k5l/K5L_ECOS/Keltic/DDI_Package/ddi_pkg_ecos/cus_mstar/project/mstar_demo/../../../../../../DDI_Misc/cus_mstar/api/frontend/apiDigiTuner.h:720: warning: function declaration isn't a prototype
ddi_target.mk:443: recipe for target 'obj/dtv.o' failed
make[1]: * [obj/dtv.o] Error 1
make[1]: Leaving directory '/home/vishal/projects/factory_k5l/K5L_ECOS/Keltic/DDI_Package/ddi_pkg_ecos/cus_mstar/project/mstar_demo'
Makefile:145: recipe for target 'image' failed
make: * [image] Error 2
vishal@ubuntu:~/projects/factory_k5l/K5L_ECOS/Keltic/DDI_Package/ddi_pkg_ecos/cus_mstar/project/mstar_demo$ recipe for target 'obj/dtv.o' failed
No command 'recipe' found, did you mean:
Command 'recite' from package 'recite' (universe)
recipe: command not found
how to solve this error?
Most helpful comment
basicaly he tells me to go rpcrawtransaction.cpp and check line 242 ==>
const CScriptID& hash = boost::get
just remove const and &