diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-03 16:46:17 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-04 19:29:14 +0200 |
commit | 1f6d86991f191568d45484f2b3740c2dcd0a7b45 (patch) | |
tree | e1014f6fb0443725e607d7c926337759c0cbf303 /libavutil/x86/Makefile | |
parent | 65d12900432ac880d764edbbd36818431484a76e (diff) | |
download | ffmpeg-1f6d86991f191568d45484f2b3740c2dcd0a7b45.tar.gz |
x86: Add YASM implementations of cpuid and xgetbv from x264
This allows detecting CPU features with builds that have neither
gcc inline assembly nor the right compiler intrinsics enabled.
Diffstat (limited to 'libavutil/x86/Makefile')
-rw-r--r-- | libavutil/x86/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/x86/Makefile b/libavutil/x86/Makefile index 4546353669..3dd696c26a 100644 --- a/libavutil/x86/Makefile +++ b/libavutil/x86/Makefile @@ -1,4 +1,5 @@ OBJS += x86/cpu.o \ x86/float_dsp_init.o \ -YASM-OBJS += x86/float_dsp.o \ +YASM-OBJS += x86/cpuid.o \ + x86/float_dsp.o \ |