added SSE - Part II

This commit is contained in:
Logan007 2020-06-03 22:10:49 +05:45
parent e28ec42ac2
commit 9509634ca5
3 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ GIT_COMMITS=@GIT_COMMITS@
CC?=gcc
DEBUG?=-g3
OPTIMIZATION?=-O3
OPTIMIZATION?=-O3 -march=native
WARN?=-Wall
#Ultrasparc64 users experiencing SIGBUS should try the following gcc options

View File

@ -9,7 +9,9 @@ typedef struct {
u64 key[34];
} speck_context_t;
#else
typedef u64 speck_context_t [34];
typedef struct {
u64 key[34];
} speck_context_t;
#endif
int speck_ctr (unsigned char *out, const unsigned char *in,

View File

@ -1,6 +1,6 @@
CC?=gcc
DEBUG?=-g3
#OPTIMIZATION?=-O2
OPTIMIZATION?=-O2 -march=native
WARN?=-Wall
INSTALL=install