mirror of
https://github.com/ValveSoftware/Proton.git
synced 2026-04-20 03:01:58 -04:00
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
# parameters:
|
|
# $(1): lowercase package name
|
|
# $(2): uppercase package name
|
|
# $(3): build target arch
|
|
# $(4): build target os
|
|
#
|
|
define create-rules-cargo
|
|
$(call create-rules-common,$(1),$(2),$(3),$(4))
|
|
ifneq ($(findstring $(3)-$(4),$(ARCHS)),)
|
|
|
|
$$(OBJ)/.$(1)-$(3)-configure:
|
|
@echo ":: configuring $(1)-$(3)..." >&2
|
|
touch $$@
|
|
|
|
$$(OBJ)/.$(1)-$(3)-build:
|
|
@echo ":: building $(1)-$(3)..." >&2
|
|
cd $$($(2)_SRC) && env $$($(2)_$(3)_ENV) \
|
|
cargo build $(--quiet?) --release \
|
|
$$(filter -j%,$$(MAKEFLAGS)) \
|
|
--target-dir $$($(2)_$(3)_OBJ) \
|
|
$$($(3)-$(4)_CARGO_ARGS) \
|
|
$$($(2)_CARGO_ARGS) \
|
|
$$($(2)_$(3)_CARGO_ARGS)
|
|
touch $$@
|
|
endif
|
|
endef
|
|
|
|
rules-cargo = $(call create-rules-cargo,$(1),$(call toupper,$(1)),$(2),$(3))
|
|
|
|
i386-unix_CARGO_TARGET := i686-unknown-linux-gnu
|
|
x86_64-unix_CARGO_TARGET := x86_64-unknown-linux-gnu
|
|
|
|
i386-unix_CARGO_ARGS := --target $(i386-unix_CARGO_TARGET)
|
|
x86_64-unix_CARGO_ARGS := --target $(x86_64-unix_CARGO_TARGET)
|
|
|
|
# Used in rules-common.mk
|
|
# We need to specify the linker explicitly for at least --target architecture as
|
|
# well as host's architecture - some crates build things on host via build.rs
|
|
#
|
|
# HACK: forced to gcc-10 because Sniper's (SteamRT) gcc-14 doesn't come with
|
|
# shared libgcc_s.so and cargo/rustc (?) forces shared linking with that lib.
|
|
CARGO_LINKERS := $(foreach a,$(unix_ARCHS),CARGO_TARGET_$(call toupper,$($(a)-unix_CARGO_TARGET))_LINKER="$($(a)-unix_TARGET)-gcc-10")
|