funcDebug.h not found

Report crashes, strange behaviour, or apparent bugs
Post Reply
fabien
Posts: 4
Joined: 10 Jun 2013, 11:57

funcDebug.h not found

Post by fabien »

When compiling the mesh plugin (on V-REP 3.2.2), the compilation complains about funcDebug.h missing (with gcc 4.8.2).

Code: Select all

-bash-4.1$ qmake ../v_repExtMeshCalc.pro
-bash-4.1$ make
g++ -c -pipe -O3 -Wall -Wno-unused-parameter -Wno-strict-aliasing -Wno-empty-body -Wno-write-strings -Wno-unused-but-set-variable -Wno-unused-local-typedefs -Wno-narrowing -O2 -Wall -W -D_REENTRANT -fPIC -DLIN_VREP -DCOMPILING_EXTERNAL_COLL_DIST_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../meshCalculationPlugin -I. -I../sourceCode -I../sourceCode/collDistAlgos -I../../v_rep/sourceCode/interfaces -I../../programming/v_repMath -I../../programming/include -I../../programming/common -I../../../../prefix/include/QtGui -I../../../../prefix/include/QtCore -I. -I../../../../prefix/mkspecs/linux-g++ -o collDistAlgos.o ../sourceCode/collDistAlgos/collDistAlgos.cpp
g++ -c -pipe -O3 -Wall -Wno-unused-parameter -Wno-strict-aliasing -Wno-empty-body -Wno-write-strings -Wno-unused-but-set-variable -Wno-unused-local-typedefs -Wno-narrowing -O2 -Wall -W -D_REENTRANT -fPIC -DLIN_VREP -DCOMPILING_EXTERNAL_COLL_DIST_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../meshCalculationPlugin -I. -I../sourceCode -I../sourceCode/collDistAlgos -I../../v_rep/sourceCode/interfaces -I../../programming/v_repMath -I../../programming/include -I../../programming/common -I../../../../prefix/include/QtGui -I../../../../prefix/include/QtCore -I. -I../../../../prefix/mkspecs/linux-g++ -o CollNode.o ../sourceCode/collDistAlgos/CollNode.cpp
g++ -c -pipe -O3 -Wall -Wno-unused-parameter -Wno-strict-aliasing -Wno-empty-body -Wno-write-strings -Wno-unused-but-set-variable -Wno-unused-local-typedefs -Wno-narrowing -O2 -Wall -W -D_REENTRANT -fPIC -DLIN_VREP -DCOMPILING_EXTERNAL_COLL_DIST_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../meshCalculationPlugin -I. -I../sourceCode -I../sourceCode/collDistAlgos -I../../v_rep/sourceCode/interfaces -I../../programming/v_repMath -I../../programming/include -I../../programming/common -I../../../../prefix/include/QtGui -I../../../../prefix/include/QtCore -I. -I../../../../prefix/mkspecs/linux-g++ -o collInfo.o ../sourceCode/collDistAlgos/collInfo.cpp
g++ -c -pipe -O3 -Wall -Wno-unused-parameter -Wno-strict-aliasing -Wno-empty-body -Wno-write-strings -Wno-unused-but-set-variable -Wno-unused-local-typedefs -Wno-narrowing -O2 -Wall -W -D_REENTRANT -fPIC -DLIN_VREP -DCOMPILING_EXTERNAL_COLL_DIST_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../meshCalculationPlugin -I. -I../sourceCode -I../sourceCode/collDistAlgos -I../../v_rep/sourceCode/interfaces -I../../programming/v_repMath -I../../programming/include -I../../programming/common -I../../../../prefix/include/QtGui -I../../../../prefix/include/QtCore -I. -I../../../../prefix/mkspecs/linux-g++ -o LinkedListElement.o ../sourceCode/collDistAlgos/LinkedListElement.cpp
g++ -c -pipe -O3 -Wall -Wno-unused-parameter -Wno-strict-aliasing -Wno-empty-body -Wno-write-strings -Wno-unused-but-set-variable -Wno-unused-local-typedefs -Wno-narrowing -O2 -Wall -W -D_REENTRANT -fPIC -DLIN_VREP -DCOMPILING_EXTERNAL_COLL_DIST_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../meshCalculationPlugin -I. -I../sourceCode -I../sourceCode/collDistAlgos -I../../v_rep/sourceCode/interfaces -I../../programming/v_repMath -I../../programming/include -I../../programming/common -I../../../../prefix/include/QtGui -I../../../../prefix/include/QtCore -I. -I../../../../prefix/mkspecs/linux-g++ -o v_repExtMeshCalc.o ../sourceCode/v_repExtMeshCalc.cpp
g++ -c -pipe -O3 -Wall -Wno-unused-parameter -Wno-strict-aliasing -Wno-empty-body -Wno-write-strings -Wno-unused-but-set-variable -Wno-unused-local-typedefs -Wno-narrowing -O2 -Wall -W -D_REENTRANT -fPIC -DLIN_VREP -DCOMPILING_EXTERNAL_COLL_DIST_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../meshCalculationPlugin -I. -I../sourceCode -I../sourceCode/collDistAlgos -I../../v_rep/sourceCode/interfaces -I../../programming/v_repMath -I../../programming/include -I../../programming/common -I../../../../prefix/include/QtGui -I../../../../prefix/include/QtCore -I. -I../../../../prefix/mkspecs/linux-g++ -o collDistInterface.o ../../v_rep/sourceCode/interfaces/collDistInterface.cpp
../../v_rep/sourceCode/interfaces/collDistInterface.cpp:33:23: fatal error: funcDebug.h: No such file or directory
 #include "funcDebug.h"
Adding :`INCLUDEPATH += "../v_rep/sourceCode/various"` to `v_repExtMeshCalc.pro` fixes the problem.

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

Re: funcDebug.h not found

Post by coppelia »

Thanks for mentioning this Fabien, this was fixed in the new release that will be available today (V3.2.3). You can also simply comment the include out.

Cheers

Post Reply