mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-27 17:54:35 +00:00
* d/rules: Be less noisy when building without grpc.
This commit is contained in:
parent
de4010878c
commit
f9ecc19b66
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -11,6 +11,7 @@ llvm-toolchain-snapshot (1:18~++20230921012857+4cf8da94198d-1~exp1) UNRELEASED;
|
|||||||
* Consolidate the build flags for the wasm builds.
|
* Consolidate the build flags for the wasm builds.
|
||||||
* Disable the clc and wasm builds when not building binary indep packages.
|
* Disable the clc and wasm builds when not building binary indep packages.
|
||||||
* Limit the parallel links to 2 on riscv64.
|
* Limit the parallel links to 2 on riscv64.
|
||||||
|
* d/rules: Be less noisy when building without grpc.
|
||||||
|
|
||||||
-- Matthias Klose <doko@debian.org> Sun, 08 Oct 2023 08:10:51 +0200
|
-- Matthias Klose <doko@debian.org> Sun, 08 Oct 2023 08:10:51 +0200
|
||||||
|
|
||||||
|
2
debian/rules
vendored
2
debian/rules
vendored
@ -136,7 +136,7 @@ STAGE_2_CMAKE_EXTRA += -DCLANG_SYSTEMZ_DEFAULT_ARCH=$(ZARCH)
|
|||||||
# clangd remote index support requires GRPC & protobuf.
|
# clangd remote index support requires GRPC & protobuf.
|
||||||
# Enable if minimum tested versions are available.
|
# Enable if minimum tested versions are available.
|
||||||
CLANGD_GRPC_INSTALLED=no
|
CLANGD_GRPC_INSTALLED=no
|
||||||
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' libgrpc++-dev) gt 1.30.0; echo $$?),0)
|
ifeq ($(shell v=$$(dpkg-query -W -f '$${Version}' libgrpc++-dev 2>/dev/null); if [ -z "$$v" ]; then echo 1; else dpkg --compare-versions $$v gt 1.30.0; echo $$?; fi),0)
|
||||||
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' protobuf-compiler-grpc) gt 1.30.0; echo $$?),0)
|
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' protobuf-compiler-grpc) gt 1.30.0; echo $$?),0)
|
||||||
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' libprotobuf-dev) gt 3.12.0; echo $$?),0)
|
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' libprotobuf-dev) gt 3.12.0; echo $$?),0)
|
||||||
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' protobuf-compiler) gt 3.12.0; echo $$?),0)
|
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' protobuf-compiler) gt 3.12.0; echo $$?),0)
|
||||||
|
Loading…
Reference in New Issue
Block a user