Closed GoogleCodeExporter closed 9 years ago
can you check if hrpsys-simulator is installed under /opt/ros/groovy? and which
directory?
Original comment by kei.ok...@gmail.com
on 17 Sep 2013 at 6:11
the reason is glut is not installed
(http://jenkins.willowgarage.com:8080/job/ros-groovy-hrpsys_binarydeb_quantal_am
d64/12/consoleText) as follows
-- Found X11: /usr/lib/x86_64-linux-gnu/libX11.so
-- Found OpenGL: /usr/lib/x86_64-linux-gnu/libGL.so
-- Could NOT find GLUT (missing: GLUT_glut_LIBRARY GLUT_INCLUDE_DIR)
-- checking for module 'opencv'
-- found opencv, version 2.4.6.1
and CMakeLists.txt set USE_HRPSYSUTIL only if GLUT and other libraries are
found,
if(OpenCV_FOUND AND OPENGL_FOUND AND GLEW_FOUND AND GLUT_FOUND AND SDL_FOUND)
set(USE_HRPSYSUTIL true)
else()
set(USE_HRPSYSUTIL false)
endif()
and util/CMakeLists.txt checks USE_HRPSYSUTIL to add subdirectories.
if(USE_HRPSYSUTIL)
add_subdirectory(simulator)
add_subdirectory(viewer)
add_subdirectory(monitor)
endif()
so, I added glut to build/run depends. see r5567
Original comment by kei.ok...@gmail.com
on 17 Sep 2013 at 1:34
releasead -> https://github.com/ros/rosdistro/pull/2143
Original comment by kei.ok...@gmail.com
on 17 Sep 2013 at 1:36
pleaes try with new versoin -->
http://50.28.27.175/repos/building/pool/main/r/ros-groovy-hrpsys/ros-groovy-hrps
ys_0.0.1-8precise-20130918-0334-+0000_amd64.deb
Original comment by kei.ok...@gmail.com
on 18 Sep 2013 at 4:16
This particular issue is gone with
ros-groovy-hrpsys_0.0.1-8precise-20130918-0334-+0000. Thank you!
# Does the description above mean that buildfarm failed to detect a missing
library and passed the build? Looks so hard to find the root cause of this
error...
Original comment by gm130s
on 18 Sep 2013 at 7:22
hrpsys is designed to build without opencv/glut/etc for embedded environment.
For example, QNX does not compile hrpsys-simulator because it is not required
for running real robot. So compilation on buildfirm confused that it is
configured for embedded system due to lack of glut.
Original comment by kei.ok...@gmail.com
on 18 Sep 2013 at 7:29
Original issue reported on code.google.com by
gm130s
on 16 Sep 2013 at 3:22