Skip to content

Commit

Permalink
Fixed the non-AES-NI implementation - I broke it again a commit or tw…
Browse files Browse the repository at this point in the history
…o ago.
  • Loading branch information
Wolf committed Jul 9, 2014
1 parent 5bec61e commit b1cd8e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ minerd_SOURCES = elist.h \

if USE_LOBOTOMIZED_AES
minerd_SOURCES += cryptonight_lobotomized.c crypto/oaes_lib.c
AM_CFLAGS += -fno-strict-aliasing
# CFLAGS stop it from breaking
AM_CFLAGS = -O2 -fno-strict-aliasing -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16
else
minerd_SOURCES += cryptonight_aesni.c
AM_CFLAGS += -maes
Expand Down

0 comments on commit b1cd8e5

Please sign in to comment.