mvukov / rules_ros2

Build ROS 2 with Bazel
Apache License 2.0
81 stars 45 forks source link

openssl build file incompatible with openssl from rules_boost #197

Closed kgreenek closed 10 months ago

kgreenek commented 11 months ago

rules_boost updated their version of openssl recently, as of this commit: https://github.com/nelhage/rules_boost/commit/4ab574f9a84b42b1809978114a4664184716f4bf

That implementation of the bazel BUILD file for @openssl differs from the BUILD file for openssl that is distributed with rules_ros2. Instead of defining a single target called @openssl//:openssl, they now have @openssl//:ssl (and a couple other targets).

See: https://github.com/hedronvision/boringssl/blob/master/BUILD#L146

I started seeing failures when I had @boost above @rules_ros2 in my WORKSPACE.bazel file.