mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-27 02:42:04 +00:00
* d/rules: Be less noisy when building without grpc.
This commit is contained in:
parent
0eff8a6b9f
commit
cf394ad052
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -4,6 +4,7 @@ llvm-toolchain-17 (1:17.0.2-1~exp2) UNRELEASED; urgency=medium
|
||||
* Consolidate the build flags for the wasm builds.
|
||||
* Disable the clc and wasm builds when not building binary indep packages.
|
||||
* Limit the parallel links to 2 on riscv64.
|
||||
* d/rules: Be less noisy when building without grpc.
|
||||
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 04 Oct 2023 09:46:49 +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.
|
||||
# Enable if minimum tested versions are available.
|
||||
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}' 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)
|
||||
|
Loading…
Reference in New Issue
Block a user