shil: Disable external assembly implementations

Using external function pointers is broken after the rec-cpp structural changes,
and relatively low priority so disabled for now.

Fixes builds on arm, non-android (see #720)
This commit is contained in:
Stefanos Kornilios Mitsis Poiitidis 2015-08-03 10:41:34 +02:00
parent ac6bdddae3
commit 61394d7a44
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,8 @@
d) Cookies (if you're really lucky)
*/
#if HOST_CPU == CPU_ARM && !defined(_ANDROID)
#if HOST_CPU == CPU_ARM && !defined(_ANDROID) && 0
//FIXME: Fix extern function support on shil, or remove these
extern "C" void ftrv_asm(float* fd,float* fn, float* fm);
extern "C" f32 fipr_asm(float* fn, float* fm);
#define ftrv_impl ftrv_asm