File: rules

package info (click to toggle)
ignition-physics 5.1.0%2Bds1-4.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,812 kB
  • sloc: cpp: 26,911; ansic: 3,763; xml: 72; makefile: 12; sh: 3
file content (21 lines) | stat: -rwxr-xr-x 492 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow

# The build consumes huge amounts of RAM, can not build it in mulithread
# test suite can not be run in parallel too.
%:
	dh $@ --no-parallel

override_dh_auto_configure:
	dh_auto_configure -- \
	    -DENABLE_PROFILER=True

# Test suite cannot run in parallel
# arm64 problems https://github.com/ignitionrobotics/ign-physics/issues/70
override_dh_auto_test:
ifeq ($(DEB_HOST_ARCH),arm64)
	true
else
	dh_auto_test
endif