mirror of
https://github.com/libretro/RetroArch
synced 2025-03-16 07:21:03 +00:00
Merge pull request #3995 from frangarcj/master
(VITA) Add support for -mthumb
This commit is contained in:
commit
b7dd66137b
@ -213,7 +213,7 @@ else ifeq ($(platform), vita)
|
||||
INCLUDE += -Ideps/zlib
|
||||
PLATCFLAGS := -marm -mfloat-abi=hard -fsingle-precision-constant \
|
||||
-mword-relocations -fno-unwind-tables -fno-asynchronous-unwind-tables -ftree-vectorize -fno-optimize-sibling-calls
|
||||
LIBS += -lSceKernel_stub -lSceDisplay_stub -lSceGxm_stub -lSceNet_stub -lSceNetCtl_stub\
|
||||
LIBS += -lSceDisplay_stub -lSceGxm_stub -lSceNet_stub -lSceNetCtl_stub\
|
||||
-lSceSysmodule_stub -lSceCtrl_stub -lSceTouch_stub -lSceAudio_stub -lSceFiber_stub\
|
||||
-lScePower_stub -lSceRtc_stub -lSceCommonDialog_stub -lScePgf_stub \
|
||||
-lSceMotion_stub -lSceAppMgr_stub -lpng -lm -lc
|
||||
|
@ -24,7 +24,9 @@
|
||||
#endif
|
||||
.align 4
|
||||
.globl resampler_CC_downsample_neon
|
||||
.type resampler_CC_downsample_neon, %function
|
||||
.globl _resampler_CC_downsample_neon
|
||||
.type _resampler_CC_downsample_neon, %function
|
||||
|
||||
# size_t resampler_CC_downsample_neon(float *outp, const float *inp,
|
||||
# rarch_CC_resampler_t* re_, size_t input_frames, float ratio);
|
||||
@ -196,7 +198,9 @@ bx lr
|
||||
|
||||
.align 4
|
||||
.globl resampler_CC_upsample_neon
|
||||
.type resampler_CC_upsample_neon, %function
|
||||
.globl _resampler_CC_upsample_neon
|
||||
.type _resampler_CC_upsample_neon, %function
|
||||
|
||||
# size_t resampler_CC_upsample_neon(float *outp, const float *inp,
|
||||
# rarch_CC_resampler_t* re_, size_t input_frames, float ratio);
|
||||
|
@ -19,7 +19,9 @@
|
||||
#endif
|
||||
.align 4
|
||||
.globl process_sinc_neon_asm
|
||||
.type process_sinc_neon_asm, %function
|
||||
.globl _process_sinc_neon_asm
|
||||
.type _process_sinc_neon_asm, %function
|
||||
# void process_sinc_neon(float *out, const float *left, const float *right, const float *coeff, unsigned taps)
|
||||
# Assumes taps is >= 8, and a multiple of 8.
|
||||
process_sinc_neon_asm:
|
||||
|
@ -27,7 +27,9 @@
|
||||
|
||||
.align 4
|
||||
.globl convert_float_s16_asm
|
||||
.type convert_float_s16_asm, %function
|
||||
.globl _convert_float_s16_asm
|
||||
.type _convert_float_s16_asm, %function
|
||||
# convert_float_s16_asm(int16_t *out, const float *in, size_t samples)
|
||||
convert_float_s16_asm:
|
||||
_convert_float_s16_asm:
|
||||
|
@ -27,7 +27,9 @@
|
||||
|
||||
.align 4
|
||||
.globl convert_s16_float_asm
|
||||
.type convert_s16_float_asm, %function
|
||||
.globl _convert_s16_float_asm
|
||||
.type _convert_s16_float_asm, %function
|
||||
# convert_s16_float_asm(float *out, const int16_t *in, size_t samples, const float *gain)
|
||||
convert_s16_float_asm:
|
||||
_convert_s16_float_asm:
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
@ void* memcpy(void *destination, const void *source, size_t num)
|
||||
.global memcpy_neon
|
||||
|
||||
.type memcpy_neon, %function
|
||||
/*
|
||||
* ENABLE_UNALIGNED_MEM_ACCESSES macro can be defined to permit the use
|
||||
* of unaligned load/store memory accesses supported since ARMv6. This
|
||||
|
Loading…
x
Reference in New Issue
Block a user