loicland / cut-pursuit

C++ implementation for the cut pursuit algorithm, with Matlab interfaces
MIT License
77 stars 24 forks source link

compile error with vs2017 #27

Closed sjwfzu2016 closed 4 years ago

sjwfzu2016 commented 4 years ago

Hi,doctor I met a problem when compile cut-pursuit with VS2017, boost1.69,python3.6
this is the problem: cutpursuit.obj : error LNK2001 Unresolved external symbol
struct boost::python::type_info __cdecl boost::python::detail::unwind_type<struct boost::python::converter::detail::unwind_type_id_helper,class boost::python::numpy::ndarray >(class boost::python::numpy::ndarray const &,struct boost::python::converter::detail::unwind_type_id_helper *)" (??$unwind_type@Uunwind_type_id_helper

loicland commented 4 years ago

You are compiling directly with VS? Did you make sure to include all source files?

This stack thread seems relevant.

sjwfzu2016 commented 4 years ago

I Modifed the unwind_type.h,then it work. thank you !