From dc04048e1e25a695983bfc5237e7df4fc036f863 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Mon, 28 Oct 2013 08:15:03 +0100 Subject: src: raise error if GCABI is not defined Defaulting to v2 (or any version, at that) is a bad idea. --- src/Makefile.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/Makefile.inc b/src/Makefile.inc index d1f590f..951beea 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -1,4 +1,7 @@ -GCABI ?= v2 +ifndef GCABI +$(error GCABI is undefined. Consult the README.md file to set it according to your kernel) +endif + PLATFORM_GL_LIBS ?= -lEGL -lGLESv2 CC = $(GCCPREFIX)gcc -- cgit