mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-19 05:49:09 +02:00
39e16ee228
When we use dllexport properly for shared libraries on windows, there's no longer any issue with linking the object files for e.g. libavcodec statically into checkasm. (It's still not possible to link the built object files for e.g. libavformat statically to libavcodec though, since libavformat exepcts to load av_export_* symbols from a DLL.) This reverts commit 4e62b57ee03928c12a3119dcaf78ffa1f4d6985f. Signed-off-by: Martin Storsjö <martin@martin.st>
24 lines
1.4 KiB
Makefile
24 lines
1.4 KiB
Makefile
FATE_CHECKASM = fate-checkasm-audiodsp \
|
|
fate-checkasm-blockdsp \
|
|
fate-checkasm-bswapdsp \
|
|
fate-checkasm-dcadsp \
|
|
fate-checkasm-fmtconvert \
|
|
fate-checkasm-h264dsp \
|
|
fate-checkasm-h264pred \
|
|
fate-checkasm-h264qpel \
|
|
fate-checkasm-hevc_add_res \
|
|
fate-checkasm-hevc_idct \
|
|
fate-checkasm-hevc_mc \
|
|
fate-checkasm-huffyuvdsp \
|
|
fate-checkasm-synth_filter \
|
|
fate-checkasm-v210enc \
|
|
fate-checkasm-vp8dsp \
|
|
fate-checkasm-vp9dsp \
|
|
|
|
$(FATE_CHECKASM): tests/checkasm/checkasm$(EXESUF)
|
|
$(FATE_CHECKASM): CMD = run tests/checkasm/checkasm --test=$(@:fate-checkasm-%=%)
|
|
$(FATE_CHECKASM): REF = /dev/null
|
|
|
|
FATE += $(FATE_CHECKASM)
|
|
fate-checkasm: $(FATE_CHECKASM)
|