blob: db0e350256e10823b99a1d83b5f2d1c7166e5c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
-include $(TOPDIR)/package/feeds/packages/rust/rustc_targets.mk
# These RUSTFLAGS are common across all TARGETs
RUSTFLAGS += \
-C linker=$(TOOLCHAIN_DIR)/bin/$(TARGET_CC_NOCACHE) \
-C ar=$(TOOLCHAIN_DIR)/bin/$(TARGET_AR) \
-C target-cpu=$(RUSTC_CPU_TYPE)
ifneq ($(RUST_TARGET_FEATURES),)
RUSTFLAGS += -C target-feature=$(RUST_TARGET_FEATURES)
endif
# Common Build Flags
CARGO_BUILD_FLAGS = \
RUSTFLAGS="$(RUSTFLAGS)" \
CARGO_HOME="$(CARGO_HOME)"
# This adds the rust environmental variables to Make calls
# MAKE_FLAGS += $(RUST_BUILD_FLAGS)
define RustPackage/Cargo/Update
cd $(PKG_BUILD_DIR) && \
$(CARGO_BUILD_FLAGS) cargo update $(1)
endef
define RustPackage/Cargo/Compile
cd $(PKG_BUILD_DIR) && \
$(CARGO_BUILD_FLAGS) cargo build -v --release \
--target $(RUSTC_TARGET_ARCH) $(1)
endef
|