asusctl/debian/rules

13 lines
263 B
Plaintext
Raw Normal View History

2023-02-23 21:59:43 +02:00
#!/usr/bin/make -f
2024-07-26 22:34:33 +03:00
export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch)
2024-07-24 14:00:01 +03:00
override_dh_prep:
# amd64 build prep
ifeq (amd64-v3,$(PIKA_BUILD_ARCH))
2024-12-05 18:53:42 +01:00
export RUSTFLAGS = -C target-cpu=x86-64-v3 -C opt-level=3 -C embed-bitcode -C codegen-units=1
2024-07-24 14:00:01 +03:00
endif
2023-02-23 21:59:43 +02:00
%:
dh ${@}