diff --git a/debian/changelog b/debian/changelog index 32a47ae8..4087d6ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,11 @@ -llvm-toolchain-snapshot (1:3.7~svn228604-1) unstable; urgency=medium +llvm-toolchain-snapshot (1:3.7~svn229332-1~exp1) experimental; urgency=medium + + * New snapshot release + * Support of gcc 5.0 (Closes: #777988) + + -- Sylvestre Ledru Sun, 15 Feb 2015 22:22:15 +0100 + +llvm-toolchain-snapshot (1:3.7~svn228821-1) unstable; urgency=medium * New snapshot release * Bring back polly and remove libcloog-isl-dev & libisl-dev as build deps diff --git a/debian/rules b/debian/rules index 5a1919f7..7f553538 100755 --- a/debian/rules +++ b/debian/rules @@ -3,7 +3,7 @@ TARGET_BUILD := build-llvm DEB_INST := $(CURDIR)/debian/tmp/ #GCC_VERSION := 4.8 -GCC_VERSION := $(shell dpkg-query -W -f '$${Version}' g++ | sed -rne 's,^([0-9]+:)?([0-9]+\.[0-9]+).*$$,\2,p') +GCC_VERSION := $(shell dpkg-query -W -f '$${Version}' g++ | sed -rne 's,^([0-9]+:)?([0-9]+\.[0-9]+|[0-9]+).*$$,\2,p') LLVM_VERSION := 3.7 LLVM_VERSION_FULL := $(LLVM_VERSION).0 SONAME_EXT := 1 @@ -31,7 +31,7 @@ LDFLAGS_EXTRA += -latomic endif ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' g++-$(GCC_VERSION)) lt 4.7.2-10~ ; echo $$?),0) -# Too old version of gcc. Force 4.8 +# Too old version of gcc. Force 4.9 GCC_VERSION := 4.9 endif