Skip to content

Commit

Permalink
Fixes error when run on amd64 and updates documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiefish committed Aug 5, 2021
1 parent c44eebc commit 1d6871e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,10 @@ MSCL is developed by [LORD Sensing - Microstrain](http://microstrain.com) in Wil
## Build Instructions

#### MSCL
MSCL pre-built packages can be found here: [MSCL Packages](https://github.com/LORD-MicroStrain/MSCL/releases/tag/v62.0.0)
MSCL is now installed in the [CMakeLists.txt](./ros_mscl/CMakeLists.txt). The version installed can be changed by passing the flag `-DMSCL_VERSION="62.0.0"`

We do our best to keep ROS-MSCL up-to-date with the latest MSCL changes, but sometimes there is a delay. The currently supported version of MSCL is [v62.0.0](https://github.com/LORD-MicroStrain/MSCL/releases/tag/v62.0.0)

Install instructions can be found here: [How to Use MSCL](https://github.com/LORD-MicroStrain/MSCL/blob/master/HowToUseMSCL.md#linux)

If you choose to install MSCL at a location other than /usr/share, [CMakeLists.txt](https://github.com/LORD-MicroStrain/ROS-MSCL/blob/master/ros_mscl/CMakeLists.txt) will need to be updated with the install path.

#### Building from source
1. Install ROS and create a workspace: [Installing and Configuring Your ROS Environment](http://wiki.ros.org/ROS/Tutorials/InstallingandConfiguringROSEnvironment)

Expand Down
2 changes: 1 addition & 1 deletion ros_mscl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ find_package(catkin REQUIRED COMPONENTS
set(MSCL_VERSION "62.0.0" CACHE STRING "Version of MSCL to download and build with")

# Convert the CMake architecture to the format that MSCL uses
if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "amd64")
if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
set(MSCL_ARCH "amd64")
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64")
set(MSCL_ARCH "arm64")
Expand Down

0 comments on commit 1d6871e

Please sign in to comment.