Skip to content
Snippets Groups Projects
Commit e0406590 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Merge branch 'ReadMe_update' into 'master'

ReadMe update (installation steps)

See merge request !129
parents 14f5a7d7 ba625662
No related branches found
No related tags found
1 merge request!129ReadMe update (installation steps)
...@@ -74,16 +74,24 @@ libgflags.a will be installed at **/usr/local/lib** ...@@ -74,16 +74,24 @@ libgflags.a will be installed at **/usr/local/lib**
- Build and install with: - Build and install with:
$ cd glog $ ./autogen.sh
$ ./configure --with-gflags=/usr/local/ $ ./configure --with-gflags=/usr/local/
$ make $ make
$ sudo make install $ sudo make install
libglog.so will be installed at **/usr/local/lib** libglog.so will be installed at **/usr/local/lib**
- Tourbleshooting: - Tourbleshooting:
If the `make` command fails with the error: `/bin/bash: aclocal-1.14: command not found`, install Glog with the following commands: * ./autogen.sh fails with './autogen.sh: autoreconf: not found'
In a fresh installation you will probably need to install autoreconf running
$ sudo make install dh-autoreconf
* `make` command fails with the error: `/bin/bash: aclocal-1.14: command not found`
Install Glog with the following commands:
$ cd glog $ cd glog
$ sudo apt-get install autoconf $ sudo apt-get install autoconf
...@@ -300,6 +308,21 @@ At this point you might need to switch to the `catkin_build` branch of the wolf ...@@ -300,6 +308,21 @@ At this point you might need to switch to the `catkin_build` branch of the wolf
**(6)** Run tests: **(6)** Run tests:
$ catkin run_tests $ catkin run_tests
Troubleshooting
---------------
#### Boost
We have made our best to keep being boost-independent.
However, in case you run into a boost installation issue at execution time, check that you have boost installed.
If needed, install it with:
[Boost](http://www.boost.org/). Free peer-reviewed portable C++ source libraries.
$ sudo apt-get install libboost-all-dev
Inspiring Links Inspiring Links
--------------- ---------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment