mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Merge commit '78f75b6fa4'
* commit '78f75b6fa4':
wavpack: extract sample rate from the bitstream
configure: support gcc-4.8 instrumentation
Conflicts:
libavcodec/wavpack.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
8543575cc4
2 changed files with 54 additions and 22 deletions
10
configure
vendored
10
configure
vendored
|
|
@ -2518,6 +2518,16 @@ case "$toolchain" in
|
|||
add_cflags -fsanitize=thread -pie
|
||||
add_ldflags -fsanitize=thread -pie
|
||||
;;
|
||||
gcc-asan)
|
||||
cc_default="gcc"
|
||||
add_cflags -fsanitize=address
|
||||
add_ldflags -fsanitize=address
|
||||
;;
|
||||
gcc-tsan)
|
||||
cc_default="gcc"
|
||||
add_cflags -fsanitize=thread -pie -fPIC
|
||||
add_ldflags -fsanitize=thread -pie -fPIC
|
||||
;;
|
||||
valgrind-massif)
|
||||
target_exec_default=${valgrind:-"valgrind"}
|
||||
target_exec_args="--tool=massif --alloc-fn=av_malloc --alloc-fn=av_mallocz --alloc-fn=av_calloc --alloc-fn=av_fast_padded_malloc --alloc-fn=av_fast_malloc --alloc-fn=av_realloc_f --alloc-fn=av_fast_realloc --alloc-fn=av_realloc"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue