You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---------------------------------------------
Summary for PyIlmBase features:
Python version 2.7
boost::python libname boost_python-mt-1_47
---------------------------------------------
but when I try to make it i get these errors:
PyImathStringTable.cpp:47:46: error: expected expression
const StringSet &strings = _table.get<1>();
^
PyImathStringTable.cpp:62:45: error: expected expression
const IndexSet &indices = _table.get<0>();
^
PyImathStringTable.cpp:77:46: error: expected expression
const StringSet &strings = _table.get<1>();
^
PyImathStringTable.cpp:105:46: error: expected expression
const StringSet &strings = _table.get<1>();
^
PyImathStringTable.cpp:114:45: error: expected expression
const IndexSet &indices = _table.get<0>();
^
PyImathStringTable.cpp:47:22: error: declaration of reference variable 'strings' requires an initializer
const StringSet &strings = _table.get<1>();
^~~~~~~
PyImathStringTable.cpp:121:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<char> >::lookup' requested here
template class PYIMATH_EXPORT StringTableT<std::string>;
^
PyImathStringTable.cpp:62:21: error: declaration of reference variable 'indices' requires an initializer
const IndexSet &indices = _table.get<0>();
^~~~~~~
PyImathStringTable.cpp:121:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<char> >::lookup' requested here
template class PYIMATH_EXPORT StringTableT<std::string>;
^
PyImathStringTable.cpp:77:22: error: declaration of reference variable 'strings' requires an initializer
const StringSet &strings = _table.get<1>();
^~~~~~~
PyImathStringTable.cpp:121:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<char> >::intern' requested here
template class PYIMATH_EXPORT StringTableT<std::string>;
^
PyImathStringTable.cpp:105:22: error: declaration of reference variable 'strings' requires an initializer
const StringSet &strings = _table.get<1>();
^~~~~~~
PyImathStringTable.cpp:121:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<char> >::hasString' requested here
template class PYIMATH_EXPORT StringTableT<std::string>;
^
PyImathStringTable.cpp:114:21: error: declaration of reference variable 'indices' requires an initializer
const IndexSet &indices = _table.get<0>();
^~~~~~~
PyImathStringTable.cpp:121:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<char> >::hasStringIndex' requested here
template class PYIMATH_EXPORT StringTableT<std::string>;
^
PyImathStringTable.cpp:47:22: error: declaration of reference variable 'strings' requires an initializer
const StringSet &strings = _table.get<1>();
^~~~~~~
PyImathStringTable.cpp:122:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<wchar_t> >::lookup' requested here
template class PYIMATH_EXPORT StringTableT<std::wstring>;
^
PyImathStringTable.cpp:62:21: error: declaration of reference variable 'indices' requires an initializer
const IndexSet &indices = _table.get<0>();
^~~~~~~
PyImathStringTable.cpp:122:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<wchar_t> >::lookup' requested here
template class PYIMATH_EXPORT StringTableT<std::wstring>;
^
PyImathStringTable.cpp:77:22: error: declaration of reference variable 'strings' requires an initializer
const StringSet &strings = _table.get<1>();
^~~~~~~
PyImathStringTable.cpp:122:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<wchar_t> >::intern' requested here
template class PYIMATH_EXPORT StringTableT<std::wstring>;
^
PyImathStringTable.cpp:105:22: error: declaration of reference variable 'strings' requires an initializer
const StringSet &strings = _table.get<1>();
^~~~~~~
PyImathStringTable.cpp:122:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<wchar_t> >::hasString' requested here
template class PYIMATH_EXPORT StringTableT<std::wstring>;
^
PyImathStringTable.cpp:114:21: error: declaration of reference variable 'indices' requires an initializer
const IndexSet &indices = _table.get<0>();
^~~~~~~
PyImathStringTable.cpp:122:31: note: in instantiation of member function 'PyImath::StringTableT<std::__1::basic_string<wchar_t> >::hasStringIndex' requested
here
template class PYIMATH_EXPORT StringTableT<std::wstring>;
^
15 errors generated.
make[1]: *** [PyImathStringTable.lo] Error 1
make: *** [all-recursive] Error 1
Using osx 10.9, Boost 1.48, pyilmbase 1.0.0 and python 2.7 installed with brew
Hope for your assistance.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi, everyone!
I'm trying to build pyilmbase library on osx 10.9 and face some problems. I've boost 1.48, configured and installed it with these options:
it has installed successfully. After that I
cd
-ed to pyilmbase folder and ranOutput (with no errors):
but when I try to make it i get these errors:
Using osx 10.9, Boost 1.48, pyilmbase 1.0.0 and python 2.7 installed with brew
Hope for your assistance.
Thanks in advance!
The text was updated successfully, but these errors were encountered: