diff options
author | Nikita Sokolov <faucct@gmail.com> | 2023-04-26 09:39:37 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 22:39:37 -0700 |
commit | f6af2087eeb4f256972e063261b55f26ffd6dddb (patch) | |
tree | f2f37758273b788e92814f870d21868cca13953d | |
parent | ab716ee41dc3b0f0c645d9492ea0c2b41bea64b3 (diff) | |
download | flatbuffers-f6af2087eeb4f256972e063261b55f26ffd6dddb.tar.gz flatbuffers-f6af2087eeb4f256972e063261b55f26ffd6dddb.tar.bz2 flatbuffers-f6af2087eeb4f256972e063261b55f26ffd6dddb.zip |
drop glibc from runtime dependencies (#7906)
https://github.com/google/flatbuffers/issues/7696
The binary size grows from 5.8MB to 7.2MB, but this way it works on Ubuntu 18.04 and amazonlinux.
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90c6cfe5..0024c490 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: cmake - run: CXX=${{ matrix.cxx }} cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DFLATBUFFERS_STRICT_MODE=ON . + run: CXX=${{ matrix.cxx }} cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DFLATBUFFERS_STRICT_MODE=ON -DFLATBUFFERS_STATIC_FLATC=ON . - name: build run: make -j - name: test |