mirror of
https://github.com/libretro/RetroArch
synced 2025-03-15 22:21:01 +00:00
Ifdef out unsupported .arm line (also - LLVM/Clang assembler does
not seem to like float literals at all. Please try to change these into something else)
This commit is contained in:
parent
10f71265e5
commit
63b942b301
@ -383,7 +383,7 @@
|
||||
"-DHAVE_GLSL",
|
||||
"-DINLINE=inline",
|
||||
"-DLSB_FIRST",
|
||||
"-DHAVE_THREAD",
|
||||
"-DHAVE_THREADS",
|
||||
"-D__LIBRETRO__",
|
||||
"-DRARCH_MOBILE",
|
||||
"-std=gnu99",
|
||||
@ -412,6 +412,7 @@
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
||||
COPY_PHASE_STRIP = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_OPTIMIZATION_LEVEL = 2;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
@ -434,7 +435,7 @@
|
||||
"-DHAVE_GLSL",
|
||||
"-DINLINE=inline",
|
||||
"-DLSB_FIRST",
|
||||
"-DHAVE_THREAD",
|
||||
"-DHAVE_THREADS",
|
||||
"-D__LIBRETRO__",
|
||||
"-DRARCH_MOBILE",
|
||||
"-std=gnu99",
|
||||
|
@ -14,7 +14,9 @@
|
||||
*/
|
||||
#if defined(__ARM_NEON__) || defined(HAVE_NEON)
|
||||
|
||||
#ifndef __MACH__
|
||||
.arm
|
||||
#endif
|
||||
.align 4
|
||||
.globl process_sinc_neon_asm
|
||||
.globl _process_sinc_neon_asm
|
||||
|
@ -14,7 +14,9 @@
|
||||
*/
|
||||
#if defined(__ARM_NEON__) || defined(HAVE_NEON)
|
||||
|
||||
#ifndef __MACH__
|
||||
.arm
|
||||
#endif
|
||||
|
||||
.align 4
|
||||
.globl audio_convert_s16_float_asm
|
||||
|
Loading…
x
Reference in New Issue
Block a user