On Tue, Apr 15, 2014 at 10:22:49AM -0700, Cody P Schafer wrote: > On systems like ubuntu 12.04, llvm-config is llvm 2.9, but > llvm-config-3.0 and llvm-config-3.3 (for example) are versions 3.0 and > 3.3 respectively. Allow overriding the name/path of the llvm-config > script so people can use these versioned config scripts > > Signed-off-by: Cody P Schafer <cody@xxxxxxxxxxxxxxxxxx> Reviewed-by: Josh Triplett <josh@xxxxxxxxxxxxxxxx> > Makefile | 13 +++++++------ > 1 file changed, 7 insertions(+), 6 deletions(-) > > diff --git a/Makefile b/Makefile > index c3f3104..bbdc088 100644 > --- a/Makefile > +++ b/Makefile > @@ -30,9 +30,10 @@ HAVE_GCC_DEP:=$(shell touch .gcc-test.c && \ > $(CC) -c -Wp,-MD,.gcc-test.d .gcc-test.c 2>/dev/null && \ > echo 'yes'; rm -f .gcc-test.d .gcc-test.o .gcc-test.c) > HAVE_GTK2:=$(shell pkg-config --exists gtk+-2.0 2>/dev/null && echo 'yes') > -HAVE_LLVM:=$(shell llvm-config --version >/dev/null 2>&1 && echo 'yes') > -HAVE_LLVM_VERSION:=$(shell llvm-config --version | grep "^[3-9].*" >/dev/null 2>&1 && echo yes) > -LLVM_VERSION=$(shell llvm-config --version) > +LLVM_CONFIG=llvm-config > +HAVE_LLVM:=$(shell $(LLVM_CONFIG) --version >/dev/null 2>&1 && echo 'yes') > +HAVE_LLVM_VERSION:=$(shell $(LLVM_CONFIG) --version | grep "^[3-9].*" >/dev/null 2>&1 && echo yes) > +LLVM_VERSION=$(shell $(LLVM_CONFIG) --version) > > GCC_BASE = $(shell $(CC) --print-file-name=) > BASIC_CFLAGS = -DGCC_BASE=\"$(GCC_BASE)\" > @@ -84,9 +85,9 @@ HAVE_LLVM=no > else > LLVM_PROGS := sparse-llvm > $(LLVM_PROGS): LD := g++ > -LLVM_LDFLAGS := $(shell llvm-config --ldflags) > -LLVM_CFLAGS := $(shell llvm-config --cflags | sed -e "s/-DNDEBUG//g") > -LLVM_LIBS := $(shell llvm-config --libs) > +LLVM_LDFLAGS := $(shell $(LLVM_CONFIG) --ldflags) > +LLVM_CFLAGS := $(shell $(LLVM_CONFIG) --cflags | sed -e "s/-DNDEBUG//g") > +LLVM_LIBS := $(shell $(LLVM_CONFIG) --libs) > PROGRAMS += $(LLVM_PROGS) > INST_PROGRAMS += sparse-llvm sparsec > sparse-llvm.o: BASIC_CFLAGS += $(LLVM_CFLAGS) > -- > 1.9.2 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-sparse" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html