Browse Source

Added building option "USE_ASLR"

pull/653/head
alexandr 8 years ago
parent
commit
cb0f968467
  1. 7
      Makefile.mingw

7
Makefile.mingw

@ -37,11 +37,16 @@ ifeq ($(USE_WIN32_APP), yes) @@ -37,11 +37,16 @@ ifeq ($(USE_WIN32_APP), yes)
DAEMON_OBJS += $(patsubst %.rc,obj/%.o,$(DAEMON_RC))
endif
ifeq ($(USE_AESNI),1)
ifeq ($(USE_AESNI),yes)
CPU_FLAGS = -maes -DAESNI
else
CPU_FLAGS = -msse
endif
ifeq ($(USE_ASLR),yes)
LDFLAGS += -Wl,--nxcompat -Wl,--high-entropy-va \
-Wl,--dynamicbase,--export-all-symbols
endif
obj/%.o : %.rc
$(WINDRES) -i $< -o $@

Loading…
Cancel
Save