We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specifically, Git commit fb4a336 of MADP. (ROS Indigo, Ubuntu 14.04, catkin tools)
Because...
/usr/bin/ld: cannot find -lMADPBase /usr/bin/ld: cannot find -lMADPSupport /usr/bin/ld: cannot find -lMADPPlanning /usr/bin/ld: cannot find -lMADPParser /usr/bin/ld: cannot find -lPOMDPSolve /usr/bin/ld: cannot find -lLPSolveOld /usr/bin/ld: cannot find -lmdp
I got it to build by changing, in mdm_library/CMakeModules/FindMADP.cmake:
mdm_library/CMakeModules/FindMADP.cmake
IF(EXISTS ${MADP_INCLUDE_DIRS}) SET(MADP_LIBRARIES "-lMADPBase -lMADPSupport -lMADPPlanning -lMADPParser -lPOMDPSolve -lLPSolveOld -lmdp") ENDIF()
to
IF(EXISTS ${MADP_INCLUDE_DIRS}) SET(MADP_LIBRARIES "-lMADP") ENDIF()
It looks like MADP condensed all the lib files into a single file.
I haven't checked whether the MADP stuff actually works, which is why I haven't done a pull request.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Specifically, Git commit fb4a336 of MADP. (ROS Indigo, Ubuntu 14.04, catkin tools)
Because...
I got it to build by changing, in
mdm_library/CMakeModules/FindMADP.cmake
:to
It looks like MADP condensed all the lib files into a single file.
I haven't checked whether the MADP stuff actually works, which is why I haven't done a pull request.
The text was updated successfully, but these errors were encountered: