Browse Source

Makefile.osx: do not use Intel flags on PPC

pull/1902/head
Sergey Fedorov 1 year ago committed by R4SAS
parent
commit
c02c9c3c24
  1. 7
      Makefile.osx

7
Makefile.osx vendored

@ -23,9 +23,12 @@ ifeq ($(USE_UPNP),yes)
endif endif
endif endif
OSARCH = $(shell uname -p)
ifneq ($(OSARCH),powerpc)
ifeq ($(USE_AESNI),yes) ifeq ($(USE_AESNI),yes)
CXXFLAGS += -maes CXXFLAGS += -D__AES__ -maes
DEFINES += -D__AES__
else else
CXXFLAGS += -msse CXXFLAGS += -msse
endif endif
endif

Loading…
Cancel
Save