Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build JPEG without SIMD
Browse files Browse the repository at this point in the history
vrabaud committed Jan 17, 2025
1 parent 444b6f7 commit 638409f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci-unix-static-sanitized.yml
Original file line number Diff line number Diff line change
@@ -78,6 +78,13 @@ jobs:
echo "CI_LDFLAGS=-fsanitize=${{ matrix.sanitizer }}" >> $GITHUB_ENV
echo "CI_LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Build jpeg for msan
if: ${{ (steps.cache-hit.outputs.hit == 'false') && (matrix.sanitizer == 'memory')}}
working-directory: ./ext
run: |
sed -i -e 's/cmake \(.*\)/cmake \1 -DWITH_SIMD=OFF/g' libjpeg.cmd
./libjpeg.cmd
- name: Build aom for msan
if: ${{ (steps.cache-hit.outputs.hit == 'false') && (matrix.sanitizer == 'memory')}}
working-directory: ./ext

0 comments on commit 638409f

Please sign in to comment.