Browse Source

Make tests compile on non-x86.

Originally committed as revision 6860 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 19 years ago
parent
commit
e164fbfeac
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavcodec/Makefile

+ 5
- 1
libavcodec/Makefile View File

@@ -405,7 +405,11 @@ ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(LAVCVERSION)
LIBMAJOR=$(LAVCMAJOR)
endif
TESTS= cpuid_test imgresample-test dct-test motion-test fft-test

TESTS= imgresample-test fft-test
ifeq ($(TARGET_ARCH_X86),yes)
TESTS+= cpuid_test dct-test motion-test
endif

include $(SRC_PATH)/common.mak



Loading…
Cancel
Save