Git Product home page Git Product logo

Comments (4)

ilpincy avatar ilpincy commented on August 26, 2024 1

It's not an issue related to ARGoS - the error output complains about a syntax error in the CMakeLists.txt file. It looks like that string is not parsed correctly in CMake 2.8.12.2, probably due to a parser bug in that version. I'll probably be forced to require a more recent version of CMake.

Try removing the \ characters, maybe this solves the issue. If so, please let me know.

If this fails again, just run these commands:

cd buzz # this is the base directory of buzz
rm -rf build # delete build directory
mkdir build
cd build
cmake -DBUZZ_SYMLINK_CMAKE_SCRIPTS=OFF -DCMAKE_BUILD_TYPE=Release ../src
make
sudo make install

from buzz.

ilpincy avatar ilpincy commented on August 26, 2024 1

Why do you say that sudo ldconfig failed? That does not look like an error message. It does not matter where you run ldconfig, because its purpose is to update the system library path database.

from buzz.

brownem avatar brownem commented on August 26, 2024

Deleting all \ characters from lines 39 through 48 allows CMake to complete, as well as the rest of the build process. CMake file now looks like:

#
# Install CMake modules and scripts
#
install(FILES FindBuzz.cmake UseBuzz.cmake DESTINATION share/buzz/cmake)
if(BUZZ_SYMLINK_CMAKE_SCRIPTS)
  install(CODE "execute_process( 
    COMMAND ${CMAKE_COMMAND} -E create_symlink 
    ${CMAKE_INSTALL_PREFIX}/share/buzz/cmake/FindBuzz.cmake 
    ${CMAKE_ROOT}/Modules/FindBuzz.cmake   
    )")
  install(CODE "execute_process( 
    COMMAND ${CMAKE_COMMAND} -E create_symlink 
    ${CMAKE_INSTALL_PREFIX}/share/buzz/cmake/UseBuzz.cmake 
    ${CMAKE_ROOT}/Modules/UseBuzz.cmake   
    )")
endif(BUZZ_SYMLINK_CMAKE_SCRIPTS)

sudo make install also completes successfully. However sudo ldconfig seems to fail with output:

/sbin/ldconfig.real: /usr/lib/nvidia-384/libEGL.so.1 is not a symbolic link

/sbin/ldconfig.real: /usr/lib32/nvidia-384/libEGL.so.1 is not a symbolic link

Perhaps I misunderstood the final step? It is supposed to be completed inside of the ~/buzz/build directly, correct?

from buzz.

brownem avatar brownem commented on August 26, 2024

I interpreted the "not symbolic link" part of the message as an indication of an unexpected result, but if you say it is normal, then it completed as expected.

Thanks for the help.

from buzz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.