@@ -85,7 +85,7 @@ cwd = "humble_ws"
85
85
cmd = " curl -L -C - -O https://storage.googleapis.com/rerun-example-datasets/go2_ros2.zip && unzip go2_ros2.zip"
86
86
cwd = " humble_ws/install/rerun_bridge/share/rerun_bridge"
87
87
outputs = [" humble_ws/install/rerun_bridge/share/rerun_bridge/go2_ros2" ]
88
- depends_on = [" build" ]
88
+ depends_on = [" build" ]
89
89
90
90
# Get the go2_ros2_sdk package
91
91
#
@@ -100,7 +100,14 @@ depends_on = ["ws"]
100
100
101
101
[tasks .go2_example ]
102
102
cmd = " bash -c 'source ./install/local_setup.bash && ros2 launch rerun_bridge go2_example.launch'"
103
- depends_on = [" build" , " go2_example_data" , " go2_ros2_sdk" , " rosbag2_storage_mcap" , " rerun_viewer" , " rerun_urdf_loader" ]
103
+ depends_on = [
104
+ " build" ,
105
+ " go2_example_data" ,
106
+ " go2_ros2_sdk" ,
107
+ " rosbag2_storage_mcap" ,
108
+ " rerun_viewer" ,
109
+ " rerun_urdf_loader" ,
110
+ ]
104
111
cwd = " humble_ws"
105
112
106
113
# Install Rerun and URDF loader manually via pip3, this should be replaced with direct pypi dependencies in the future.
@@ -111,7 +118,7 @@ cmd = "pip install rerun-sdk==0.18.2"
111
118
cmd = " pip install git+https://github.com/rerun-io/rerun-loader-python-example-urdf.git"
112
119
113
120
[dependencies ]
114
- pip = " >=24.0,<25" # To install rerun-sdk and rerun-loader-python-example-urdf
121
+ pip = " >=24.0,<25" # To install rerun-sdk and rerun-loader-python-example-urdf
115
122
116
123
# C++ build-tools:
117
124
cmake = " 3.27.6"
@@ -133,3 +140,9 @@ opencv = ">=4.9.0,<4.10"
133
140
134
141
# Additional dependencies for mcap support
135
142
ros-humble-rosbag2-test-common = " >=0.15.9,<0.16"
143
+
144
+ [target .linux-64 .dependencies ]
145
+ sysroot_linux-64 = " >=2.17,<3" # rustc 1.64+ requires glibc 2.17+, see https://blog.rust-lang.org/2022/08/01/Increasing-glibc-kernel-requirements.html
146
+
147
+ [target .linux-aarch64 .dependencies ]
148
+ sysroot_linux-aarch64 = " >=2.17,<3" # rustc 1.64+ requires glibc 2.17+, see https://blog.rust-lang.org/2022/08/01/Increasing-glibc-kernel-requirements.html
0 commit comments