Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Add ASLR and DEP on MinGW. #66

Merged
merged 1 commit into from Sep 10, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion configure.ac
Expand Up @@ -60,7 +60,8 @@ AS_IF([test "x$enable_data_files" != xno],

case $host_os in
mingw* )
LDFLAGS="$LDFLAGS -lwsock32 -lws2_32"
# To do: Check for and add -Wl,--high-entropy-va if it's supported.
LDFLAGS="$LDFLAGS -lwsock32 -lws2_32 -Wl,--dynamicbase -Wl,--nxcompat"
;;
esac

Expand Down