Xcode 6 - Failed to create Accelerate Module

I use Xcode 6 beta 2 (6A216f) and everything was fine, but when I build any device other than 5, I get 111 errors. The problem arises because I use FXBlurView and import the Accelerate infrastructure.

I searched a lot and did not find any solution. This is mistake:

This is too long, so I booted into pastebin.

PS: I don’t know which part you need, so I downloaded everything.

Also, if I remove #import "FXBlurView.h" from the Bridging-Header header, I get no errors

EDIT: So, I "solved" my problem. The error says that the compiler does not know what vFloat is, so I checked vecLibTypes.h and saw that vFloat was defined in this piece of code:

#elif defined(__i386__) || defined(__x86_64__)
#ifdef __SSE__
#if defined(__GNUC__)
#include <xmmintrin.h>
typedef float                   vFloat          __attribute__ ((__vector_size__ (16)));
#else /* not __GNUC__ */
#include <xmmintrin.h>
typedef __m128                          vFloat;
#endif /* __GNUC__ */
#endif  /* defined(__SSE__) */

#elif, ...

EDIT2: @Nick

+4
1
+3

Source: https://habr.com/ru/post/1545099/


All Articles