diff options
author | scop <scop> | 2005-03-22 16:31:09 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-22 16:31:09 +0000 |
commit | 9dfd263d3947500783a83a132680db1dc55fdc21 (patch) | |
tree | a510cc9f06c02f6798e8c0d311f3de6ab4db9f75 | |
parent | 21ae02dabb85a27310304ee4c1491c568c837d26 (diff) | |
download | vdr-plugin-dxr3-9dfd263d3947500783a83a132680db1dc55fdc21.tar.gz vdr-plugin-dxr3-9dfd263d3947500783a83a132680db1dc55fdc21.tar.bz2 |
Sync PIC build fix from 0-2 branch.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dxr3cpu.c | 9 |
2 files changed, 9 insertions, 1 deletions
@@ -276,3 +276,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - use $CXX for generating dependencies instead of hardcoded g++ (Ville Skyttä) - assume SSE support implies MMXEXT support, this enables optimized memcpy routines on more systems (Ville Skyttä) +- fix compilation with -fPIC, kudos to ffmpeg (Ville Skyttä) @@ -125,6 +125,13 @@ bool cDxr3CPU::CheckCPUIDPresence() //! cpuid function bool cDxr3CPU::Cpuid(unsigned long function, unsigned long& out_eax, unsigned long& out_ebx, unsigned long& out_ecx, unsigned long& out_edx) { - asm("cpuid": "=a" (out_eax), "=b" (out_ebx), "=c" (out_ecx), "=d" (out_edx) : "a" (function)); + // This works with PIC/non-PIC, from ffmpeg (libavcodec/i386/cputest.c) + __asm __volatile \ + ("movl %%ebx, %%esi\n\t" \ + "cpuid\n\t" \ + "xchgl %%ebx, %%esi" \ + : "=a" (out_eax), "=S" (out_ebx), \ + "=c" (out_ecx), "=d" (out_edx) \ + : "0" (function)); return true; } |