Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Olof Johansson | f6041c1 | 2016-07-05 23:53:19 -0700 | [diff] [blame] | 2 | hostprogs-$(CONFIG_SAMPLE_SECCOMP) := bpf-fancy dropper bpf-direct |
Will Drewry | 8ac270d | 2012-04-12 16:48:04 -0500 | [diff] [blame] | 3 | |
| 4 | HOSTCFLAGS_bpf-fancy.o += -I$(objtree)/usr/include |
| 5 | HOSTCFLAGS_bpf-fancy.o += -idirafter $(objtree)/include |
| 6 | HOSTCFLAGS_bpf-helper.o += -I$(objtree)/usr/include |
| 7 | HOSTCFLAGS_bpf-helper.o += -idirafter $(objtree)/include |
Will Drewry | 561381a | 2012-04-18 19:50:25 -0500 | [diff] [blame] | 8 | bpf-fancy-objs := bpf-fancy.o bpf-helper.o |
Will Drewry | 8ac270d | 2012-04-12 16:48:04 -0500 | [diff] [blame] | 9 | |
| 10 | HOSTCFLAGS_dropper.o += -I$(objtree)/usr/include |
| 11 | HOSTCFLAGS_dropper.o += -idirafter $(objtree)/include |
| 12 | dropper-objs := dropper.o |
| 13 | |
Will Drewry | 8ac270d | 2012-04-12 16:48:04 -0500 | [diff] [blame] | 14 | HOSTCFLAGS_bpf-direct.o += -I$(objtree)/usr/include |
| 15 | HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include |
Will Drewry | 561381a | 2012-04-18 19:50:25 -0500 | [diff] [blame] | 16 | bpf-direct-objs := bpf-direct.o |
Will Drewry | 8ac270d | 2012-04-12 16:48:04 -0500 | [diff] [blame] | 17 | |
| 18 | # Try to match the kernel target. |
Arnd Bergmann | 275aaa6 | 2013-02-04 14:28:52 -0800 | [diff] [blame] | 19 | ifndef CROSS_COMPILE |
Markos Chandras | e9107f8 | 2014-04-03 14:48:32 -0700 | [diff] [blame] | 20 | ifndef CONFIG_64BIT |
Heiko Carstens | b25b09e | 2012-09-08 10:23:42 +0200 | [diff] [blame] | 21 | |
| 22 | # s390 has -m31 flag to build 31 bit binaries |
| 23 | ifndef CONFIG_S390 |
| 24 | MFLAG = -m32 |
| 25 | else |
| 26 | MFLAG = -m31 |
| 27 | endif |
| 28 | |
| 29 | HOSTCFLAGS_bpf-direct.o += $(MFLAG) |
| 30 | HOSTCFLAGS_dropper.o += $(MFLAG) |
| 31 | HOSTCFLAGS_bpf-helper.o += $(MFLAG) |
| 32 | HOSTCFLAGS_bpf-fancy.o += $(MFLAG) |
| 33 | HOSTLOADLIBES_bpf-direct += $(MFLAG) |
| 34 | HOSTLOADLIBES_bpf-fancy += $(MFLAG) |
| 35 | HOSTLOADLIBES_dropper += $(MFLAG) |
Will Drewry | 8ac270d | 2012-04-12 16:48:04 -0500 | [diff] [blame] | 36 | endif |
Ricky Zhou | 0af04ba | 2016-10-13 10:29:14 -0700 | [diff] [blame] | 37 | always := $(hostprogs-m) |
Markos Chandras | e9107f8 | 2014-04-03 14:48:32 -0700 | [diff] [blame] | 38 | else |
| 39 | # MIPS system calls are defined based on the -mabi that is passed |
| 40 | # to the toolchain which may or may not be a valid option |
| 41 | # for the host toolchain. So disable tests if target architecture |
| 42 | # is MIPS but the host isn't. |
| 43 | ifndef CONFIG_MIPS |
Ricky Zhou | 0af04ba | 2016-10-13 10:29:14 -0700 | [diff] [blame] | 44 | always := $(hostprogs-m) |
Markos Chandras | e9107f8 | 2014-04-03 14:48:32 -0700 | [diff] [blame] | 45 | endif |
| 46 | endif |