mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-08 22:13:48 +01:00
AVX support for Windows
This commit is contained in:
parent
b57a62fece
commit
15b7284a8f
1 changed files with 6 additions and 2 deletions
|
@ -39,9 +39,13 @@ endif
|
||||||
|
|
||||||
# don't change following line to ifeq ($(USE_AESNI),yes) !!!
|
# don't change following line to ifeq ($(USE_AESNI),yes) !!!
|
||||||
ifeq ($(USE_AESNI),1)
|
ifeq ($(USE_AESNI),1)
|
||||||
CPU_FLAGS = -maes -DAESNI
|
CPU_FLAGS += -maes -DAESNI
|
||||||
else
|
else
|
||||||
CPU_FLAGS = -msse
|
CPU_FLAGS += -msse
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(USE_AVX),1)
|
||||||
|
CPU_FLAGS += -mavx
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(USE_ASLR),yes)
|
ifeq ($(USE_ASLR),yes)
|
||||||
|
|
Loading…
Add table
Reference in a new issue