Replies: 4 comments 3 replies
-
Could you please link to the installation instructions you followed? |
Beta Was this translation helpful? Give feedback.
-
Which compiler and compiler-version are you using? I'm surprised we haven't seen that build error before in I'll work on a PR to fix up the |
Beta Was this translation helpful? Give feedback.
-
I can't seem to reproduce this on Ubuntu 20.04.2 on x86_64 using either g++ or clang. Can you provide more details about your system? Thanks. |
Beta Was this translation helpful? Give feedback.
-
Just added the That should resolve the first build error you saw. Thank you for reporting this. |
Beta Was this translation helpful? Give feedback.
-
Hello,
I tried to build rmf following the instruction on Ubuntu 20.04 (20.04.2) twice, one on my computer, one on the provided docker image (ghcr.io/open-rmf/rmf-web/rmf:nightly).
When I first build it on my computer, I got that error:
rmf_ws/src/rmf/rmf_traffic_editor/rmf_traffic_editor/gui/rendering_options.cpp:22:8: error: ‘size_t’ was not declared in this scope; did you mean ‘std::size_t’? 22 | for (size_t i = 0; i < show_building_lanes.size(); i++)
After correcting it by adding the name space and rebuild it: I got that time the same errors as the docker's one, it begins by:
error: no match for ‘operator!=’ (operand types are ‘rmf_traffic::schedule::Query’ and ‘rmf_traffic::schedule::Query’) 172 | if (convert(msg->query) != query)
Do you have any idea where it could come from ?
Beta Was this translation helpful? Give feedback.
All reactions