Code: Select all
In file included from Helpers.h:17:0,
from Core.c:20:
c:\mingw\lib\gcc\mingw64\4.8.1\include\tmmintrin.h:31:3: error: #error "SSSE3 instruction set not enabled"
# error "SSSE3 instruction set not enabled"
^
In file included from Core.c:20:0:
Helpers.h:27:1: error: unknown type name '__m128i'
__m128i BroadcastInt(int32_t constant);
^
Core.c: In function 'render_spans_1cycle_notexel1':
Core.c:3736:7: error: unknown type name '__m128i'
__m128i data1 = _mm_load_si128((__m128i*) (localspan + 0));
^
Core.c:3736:7: warning: implicit declaration of function '_mm_load_si128' [-Wimplicit-function-declaration]
Core.c:3736:39: error: '__m128i' undeclared (first use in this function)
__m128i data1 = _mm_load_si128((__m128i*) (localspan + 0));
^
Core.c:3736:39: note: each undeclared identifier is reported only once for each function it appears in
Core.c:3736:47: error: expected expression before ')' token
__m128i data1 = _mm_load_si128((__m128i*) (localspan + 0));
^
Core.c:3737:15: error: expected ';' before 'data2'
__m128i data2 = _mm_load_si128((__m128i*) (localspan + 4));
^
Core.c:3738:7: warning: implicit declaration of function '_mm_srai_epi32' [-Wimplicit-function-declaration]
data1 = _mm_srai_epi32(data1, 14);
^
Core.c:3739:7: error: 'data2' undeclared (first use in this function)
data2 = _mm_srai_epi32(data2, 16);
^
Core.c:3740:7: warning: implicit declaration of function '_mm_store_si128' [-Wimplicit-function-declaration]
_mm_store_si128((__m128i*) (slocalspan + 0), data1);
^
Core.c:3740:32: error: expected expression before ')' token
_mm_store_si128((__m128i*) (slocalspan + 0), data1);
^
Core.c:3741:32: error: expected expression before ')' token
_mm_store_si128((__m128i*) (slocalspan + 4), data2);
^
mingw64-make[1]: *** [Objects\Core.o] Error 1
mingw64-make: *** [librdp] Error 2
The system cannot find the file specified.
Could Not Find F:\NOPE\cen64-master\cen64.exe
Code: Select all
In file included from Core.c:20:0:
Helpers.h:27:1: error: unknown type name '__m128i'
__m128i BroadcastInt(int32_t constant);
^
mingw64-make[1]: *** [Objects\Core.o] Error 1
mingw64-make: *** [librdp] Error 2
The system cannot find the file specified.
Could Not Find F:\NOPE\cen64-master\cen64.exe
I also just updated my mingw to the latest to make sure it was up to date and it wasn't just an outdated issue.