We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5717a commit c97e2e8Copy full SHA for c97e2e8
1 file changed
.github/workflows/build-libwebp.yml
@@ -77,7 +77,7 @@ jobs:
77
cmake .. \
78
-DCMAKE_BUILD_TYPE=MinSizeRel \
79
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON \
80
- -DCMAKE_C_FLAGS="-ffunction-sections -fdata-sections -fvisibility=hidden -fno-asynchronous-unwind-tables -Os" \
+ -DCMAKE_C_FLAGS="-ffunction-sections -fdata-sections -fvisibility=hidden -fno-asynchronous-unwind-tables -Oz" \
81
-DBUILD_SHARED_LIBS=ON \
82
-DWEBP_BUILD_ANIM_UTILS=OFF \
83
-DWEBP_BUILD_CWEBP=OFF \
@@ -90,7 +90,7 @@ jobs:
90
-DWEBP_BUILD_EXTRAS=OFF \
91
$EXTRA_FLAGS
92
cmake --build . --target webp --config MinSizeRel
93
- strip -x libwebp.* 2>/dev/null || true
+ strip -s libwebp.* 2>/dev/null || true
94
95
- name: Build (Windows)
96
if: runner.os == 'Windows'
0 commit comments