edcd46a17e
Some checks failed
PikaOS Package Build Only (Canary) (amd64-v3) / build (push) Successful in 21s
PikaOS Package Build Only (amd64-v3) / build (push) Failing after 1s
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Successful in 24s
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 0s
18 lines
412 B
Makefile
Executable File
18 lines
412 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-v3 -Clinker-plugin-lto -Copt-level=3"
|
|
endif
|
|
|
|
## This here will start the build:
|
|
%:
|
|
dh $@
|