1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

Install linux tools for appropriate architecture (#13335)

This commit is contained in:
Steve Evans 2024-01-29 20:37:51 +00:00 committed by GitHub
parent a4b21d635c
commit 05eda719ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@ arm_sdk_version:
ARM_SDK_URL_BASE := https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10 ARM_SDK_URL_BASE := https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10
# source: https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads # source: https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads
ifeq ($(OSFAMILY), linux) ifeq ($(OSFAMILY), linux)
ARM_SDK_URL := $(ARM_SDK_URL_BASE)-x86_64-linux.tar.bz2 ARM_SDK_URL := $(ARM_SDK_URL_BASE)-$(shell uname -m)-linux.tar.bz2
endif endif
ifeq ($(OSFAMILY), macosx) ifeq ($(OSFAMILY), macosx)