summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJosh Poimboeuf <jpoimboe@redhat.com>2016-03-03 12:39:30 -0500
committerIngo Molnar <mingo@kernel.org>2016-03-05 03:20:44 -0500
commit3b27a0c85d7068130ed8e3977a2e977ade986841 (patch)
treeb769805fe97413633e9e7f49bdff8f95c928f7ae /Makefile
parente17cf3a80d4ba0c4e40bf1a89deb1354c2e10e14 (diff)
objtool: Detect and warn if libelf is missing and don't break the build
With CONFIG_STACK_VALIDATION enabled, if the host system doesn't have a development version of libelf installed, the build fails with errors like: elf.h:22:18: fatal error: gelf.h: No such file or directory compilation terminated. Instead of failing to build, instead just print a warning and disable stack validation. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Sudip Mukherjee <sudipm.mukherjee@gmail.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-next@vger.kernel.org Cc: linux@roeck-us.net Cc: live-patching@vger.kernel.org Link: http://lkml.kernel.org/r/8c27fe00face60f42e888ddb3142c97e45223165.1457026550.git.jpoimboe@redhat.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2c27a01c42f1..60b729540785 100644
--- a/Makefile
+++ b/Makefile
@@ -995,8 +995,19 @@ prepare0: archprepare FORCE
995# All the preparing.. 995# All the preparing..
996prepare: prepare0 prepare-objtool 996prepare: prepare0 prepare-objtool
997 997
998ifdef CONFIG_STACK_VALIDATION
999 has_libelf := $(shell echo "int main() {}" | $(HOSTCC) -xc -o /dev/null -lelf - &> /dev/null && echo 1 || echo 0)
1000 ifeq ($(has_libelf),1)
1001 objtool_target := tools/objtool FORCE
1002 else
1003 $(warning "Cannot use CONFIG_STACK_VALIDATION, please install libelf-dev or elfutils-libelf-devel")
1004 SKIP_STACK_VALIDATION := 1
1005 export SKIP_STACK_VALIDATION
1006 endif
1007endif
1008
998PHONY += prepare-objtool 1009PHONY += prepare-objtool
999prepare-objtool: $(if $(CONFIG_STACK_VALIDATION), tools/objtool FORCE) 1010prepare-objtool: $(objtool_target)
1000 1011
1001# Generate some files 1012# Generate some files
1002# --------------------------------------------------------------------------- 1013# ---------------------------------------------------------------------------