mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-27 02:40:31 +00:00
Push buildfix for libFLAC
This commit is contained in:
parent
24b6e231a3
commit
d38cd7403e
2
deps/flac-1.3.2/src/libFLAC/cpu.c
vendored
2
deps/flac-1.3.2/src/libFLAC/cpu.c
vendored
@ -88,7 +88,7 @@ cpu_xgetbv_x86(void)
|
||||
return (uint32_t)_xgetbv(0);
|
||||
#elif defined __GNUC__
|
||||
uint32_t lo, hi;
|
||||
asm volatile (".byte 0x0f, 0x01, 0xd0" : "=a"(lo), "=d"(hi) : "c" (0));
|
||||
__asm__ volatile (".byte 0x0f, 0x01, 0xd0" : "=a"(lo), "=d"(hi) : "c" (0));
|
||||
return lo;
|
||||
#else
|
||||
return 0;
|
||||
|
@ -16,7 +16,7 @@ HAVE_VULKAN := 0
|
||||
HAVE_CHD := 1
|
||||
IS_X86 := 0
|
||||
FLAGS :=
|
||||
HAVE_LIGHTREC := 1
|
||||
HAVE_LIGHTREC := 0
|
||||
|
||||
ifeq ($(TARGET_ARCH),x86)
|
||||
IS_X86 := 1
|
||||
|
Loading…
Reference in New Issue
Block a user