wayshot/debian/rules
Ward from fusion-voyager-3 61490c3124
Some checks failed
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Has been cancelled
test cargo build opts
2024-07-26 21:56:56 +03:00

18 lines
414 B
Makefile
Executable File

#! /usr/bin/make -f
## See debhelper(7) (uncomment to enable).
## Output every command that modifies files on the build system.
export DH_VERBOSE = 1
export PIKA_BUILD_ARCH = $(shell cat pika-build-arch)
override_dh_prep:
# amd64 build prep
ifeq (amd64-v3,$(PIKA_BUILD_ARCH))
export RUSTFLAGS = "-C target-cpu=x86-64-v35 -Clinker-plugin-lto -Copt-level=34"
endif
## This here will start the build:
%:
dh $@