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

AP_UROS: factor out common ROS client code #25179

Draft
wants to merge 16 commits into
base: master
Choose a base branch
from
Draft
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
Prev Previous commit
Next Next commit
AP_UROS: update wscript for ubuntu x86_64 and aarch64
Signed-off-by: Rhys Mainwaring <rhys.mainwaring@me.com>
  • Loading branch information
srmainwaring committed Oct 11, 2023
commit 1eaf64b1c85c145b1eece1d220e833fab9975f84
8 changes: 4 additions & 4 deletions libraries/AP_UROS/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def configure(cfg):
elif host_machine == 'arm64':
distro = 'uros-macos-13.4-arm64'
elif host_system == 'Linux':
if host_machine == 'amd64':
distro = 'uros-ubuntu-22-amd64'
elif host_machine == 'arm64':
distro = 'uros-ubuntu-22-arm64'
if host_machine == 'x86_64':
distro = 'uros-ubuntu-22-x86_64'
elif host_machine == 'aarch64':
distro = 'uros-ubuntu-22-aarch64'
else:
print('Cannot configure AP_UROS. Unsupported host: {}'.format(host_system))
return
Expand Down