Skip to content

Commit 52455da

Browse files
committed
run checkers
1 parent 8f6914e commit 52455da

File tree

3 files changed

+2
-43
lines changed

3 files changed

+2
-43
lines changed

doc/packaging.md

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -475,26 +475,6 @@ sudo ldconfig && cd /var/tmp && rm -fr build
475475
ln -s /usr/bin/pkgconf /usr/bin/pkg-config
476476
```
477477

478-
#### crc32c
479-
480-
The project depends on the Crc32c library, we need to compile this from source:
481-
482-
```bash
483-
mkdir -p $HOME/Downloads/crc32c && cd $HOME/Downloads/crc32c
484-
curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
485-
tar -xzf - --strip-components=1 && \
486-
cmake \
487-
-DCMAKE_BUILD_TYPE=Release \
488-
-DBUILD_SHARED_LIBS=yes \
489-
-DCRC32C_BUILD_TESTS=OFF \
490-
-DCRC32C_BUILD_BENCHMARKS=OFF \
491-
-DCRC32C_USE_GLOG=OFF \
492-
-S . -B cmake-out && \
493-
cmake --build cmake-out -- -j ${NCPU:-4} && \
494-
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
495-
sudo ldconfig
496-
```
497-
498478
#### abseil
499479

500480
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp curl -fsSL
@@ -964,26 +944,6 @@ sudo ldconfig && cd /var/tmp && rm -fr build
964944
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/local/lib/pkgconfig
965945
```
966946

967-
#### crc32c
968-
969-
The project depends on the Crc32c library, we need to compile this from source:
970-
971-
```bash
972-
mkdir -p $HOME/Downloads/crc32c && cd $HOME/Downloads/crc32c
973-
curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
974-
tar -xzf - --strip-components=1 && \
975-
cmake \
976-
-DCMAKE_BUILD_TYPE=Release \
977-
-DBUILD_SHARED_LIBS=yes \
978-
-DCRC32C_BUILD_TESTS=OFF \
979-
-DCRC32C_BUILD_BENCHMARKS=OFF \
980-
-DCRC32C_USE_GLOG=OFF \
981-
-S . -B cmake-out && \
982-
cmake --build cmake-out -- -j ${NCPU:-4} && \
983-
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
984-
sudo ldconfig
985-
```
986-
987947
#### abseil
988948

989949
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp curl -fsSL

google/cloud/bigtable/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ cc_library(
5959
"@googleapis//google/bigtable/v2:bigtable_cc_grpc",
6060
"@googleapis//google/longrunning:longrunning_cc_grpc",
6161
"@googleapis//google/rpc:error_details_cc_proto",
62-
"@crc32c",
6362
"@abseil-cpp//absl/strings:cord",
63+
"@abseil-cpp//absl/crc:crc32c",
6464
"@grpc//:grpc++",
6565
] + select({
6666
":metrics_enabled": [

google/cloud/storage/BUILD.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ cc_library(
7777
"@abseil-cpp//absl/algorithm:container",
7878
"@abseil-cpp//absl/strings",
7979
"@abseil-cpp//absl/time",
80-
"@crc32c",
8180
"@curl",
8281
"@googleapis//google/storage/v2:storage_cc_grpc",
8382
"@googleapis//google/storage/v2:storage_cc_proto",
@@ -141,12 +140,12 @@ cc_library(
141140
deps = [
142141
"//:common",
143142
"//google/cloud:google_cloud_cpp_rest_internal",
143+
"@abseil-cpp//absl/crc:crc32c",
144144
"@abseil-cpp//absl/strings:cord",
145145
"@abseil-cpp//absl/strings:str_format",
146146
"@abseil-cpp//absl/time",
147147
"@abseil-cpp//absl/types:span",
148148
"@abseil-cpp//absl/types:variant",
149-
"@crc32c",
150149
"@curl",
151150
"@nlohmann_json//:json",
152151
] + select({

0 commit comments

Comments
 (0)