Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed base64 from contrib #51 #108

Merged
merged 6 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/actions/prepare_vm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,13 @@ runs:
(V=4.8.1; curl -L https://github.com/ccache/ccache/releases/download/v${V}/ccache-${V}-linux-x86_64.tar.xz | \
sudo tar -xJ -C /usr/local/bin/ --strip-components=1 --no-same-owner ccache-${V}-linux-x86_64/ccache)
sudo rm -rf llvm.sh libiconv-1.15
cd ..
sudo wget https://github.com/aklomp/base64/archive/refs/tags/v0.5.2.tar.gz
sudo tar -xvzf v0.5.2.tar.gz
cd base64-0.5.2
sudo mkdir build
cd build
sudo cmake ..
sudo cmake --build . --target install
cd ../../
sudo rm -r ./base64-0.5.2
Shikaree68 marked this conversation as resolved.
Show resolved Hide resolved
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you ok with this warning, then...
- zstd
- lz4
- snappy 1.1.8+

- base64

## Runtime requirements

Expand All @@ -53,6 +53,16 @@ cd libiconv-1.15
./configure --prefix=/usr/local
sudo make
sudo make install

sudo wget https://github.com/aklomp/base64/archive/refs/tags/v0.5.2.tar.gz
sudo tar -xvzf v0.5.2.tar.gz
cd base64-0.5.2
sudo mkdir build
cd build
sudo cmake ..
sudo cmake --build . --target install
cd ../../

```

## Create the work directory
Expand Down
1 change: 1 addition & 0 deletions cmake/external_libs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ find_package(xxHash REQUIRED)
find_package(ZSTD REQUIRED)
find_package(LZ4 REQUIRED)
find_package(Snappy 1.1.8 REQUIRED CONFIG)
find_package(base64 REQUIRED)

# rapidjson
add_library(ydb-sdk-rapidjson INTERFACE)
Expand Down
1 change: 0 additions & 1 deletion contrib/libs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
add_subdirectory(base64)
add_subdirectory(brotli)
add_subdirectory(double-conversion)
add_subdirectory(fastlz)
Expand Down
14 changes: 0 additions & 14 deletions contrib/libs/base64/CMakeLists.txt

This file was deleted.

16 changes: 0 additions & 16 deletions contrib/libs/base64/avx2/CMakeLists.darwin-arm64.txt

This file was deleted.

34 changes: 0 additions & 34 deletions contrib/libs/base64/avx2/CMakeLists.darwin-x86_64.txt

This file was deleted.

17 changes: 0 additions & 17 deletions contrib/libs/base64/avx2/CMakeLists.linux-aarch64.txt

This file was deleted.

35 changes: 0 additions & 35 deletions contrib/libs/base64/avx2/CMakeLists.linux-x86_64.txt

This file was deleted.

19 changes: 0 additions & 19 deletions contrib/libs/base64/avx2/CMakeLists.txt

This file was deleted.

32 changes: 0 additions & 32 deletions contrib/libs/base64/avx2/CMakeLists.windows-x86_64.txt

This file was deleted.

Loading
Loading