generated from general-packages/pika-pkg-template
24 lines
652 B
Makefile
Executable File
24 lines
652 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)
|
|
export PATH := $(PATH):/root/.cargo/bin
|
|
|
|
override_dh_prep:
|
|
# amd64 build prep
|
|
ifeq (amd64-v3,$(PIKA_BUILD_ARCH))
|
|
# Does not support LTO due to dylib-lto
|
|
#export RUSTFLAGS = -C target-cpu=x86-64-v3 -C lto=fat -C embed-bitcode -C codegen-units=1 -C opt-level=3 -Zdylib-lto
|
|
export RUSTFLAGS = -C target-cpu=x86-64-v3 -C opt-level=3
|
|
endif
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_install:
|
|
/root/.cargo/bin/cargo fetch
|
|
/root/.cargo/bin/cargo build --release
|