ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

unable to access in orocos_toolchain?

asked 2016-04-18 23:10:43 -0500

Balaji gravatar image

updated 2016-04-19 02:56:55 -0500

gvdhoorn gravatar image

Command:

git clone --recursive -b toolchain-2.7 http://git.gitorious.org/orocos-toolchain/orocos_toolchain.git src
Cloning into 'src'...

Error:

fatal: unable to access 'https://git.gitorious.org/orocos-toolchain/orocos_toolchain.git/': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

How to debug this error?

edit retag flag offensive close merge delete

Comments

Thank your support ruben. It worked.:)

Balaji gravatar image Balaji  ( 2016-04-19 03:52:30 -0500 )edit

3 Answers

Sort by ยป oldest newest most voted
1

answered 2016-04-19 02:24:50 -0500

The gitorious repository has been taken down, you should try to clone it from github instead: git clone --recursive -b toolchain-2.7 https://github.com/orocos-toolchain/orocos_toolchain.git

edit flag offensive delete link more

Comments

Thank your support ruben. It worked.:)

Balaji gravatar image Balaji  ( 2016-04-19 03:53:08 -0500 )edit

Maybe mark the answer as correct ;)

Ruben Smits gravatar image Ruben Smits  ( 2016-04-19 04:14:36 -0500 )edit

I want to interface beckhoff with ros. I have tried codes in the ros page for installation . i got errors. I understand that i installed orocos toolchain 2.7 in ros which is outdated for ros indigo. I want to debug all errors and interface it. Can you help for this?. Im using ubuntu 14.04.02 and ros

Balaji gravatar image Balaji  ( 2016-05-05 05:31:02 -0500 )edit
0

answered 2018-05-14 08:21:17 -0500

Update to Ruben's answer:

Create a catkin workspace: mkdir ~/orocos_ws cd ~/orocos_ws catkin_init_workspace

Clone the repository using: (2.x where x is the version of orocos that you require from the git branch) git clone --recursive -b toolchain-2.x https://github.com/orocos-toolchain/o... src

Temporarily add the src directory to your ROS_PACKAGE_PATH: export ROS_PACKAGE_PATH=$ROS_PACKAGE_PATH:~/orocos_ws/src

Manually resolve recursive dependencies: apt-get install ruby ruby-dev gem install rake hoe

Install any missing dependencies: rosdep install orocos_toolchain

Run the env.sh script and build: source src/env.sh catkin_make_isolated --install

Add this line to your ~/.bashrc file to run the setup script for our workspace: source $HOME/orocos_ws/install_isolated/setup.bash

and voila you'll have orocos-toolchain installed. Further, you can independently check if rtt-geometry, rtt-comm, rtt-ros-integration are installed by following instructions in this link: http://www.ias.tu-darmstadt.de/BioRob...

Cheers :)

edit flag offensive delete link more
0

answered 2016-05-05 00:29:48 -0500

Balaji gravatar image

updated 2016-05-05 02:54:35 -0500

When using this link, this error is comming

`Configuring incomplete, errors occurred! See also "/home/coe/orocos_ws/build_isolated/ocl/install/CMakeFiles/CMakeOutput.log". See also "/home/coe/orocos_ws/build_isolated/ocl/install/CMakeFiles/CMakeError.log". <== Failed to process package 'ocl': Command '['/home/coe/orocos_ws/install_isolated/env.sh', 'cmake', '/home/coe/orocos_ws/src/ocl', '-DCMAKE_INSTALL_PREFIX=/home/coe/orocos_ws/install_isolated', '-G', 'Unix Makefiles']' returned non-zero exit status 1

Reproduce this error by running: ==> cd /home/coe/orocos_ws/build_isolated/ocl && /home/coe/orocos_ws/install_isolated/env.sh cmake /home/coe/orocos_ws/src/ocl -DCMAKE_INSTALL_PREFIX=/home/coe/orocos_ws/install_isolated -G 'Unix Makefiles'`

How to Clear this error

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2016-04-18 23:10:43 -0500

Seen: 291 times

Last updated: May 05 '16