Skip to content

Commit c16b040

Browse files
Merge pull request #295 from mavlink/update-linux-musl-links
Update mavsdk_server suffix following changes in MAVSDK repo
2 parents 27a7e60 + 0220780 commit c16b040

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

MAVSDK_SERVER_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.34.0
1+
v0.35.0

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ def platform_suffix(self):
5454
"""
5555
if sys.platform.startswith('linux') and 'MAVSDK_SERVER_ARCH' in os.environ:
5656
if os.environ['MAVSDK_SERVER_ARCH'] == "armv6l":
57-
return 'musl_armv6'
57+
return 'linux-armv6-musl'
5858
elif os.environ['MAVSDK_SERVER_ARCH'] == "armv7l":
59-
return 'musl_armv7'
59+
return 'linux-armv7l-musl'
6060
elif os.environ['MAVSDK_SERVER_ARCH'] == "aarch64":
61-
return 'musl_aarch64'
61+
return 'linux-arm64-musl'
6262
else:
6363
raise NotImplementedError(
6464
f"Error: unknown MAVSDK_SERVER_ARCH: {os.environ['MAVSDK_SERVER_ARCH']}")

0 commit comments

Comments
 (0)