Page 1 of 1

compile V-REP on Ubuntu Xenial

Posted: 12 Jun 2016, 19:10
by dpas
Compiling V-REP on Ubuntu Xenial 16.04, i386, Qt5.5.1 stops on make with an error with 'CCollDiistInterface'. Until the function CPageContainer there is no message of error.
I /usr/lib/i386-linux-gnu/qt5/mkspecs/linux-g++ -o pageContainer.o sourceCode/pagesAndViews/pageContainer.cpp
sourceCode/pagesAndViews/pageContainer.cpp: In member function ‘void CPageContainer::renderCurrentPage(bool)’:
sourceCode/pagesAndViews/pageContainer.cpp:891:7: error: ‘CCollDistInterface’ has not been declared
if (CCollDistInterface::initializeFunctionsIfNeeded())
^
Makefile:20176: recipe for target 'pageContainer.o' failed
make: *** [pageContainer.o] Error 1
what would you advise to check first to pass through this error?

Re: compile V-REP on Ubuntu Xenial

Posted: 13 Jun 2016, 09:03
by coppelia
Hello,

you are right, you can replace:

Code: Select all

CCollDistInterface::initializeFunctionsIfNeeded()
with

Code: Select all

CPluginContainer::isMeshPluginAvailable()
Cheers

Re: compile V-REP on Ubuntu Xenial

Posted: 13 Jun 2016, 12:04
by dpas
Thank you. That effectively solves the problem with this function.