mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-03 21:02:01 +00:00
19 lines
684 B
Makefile
19 lines
684 B
Makefile
# This Makefile snippet defines DEB_*_RUST_TYPE triples based on DEB_*_GNU_TYPE
|
|
|
|
include /usr/share/dpkg/architecture.mk
|
|
|
|
rust_cpu = $(subst i586,i686,\
|
|
$(if $(findstring -riscv64-,-$(2)-),$(subst riscv64,riscv64gc,$(1)),\
|
|
$(if $(findstring -armhf-,-$(2)-),$(subst arm,armv7,$(1)),\
|
|
$(if $(findstring -armel-,-$(2)-),$(subst arm,armv5te,$(1)),\
|
|
$(1)))))
|
|
rust_type_setvar = $(1)_RUST_TYPE ?= $(call rust_cpu,$($(1)_GNU_CPU),$($(1)_ARCH))-unknown-$($(1)_GNU_SYSTEM)
|
|
|
|
$(foreach machine,BUILD HOST TARGET,\
|
|
$(eval $(call rust_type_setvar,DEB_$(machine))))
|
|
|
|
# fallback for older dpkg versions
|
|
ifeq ($(DEB_TARGET_RUST_TYPE),-unknown-)
|
|
DEB_TARGET_RUST_TYPE = $(DEB_HOST_RUST_TYPE)
|
|
endif
|