dependencies/include\carla/Buffer.h(325): warning C4267: “参数”: 从“size_t”转换到“carla::Buffer::size_type”,可能丢失数据
source/libcarla/libcarla.cpp(116): warning C4101: “e”: 未引用的局部变量
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VCTools\MSVC\14.15.26726\include\type_traits(16707566): note: 参见对正在编译的函数 模板 实例化“void MakeCallback::
with
[
_Ty=boost::shared_ptr
]
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VCTools\MSVC\14.15.26726\includefunctional(1279): note: 参见对正在编译的 类 模板 实例化 "std::_Is_invocable_r<_Ret,_Fx,boost::shared_ptr
with
[
_Ret=void,
_Fx=MakeCallback::
T=carla::sensor::SensorData
]
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VCTools\MSVC\14.15.26726\includefunctional(1277): note: 查看指向正在编译的变量模板“const bool conjunction_v
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VCTools\MSVC\14.15.26726\includefunctional(1499): note: 参见对正在编译的 别名 模板 实例化 "_Enable_if_callable_t
with
[
T=carla::sensor::SensorData
]
dependencies/include\boost/bind/placeholders.hpp(54): note: 参见对正在编译的 类 模板 实例化 "boost::arg<9>" 的引用
dependencies/include\boost/bind/placeholders.hpp(53): note: 参见对正在编译的 类 模板 实例化 "boost::arg<8>" 的引用
dependencies/include\boost/bind/placeholders.hpp(52): note: 参见对正在编译的 类 模板 实例化 "boost::arg<7>" 的引用
dependencies/include\boost/bind/placeholders.hpp(51): note: 参见对正在编译的 类 模板 实例化 "boost::arg<6>" 的引用
dependencies/include\boost/bind/placeholders.hpp(50): note: 参见对正在编译的 类 模板 实例化 "boost::arg<5>" 的引用
dependencies/include\boost/bind/placeholders.hpp(49): note: 参见对正在编译的 类 模板 实例化 "boost::arg<4>" 的引用
dependencies/include\boost/bind/placeholders.hpp(48): note: 参见对正在编译的 类 模板 实例化 "boost::arg<3>" 的引用
dependencies/include\boost/bind/placeholders.hpp(47): note: 参见对正在编译的 类 模板 实例化 "boost::arg<2>" 的引用
dependencies/include\boost/bind/placeholders.hpp(46): note: 参见对正在编译的 类 模板 实例化 "boost::arg<1>" 的引用
dependencies/include\carla/image/ImageIOConfig.h(81): error C2338: No image format supported, please compile with at least one of LIBCARLA_IMAGE_WITH_PNG_SUPPORT, LIBCARLA_IMAGE_WITH_JPEG_SUPPORT, or LIBCARLA_IMAGE_WITH_TIFF_SUPPORT
dependencies/include\carla/image/ImageIOConfig.h(299): error C2338: Default IO needs to be supported.
dependencies/include\carla/image/ImageIOConfig.h(320): note: 参见对正在编译的 类 模板 实例化 "carla::image::io::detail::io_any
error: command 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.15.26726\bin\HostX86\x64\cl.exe' failed with exit status 2
dependencies/include\carla/image/ImageIOConfig.h(81): error C2338: No image format supported, please compile with at least one of LIBCARLA_IMAGE_WITH_PNG_SUPPORT, LIBCARLA_IMAGE_WITH_JPEG_SUPPORT, or LIBCARLA_IMAGE_WITH_TIFF_SUPPORT
dependencies/include\carla/image/ImageIOConfig.h(299): error C2338: Default IO needs to be supported.
dependencies/include\carla/image/ImageIOConfig.h(320): note: 参见对正在编译的 类 模板 实例化 "carla::image::io::detail::io_any
error: command 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.15.26726\bin\HostX86\x64\cl.exe' failed with exit status 2
Hi,
Sorry for the delay. Currently building PythonAPI in Windows is a bit painful as it has dependencies on external libraries as LibPNG which depends on ZLIB. So, for now, I made some quick scripts to build the dependencies and manually copy the binaries to the PythonAPI dependencies folder.
Files needed to update: PythonAPI\setup.py
Next step is to build libpng {batch file} and zlib {powershell file}.
bin where you will find the includes for libpng and zlib and the lib folder for the binaries.bin\png and bin\zlib to PythonAPI\dependencies\include (keep folder structure)bin\libs\* to PythonAPI\dependencies\libIf the folder PythonAPI\dependencies\ doesn't exist execute first make LibCarla. Now that we have everything executing make PythonAPI it should build with no problem the egg file.
IMPORTANT!!!
Hi,
I have managed to build zlib using the powershell script provided.
However, when trying to build libpng using the batch script I am receiving the following error:
\BuildWin64\Intermediatepng.obj : fatal error LNK1112: module machine type 'x86' conflicts with target machine type 'x64'
Do you know how this problem can be solved?
Thanks in advance!
PowerShell script should also execute batch file. Also important, load the command line tools for x64 and execute the powershell script from command line as there is no easy way to do it from powershell.
I solved that error, but now, when I execute make PythonAPI I get the following:
LINK : fatal error LNK1181: cannot open input file 'D:\FixedCarla\carlaPythonAPI\dependencies\lib\libboost_python37-vc141-mt-x64-1_67.lib'
I looked in my lib directory and found that I have libboost_python36-vc141-mt-x64-1_67.lib
Have I done something wrong when building CARLA for the first time or something?
Thanks in advance!
It sounds like you have both versions of python installed, is it right? And while boost is builded is using python3.6 and 3.7 for pythonapi. Take a look at the windows environment variable PATH to see if something strange there (remember that you have one per user and the system one).
I have Python 3.5 and 2.7 installed.
make launch seems to build without error now.
make LibCarla builds.
make PythonAPI is not building...
The ps1 and bat files above build successfully, and I copied over the includes and libs.
But I still get this:
-[BuildLibCarla]: LibCarla server has been successfully installed in "C:/Users/jdelrocc/Documents/carla/Unreal\CarlaUE4\Plugins\Carla\CarlaDependencies"!
-[BuildLibCarla]: LibCarla client has been successfully installed in "C:/Users/jdelrocc/Documents/carla/PythonAPI\dependencies"!
-[BuildPythonAPI]: [Batch params]: --py3
INFO: Could not find files for the given pattern(s).
-[BuildPythonAPI]: [ERROR] An error ocurred while executing the py.
-[BuildPythonAPI]: [ERROR] Possible causes:
-[BuildPythonAPI]: [ERROR] - Make sure "py" is installed.
-[BuildPythonAPI]: [ERROR] - Make sure it is available on your Windows "py".
make: *** [PythonAPI] Error 1
If I pip list, "py" module is installed.
Is my Python configuration not setup right for Carla build system? Am I missing necessary environment variables or something?
@Andrei Jianu,
thank you for providing this, I had to do the following for me to work :
1- add Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass at the beginning of zlib.ps1
2- install install v140 build tools as explained in the following link https://developercommunity.visualstudio.com/content/problem/48806/cant-find-v140-in-visual-studio-2017.html
3- as you mentioned I ran the command powershell ./zlib.ps1 from inside the x64 native tools command prompt for VS2017
Thanks again
Thank you @M-Hammod, I updated my post making reference to yours in case of any problem related to powershell permissions or missing build tools.
I am having the same issue as @delrocco. Can someone help me what am I doing wrong?
I have python 3.5.5 installed.

I am having an issue while building PythonAPI.
Below is my error log.
c:\carlapythonapi\source\libcarla\Blueprint.cpp(155): error C2672: 'boost::python::class_
However, when I look for "dist" folder in PythonAPI folder, there is none.
Can someone point me what am I doing wrong?
I did fresh installations twice and couldn't find whats wrong.
I am trying to build CARLA 0.9.2 from source on Windows.
Initially I was having the same problem as @delrocco . Then I changed py to python in Util/BuildTools/BuildPythonAPI.bat and that got rid of the issue of not finding py despite it being installed in the current Python environment.
Now I am stuck with an error similar to the one encountered by @sriharshakunda but my error log is a little different. After some hunting around, it seems to me that the problem stems from the macro definitions in PythonAPI\dependencies\include\boost\python\signature.hpp not being expanded correctly, because in the header file, it looks like there are supposed to be 2 different overloaded definitions of the function get_signature, one taking a single argument and the other taking 2 arguments, but only the first version is actually being generated, and the build process is encountering an error every time get_signature is being called with 2 arguments. But I am not sure how to solve this problem.
And, contrary to the build log, there is no PythonAPI/dist directory.
The log:
Building Python API for Python 3.
compiling:
- source/libcarla/libcarla.cpp
- dependencies/include/carla\Buffer.cpp
- dependencies/include/carla\FileSystem.cpp
- dependencies/include/carla\StringUtil.cpp
- dependencies/include/carla\client\Actor.cpp
- dependencies/include/carla\client\ActorAttribute.cpp
- dependencies/include/carla\client\ActorBlueprint.cpp
- dependencies/include/carla\client\ActorList.cpp
- dependencies/include/carla\client\BlueprintLibrary.cpp
- dependencies/include/carla\client\DebugHelper.cpp
- dependencies/include/carla\client\LaneDetector.cpp
- dependencies/include/carla\client\Map.cpp
- dependencies/include/carla\client\ServerSideSensor.cpp
- dependencies/include/carla\client\TrafficLight.cpp
- dependencies/include/carla\client\Vehicle.cpp
- dependencies/include/carla\client\Waypoint.cpp
- dependencies/include/carla\client\World.cpp
- dependencies/include/carla\client\detail\ActorFactory.cpp
- dependencies/include/carla\client\detail\ActorState.cpp
- dependencies/include/carla\client\detail\ActorVariant.cpp
- dependencies/include/carla\client\detail\Client.cpp
- dependencies/include/carla\client\detail\Episode.cpp
- dependencies/include/carla\client\detail\EpisodeProxy.cpp
- dependencies/include/carla\client\detail\EpisodeState.cpp
- dependencies/include/carla\client\detail\Simulator.cpp
- dependencies/include/carla\geom\Math.cpp
- dependencies/include/carla\opendrive\OpenDrive.cpp
- dependencies/include/carla\opendrive\parser\GeometryParser.cpp
- dependencies/include/carla\opendrive\parser\JunctionParser.cpp
- dependencies/include/carla\opendrive\parser\LaneParser.cpp
- dependencies/include/carla\opendrive\parser\ProfilesParser.cpp
- dependencies/include/carla\opendrive\parser\RoadLinkParser.cpp
- dependencies/include/carla\opendrive\parser\TrafficSignalsParser.cpp
- dependencies/include/carla\opendrive\parser\pugixml\pugixml.cpp
- dependencies/include/carla\pointcloud\PointCloudIO.cpp
- dependencies/include/carla\profiler\LifetimeProfiled.cpp
- dependencies/include/carla\profiler\Profiler.cpp
- dependencies/include/carla\road\Map.cpp
- dependencies/include/carla\road\MapBuilder.cpp
- dependencies/include/carla\road\WaypointGenerator.cpp
- dependencies/include/carla\road\element\LaneCrossingCalculator.cpp
- dependencies/include/carla\road\element\Waypoint.cpp
- dependencies/include/carla\road\element\cephes\fresnl.cpp
- dependencies/include/carla\road\element\cephes\polevl.cpp
- dependencies/include/carla\rpc\Server.cpp
- dependencies/include/carla\rpc\WeatherParameters.cpp
- dependencies/include/carla\sensor\Deserializer.cpp
- dependencies/include/carla\sensor\s11n\CollisionEventSerializer.cpp
- dependencies/include/carla\sensor\s11n\EpisodeStateSerializer.cpp
- dependencies/include/carla\sensor\s11n\ImageSerializer.cpp
- dependencies/include/carla\sensor\s11n\LidarSerializer.cpp
- dependencies/include/carla\sensor\s11n\SensorHeaderSerializer.cpp
- dependencies/include/carla\streaming\detail\Dispatcher.cpp
- dependencies/include/carla\streaming\detail\StreamStateBase.cpp
- dependencies/include/carla\streaming\detail\Token.cpp
- dependencies/include/carla\streaming\detail\tcp\Client.cpp
- dependencies/include/carla\streaming\detail\tcp\Server.cpp
- dependencies/include/carla\streaming\detail\tcp\ServerSession.cpp
running bdist_egg
running egg_info
writing source\carla.egg-info\PKG-INFO
writing dependency_links to source\carla.egg-info\dependency_links.txt
writing top-level names to source\carla.egg-info\top_level.txt
reading manifest file 'source\carla.egg-info\SOURCES.txt'
writing manifest file 'source\carla.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
running build_py
running build_ext
building 'carla.libcarla' extension
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -Idependencies/include -Idependencies/include/zlib -Idependencies/include/png -IC:\Users\sagni\Anaconda3\envs\chacks\include -IC:\Users\sagni\Anaconda3\envs\chacks\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\include\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\cppwinrt" "-IC:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\include\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\cppwinrt" /EHsc /Tpsource/libcarla/libcarla.cpp /Fobuild\temp.win-amd64-3.6\Release\source/libcarla/libcarla.obj /DBOOST_ALL_NO_LIB /DBOOST_PYTHON_STATIC_LIB /DBOOST_ERROR_CODE_HEADER_ONLY /D_WIN32_WINNT=0x0501 /DLIBCARLA_WITH_PYTHON_SUPPORT -DLIBCARLA_IMAGE_WITH_PNG_SUPPORT=true
libcarla.cpp
dependencies/include\carla/Buffer.h(325): warning C4267: 'argument': conversion from 'size_t' to 'carla::Buffer::size_type', possible loss of data
source/libcarla/libcarla.cpp(116): warning C4101: 'e': unreferenced local variable
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\include\type_traits(16707566): note: see reference to function template instantiation 'void MakeCallback::<lambda_95b4ba70dbee63f70695d6205b045391>::operator ()<_Ty>(_Ty) const' being compiled
with
[
_Ty=boost::shared_ptr<carla::sensor::SensorData>
]
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\include\type_traits(1871): note: see reference to alias template instantiation 'std::_Is_invocable_r_<void,MakeCallback::<lambda_95b4ba70dbee63f70695d6205b045391>&,boost::shared_ptr<T>>' being compiled
with
[
T=carla::sensor::SensorData
]
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\include\functional(1279): note: see reference to class template instantiation 'std::_Is_invocable_r<_Ret,_Fx,boost::shared_ptr<T>>' being compiled
with
[
_Ret=void,
_Fx=MakeCallback::<lambda_95b4ba70dbee63f70695d6205b045391> &,
T=carla::sensor::SensorData
]
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\include\functional(1277): note: see reference to variable template 'const bool conjunction_v<std::negation<std::is_same<<lambda_95b4ba70dbee63f70695d6205b045391>,std::function<void __cdecl(boost::shared_ptr<carla::sensor::SensorData>)> > >,std::_Is_invocable_r<void,<lambda_95b4ba70dbee63f70695d6205b045391> &,boost::shared_ptr<carla::sensor::SensorData> > >' being compiled
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.16.27023\include\functional(1499): note: see reference to alias template instantiation 'std::_Func_class<_Ret,boost::shared_ptr<T>>::_Enable_if_callable_t<_Fx&,std::function<void (boost::shared_ptr<T>)>>' being compiled
with
[
_Ret=void,
T=carla::sensor::SensorData,
_Fx=MakeCallback::<lambda_95b4ba70dbee63f70695d6205b045391>
]
dependencies/include\boost/bind/placeholders.hpp(54): note: see reference to class template instantiation 'boost::arg<9>' being compiled
dependencies/include\boost/bind/placeholders.hpp(53): note: see reference to class template instantiation 'boost::arg<8>' being compiled
dependencies/include\boost/bind/placeholders.hpp(52): note: see reference to class template instantiation 'boost::arg<7>' being compiled
dependencies/include\boost/bind/placeholders.hpp(51): note: see reference to class template instantiation 'boost::arg<6>' being compiled
dependencies/include\boost/bind/placeholders.hpp(50): note: see reference to class template instantiation 'boost::arg<5>' being compiled
dependencies/include\boost/bind/placeholders.hpp(49): note: see reference to class template instantiation 'boost::arg<4>' being compiled
dependencies/include\boost/bind/placeholders.hpp(48): note: see reference to class template instantiation 'boost::arg<3>' being compiled
dependencies/include\boost/bind/placeholders.hpp(47): note: see reference to class template instantiation 'boost::arg<2>' being compiled
dependencies/include\boost/bind/placeholders.hpp(46): note: see reference to class template instantiation 'boost::arg<1>' being compiled
dependencies/include/png\png.h(522): warning C4005: 'int_p_NULL': macro redefinition
dependencies/include\carla/image/ImageIOConfig.h(48): note: see previous definition of 'int_p_NULL'
dependencies/include\boost/python/class.hpp(497): error C2672: 'boost::python::detail::get_signature': no matching overloaded function found
dependencies/include\boost/python/class.hpp(233): note: see reference to function template instantiation 'void boost::python::class_<carla::client::ActorAttribute,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>::def_impl<carla::client::ActorAttribute,F,boost::python::detail::def_helper<const char *,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>>(T *,const char *,Fn,const Helper &,...)' being compiled
with
[
F=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const,
T=carla::client::ActorAttribute,
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const,
Helper=boost::python::detail::def_helper<const char *,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>
]
dependencies/include\boost/python/class.hpp(231): note: see reference to function template instantiation 'void boost::python::class_<carla::client::ActorAttribute,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>::def_impl<carla::client::ActorAttribute,F,boost::python::detail::def_helper<const char *,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>>(T *,const char *,Fn,const Helper &,...)' being compiled
with
[
F=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const,
T=carla::client::ActorAttribute,
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const,
Helper=boost::python::detail::def_helper<const char *,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>
]
d:\sagnid\carla_092\carla\pythonapi\source\libcarla\Blueprint.cpp(115): note: see reference to function template instantiation 'boost::python::class_<carla::client::ActorAttribute,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified> &boost::python::class_<carla::client::ActorAttribute,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>::def<bool(__cdecl carla::client::ActorAttribute::* )(const T &) const>(const char *,F)' being compiled
with
[
T=bool,
F=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
d:\sagnid\carla_092\carla\pythonapi\source\libcarla\Blueprint.cpp(132): note: see reference to function template instantiation 'boost::python::class_<carla::client::ActorAttribute,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified> &boost::python::class_<carla::client::ActorAttribute,boost::python::detail::not_specified,boost::python::detail::not_specified,boost::python::detail::not_specified>::def<bool(__cdecl carla::client::ActorAttribute::* )(const T &) const>(const char *,F)' being compiled
with
[
T=bool,
F=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector17<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector17<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector17<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14),Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector17<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14),Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector17<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14))': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector16<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> boost::python::detail::get_signature(RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14),void *)': could not deduce template argument for 'RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(194): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector16<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector16<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector16<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13),Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector16<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13),Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector16<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13))': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector15<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> boost::python::detail::get_signature(RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13),void *)': could not deduce template argument for 'RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(194): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector15<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector15<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector15<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12),Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector15<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12),Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector15<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12))': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector14<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> boost::python::detail::get_signature(RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12),void *)': could not deduce template argument for 'RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(194): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector14<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector14<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector14<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11),Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector14<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11),Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector14<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11))': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector13<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> boost::python::detail::get_signature(RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11),void *)': could not deduce template argument for 'RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(194): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector13<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector13<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector13<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10),Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector13<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10),Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector13<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10))': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector12<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> boost::python::detail::get_signature(RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10),void *)': could not deduce template argument for 'RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(194): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector12<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector12<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector12<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9),Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector12<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9),Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector12<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9))': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector11<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> boost::python::detail::get_signature(RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9),void *)': could not deduce template argument for 'RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8,T9)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(194): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector11<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector11<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector11<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8),Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector11<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8),Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector11<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7,T8> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7,T8))': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector10<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> boost::python::detail::get_signature(RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8),void *)': could not deduce template argument for 'RT (__cdecl *)(T0,T1,T2,T3,T4,T5,T6,T7,T8)' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(194): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector10<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector10<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector10<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector10<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'const carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector10<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector10<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) volatile)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2782: 'boost::mpl::vector10<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) const,Target *)': template parameter 'ClassT' is ambiguous
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): note: could be 'carla::client::ActorAttributeValueAccess'
dependencies/include\boost/python/class.hpp(497): note: or 'carla::client::ActorAttribute'
dependencies/include\boost/python/class.hpp(497): error C2784: 'boost::mpl::vector10<RT,most_derived<Target,ClassT>::type&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) const,Target *)': could not deduce template argument for 'RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) const' from 'Fn'
with
[
Fn=bool (__cdecl carla::client::ActorAttribute::* )(const bool &) const
]
dependencies/include\boost/python/signature.hpp(236): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): error C2780: 'boost::mpl::vector10<RT,ClassT&,T0,T1,T2,T3,T4,T5,T6,T7> boost::python::detail::get_signature(RT (__cdecl ClassT::* )(T0,T1,T2,T3,T4,T5,T6,T7) const)': expects 1 arguments - 2 provided
dependencies/include\boost/python/signature.hpp(218): note: see declaration of 'boost::python::detail::get_signature'
dependencies/include\boost/python/class.hpp(497): fatal error C1003: error count exceeds 100; stopping compilation
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Tools\\MSVC\\14.16.27023\\bin\\HostX86\\x64\\cl.exe' failed with exit status 2
-[BuildPythonAPI]: Carla lib for python has been successfully installed in "D:/sagniD/carla_092/carla/PythonAPI\dist"!
@sagnibak I had the same problem. The only successful build I had so far was 0.9.0 (https://github.com/carla-simulator/carla/tree/fix_vs2017_build_solution). I believe 0.9.X, PythonAPI is still work in progress on windows platform.
@sriharshakunda @sagnibak I had exactly the same problems as you two. Someone mentioned branch fix_vs2017_build_solution does not support server. Any progress made so far?
Hi @iFuSiiOnzZ ,
Thanks a lot for your scripts.
Though I failed building zlibstat.lib using the script directly (got strange internal compiler errors), I opened the VS project it generated and built the lib from there.
Still working on make PythonAPI. I'm getting similar error as @andreimihalcea97's comment.
I have Python 3.5 and 2.7 installed.
make launchseems to build without error now.
make LibCarlabuilds.
make PythonAPIis not building...
The ps1 and bat files above build successfully, and I copied over the includes and libs.
But I still get this:-[BuildLibCarla]: LibCarla server has been successfully installed in "C:/Users/jdelrocc/Documents/carla/Unreal\CarlaUE4\Plugins\Carla\CarlaDependencies"! -[BuildLibCarla]: LibCarla client has been successfully installed in "C:/Users/jdelrocc/Documents/carla/PythonAPI\dependencies"! -[BuildPythonAPI]: [Batch params]: --py3 INFO: Could not find files for the given pattern(s). -[BuildPythonAPI]: [ERROR] An error ocurred while executing the py. -[BuildPythonAPI]: [ERROR] Possible causes: -[BuildPythonAPI]: [ERROR] - Make sure "py" is installed. -[BuildPythonAPI]: [ERROR] - Make sure it is available on your Windows "py". make: *** [PythonAPI] Error 1If I pip list, "py" module is installed.
Is my Python configuration not setup right for Carla build system? Am I missing necessary environment variables or something?
Hi, I am trying to build pythonapi for carla ,, I download the two file mentioned above
https://pastebin.com/LgsnYQkQ
https://pastebin.com/Qe2hTpEU
but when I am trying to excecute it, getting this error
C:\MinGW\fix2>& $BuildPNGBAT
C:\MinGW\fix2>.\Qe2hTpEU.bat
C:\MinGW\fix2>New-Item -ItemType Directory -Path ".bin"
'New-Item' is not recognized as an internal or external command,
operable program or batch file.
C:\MinGW\fix2>New-Item -ItemType Directory -Path ".binpng"
'New-Item' is not recognized as an internal or external command,
operable program or batch file.
Do I need to run the file at some specific location. please help me here.
@gaurish123, I am able to generate the binary files.
These are the steps you should follow:
Hi,
Sorry for the delay. Currently building PythonAPI in Windows is a bit painful as it has dependencies on external libraries as LibPNG which depends on ZLIB. So, for now, I made some quick scripts to build the dependencies and manually copy the binaries to the PythonAPI dependencies folder.
Files needed to update: PythonAPI\setup.py
- Includes added: png, zlib
- Libs added: boost filesystem, libpng and zlib
- Compilation defines: LIBCARLA_IMAGE_WITH_PNG_SUPPORT=true
Next step is to build libpng {batch file} and zlib {powershell file}.
- Put both files into a folder
- Execute the powershell script (will build zlib and execute the script in charge of building libpng)
- If everything when OK there will be a folde called
binwhere you will find the includes for libpng and zlib and the lib folder for the binaries.- copy
bin\pngandbin\zlibtoPythonAPI\dependencies\include(keep folder structure)- copyt
bin\libs\*toPythonAPI\dependencies\libIf the folder
PythonAPI\dependencies\doesn't exist execute firstmake LibCarla. Now that we have everything executingmake PythonAPIit should build with no problem the egg file.IMPORTANT!!!
- Run the powershell script from the command line (x64 build tools), it will execute the bat file also
- If you have any problem with pawershell permissions or v140 build tools missing take a look at the @M-Hammod comment
What powershell module does the 'MsBuild' command belong from?
When I attempt to make PythonAPI on following the steps mentioned, using the Carla 0.9.2 nsubiron/windows_build_wip branch and Python 3.6, v140 tools installed
LINK : fatal error LNK1181: cannot open input file -'D:\Simulators\Carla_9_2\carlaPythonAPI\dependencies\lib\libboost_filesystem-vc141-mt-x64-1_67.lib',
file 'libboost_filesystem-vc141-mt-x64-1_69.lib' exists in the dependencies folder.
Any suggestion on how to solve this ??
Still working on
make PythonAPI. I'm getting similar error as @andreimihalcea97's comment.
I think Python 3.5 on Windows has some issues. I replaced it with Python 3.6 and now I have successfully built PythonAPI.
- Compilation defines: LIBCARLA_IMAGE_WITH_PNG_SUPPORT=true
My problem now is that I do not know in which file to add this option LIBCARLA_IMAGE_WITH_PNG_SUPPORT=true . Thank you
@iFuSiiOnzZ Your scripts on PasteBin seem to have been removed. Can you please provide a mirror?
This seems to be a legacy issue but I wanted to reiterate the solution to @delrocco 's problem.
I have Python installed in Windows through Anaconda, and I put Python in my PATH, which is pretty common. The python launcher doesn't come in the Anaconda distribution, and thus "py" is not a recognized command.
This is solved by replacing "py -3" with "python" in the PythonAPI .bat file.
@iFuSiiOnzZ Your scripts on PasteBin seem to have been removed. Can you please provide a mirror?
+1
This might be obvious to many but "py" is actually a reference to "py launcher".
This is a utility bundled with Python on Windows but not installed by default.
I ran the Python installation and it allowed me to "modify" my installation and install "py launcher".
I'll submit a PR with a better error message
Most helpful comment
@gaurish123, I am able to generate the binary files.
These are the steps you should follow: