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

ext/dav1d.cmd: Add -Db_lundef=false to comments #2035

Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-windows-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
with:
path: ext
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-releasedeps-v2
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-releasedeps
- name: Print cmake version
run: cmake --version
- uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
with:
path: ext
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-alldeps-v2
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-alldeps
- name: Print cmake version
run: cmake --version
- uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
Expand Down
5 changes: 3 additions & 2 deletions ext/dav1d.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ mkdir build
cd build

: # macOS might require: -Dc_args=-fno-stack-check
: # Build with asan: -Db_sanitize=address
: # Build with ubsan: -Db_sanitize=undefined
: # Build with asan: -Db_sanitize=address -Db_lundef=false
: # Build with msan: -Db_sanitize=memory -Db_lundef=false -Denable_asm=false
: # Build with ubsan: -Db_sanitize=undefined -Db_lundef=false
meson setup --default-library=static --buildtype release -Denable_tools=false -Denable_tests=false ..
ninja
cd ../..
Loading