Skip to content
New issue

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

build only selected packages to enable security. #325

Open
wants to merge 2 commits into
base: rolling
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SROS2_Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ First install ROS2 from source following [these instructions](https://docs.ros.o

Note: Fast-RTPS requires an additional CMake flag to build the security plugins so the colcon invocation needs to be modified to pass:
```bash
colcon build --symlink-install --cmake-args -DSECURITY=ON
colcon build --symlink-install --cmake-args -DSECURITY=ON --packages-select fastrtps rmw_fastrtps_cpp rmw_fastrtps_dynamic_cpp rmw_fastrtps_shared_cpp
```

### Additional configuration for RTI Connext
Expand Down
2 changes: 1 addition & 1 deletion SROS2_MacOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Install ROS2 from source following [these instructions](https://docs.ros.org/en/

Note: Fast-RTPS requires an additional CMake flag to build the security plugins so the colcon invocation needs to be modified to pass:
```bash
colcon build --symlink-install --cmake-args -DSECURITY=ON
colcon build --symlink-install --cmake-args -DSECURITY=ON --packages-select fastrtps rmw_fastrtps_cpp rmw_fastrtps_dynamic_cpp rmw_fastrtps_shared_cpp
```

Setup your environment:
Expand Down
2 changes: 1 addition & 1 deletion SROS2_Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Please follow [these instructions](https://docs.ros.org/en/rolling/Installation/

To build the ROS2 code with security extensions, call:
fujitatomoya marked this conversation as resolved.
Show resolved Hide resolved
```bat
colcon build --cmake-args -DSECURITY=ON
colcon build --cmake-args -DSECURITY=ON --packages-select fastrtps rmw_fastrtps_cpp rmw_fastrtps_dynamic_cpp rmw_fastrtps_shared_cpp
```

### Install OpenSSL
Expand Down
Loading