compile V-REP on Ubuntu Xenial

Report crashes, strange behaviour, or apparent bugs
Post Reply
dpas
Posts: 5
Joined: 12 Jun 2016, 05:50

compile V-REP on Ubuntu Xenial

Post 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?

coppelia
Site Admin
Posts: 10339
Joined: 14 Dec 2012, 00:25

Re: compile V-REP on Ubuntu Xenial

Post by coppelia »

Hello,

you are right, you can replace:

Code: Select all

CCollDistInterface::initializeFunctionsIfNeeded()
with

Code: Select all

CPluginContainer::isMeshPluginAvailable()
Cheers

dpas
Posts: 5
Joined: 12 Jun 2016, 05:50

Re: compile V-REP on Ubuntu Xenial

Post by dpas »

Thank you. That effectively solves the problem with this function.

Post Reply