mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-12 09:03:59 +00:00
* Workaround:
The 5| in the debian/rules regexp is a crappy workaround. g++ 5.2 in Debian is not providing a g++-5.2 binary (only g++-5) accomodate that by hardcoding the 5 detection * Remove Dummy.html from clang-3.7-doc to avoid install (Closes: #794539)
This commit is contained in:
parent
136c1e97ff
commit
1f3894fc86
10
debian/changelog
vendored
10
debian/changelog
vendored
@ -1,3 +1,13 @@
|
|||||||
|
llvm-toolchain-3.7 (1:3.7~+rc2-2) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Workaround:
|
||||||
|
The 5| in the debian/rules regexp is a crappy workaround.
|
||||||
|
g++ 5.2 in Debian is not providing a g++-5.2 binary (only
|
||||||
|
g++-5) accomodate that by hardcoding the 5 detection
|
||||||
|
* Remove Dummy.html from clang-3.7-doc to avoid install (Closes: #794539)
|
||||||
|
|
||||||
|
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 04 Aug 2015 09:27:22 +0200
|
||||||
|
|
||||||
llvm-toolchain-3.7 (1:3.7~+rc2-1) unstable; urgency=medium
|
llvm-toolchain-3.7 (1:3.7~+rc2-1) unstable; urgency=medium
|
||||||
|
|
||||||
* New snapshot release
|
* New snapshot release
|
||||||
|
1
debian/clang-X.Y-doc.install.in
vendored
1
debian/clang-X.Y-doc.install.in
vendored
@ -1 +0,0 @@
|
|||||||
usr/lib/llvm-@LLVM_VERSION@/docs/llvm/html/
|
|
4
debian/rules
vendored
4
debian/rules
vendored
@ -3,7 +3,9 @@
|
|||||||
TARGET_BUILD := build-llvm
|
TARGET_BUILD := build-llvm
|
||||||
DEB_INST := $(CURDIR)/debian/tmp/
|
DEB_INST := $(CURDIR)/debian/tmp/
|
||||||
#GCC_VERSION := 4.8
|
#GCC_VERSION := 4.8
|
||||||
GCC_VERSION := $(shell dpkg-query -W -f '$${Version}' g++ | sed -rne 's,^([0-9]+:)?([0-9]+\.[0-9]+|[0-9]+).*$$,\2,p')
|
# The 5| in the regexp is a crappy workaround. g++ 5.2 in Debian is not providing a g++-5.2 binary (only g++-5)
|
||||||
|
# accomodate that by hardcoding the 5 detection
|
||||||
|
GCC_VERSION := $(shell dpkg-query -W -f '$${Version}' g++ | sed -rne 's,^([0-9]+:)?(5|[0-9]+\.[0-9]+|[0-9]+).*$$,\2,p')
|
||||||
LLVM_VERSION := 3.7
|
LLVM_VERSION := 3.7
|
||||||
LLVM_VERSION_FULL := $(LLVM_VERSION).0
|
LLVM_VERSION_FULL := $(LLVM_VERSION).0
|
||||||
SONAME_EXT := 1
|
SONAME_EXT := 1
|
||||||
|
Loading…
Reference in New Issue
Block a user