Browse Source

AVX support for Windows

pull/739/head
orignal 8 years ago
parent
commit
15b7284a8f
  1. 8
      Makefile.mingw

8
Makefile.mingw

@ -39,9 +39,13 @@ endif @@ -39,9 +39,13 @@ endif
# don't change following line to ifeq ($(USE_AESNI),yes) !!!
ifeq ($(USE_AESNI),1)
CPU_FLAGS = -maes -DAESNI
CPU_FLAGS += -maes -DAESNI
else
CPU_FLAGS = -msse
CPU_FLAGS += -msse
endif
ifeq ($(USE_AVX),1)
CPU_FLAGS += -mavx
endif
ifeq ($(USE_ASLR),yes)

Loading…
Cancel
Save