From 248151e15a89447a14864bd868a0628b3baf60ee Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sat, 26 Oct 2019 22:35:50 +0200 Subject: instaler: add tsaware, dep, and high entropy aslr to installer --- installer/build.bat | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/installer/build.bat b/installer/build.bat index 88aea5d3..d669b5f1 100644 --- a/installer/build.bat +++ b/installer/build.bat @@ -35,7 +35,11 @@ if exist .deps\prepared goto :build :build set WIX=%BUILDDIR%.deps\wix\ + set CFLAGS=-O3 -Wall -std=gnu11 -DWINVER=0x0601 -D_WIN32_WINNT=0x0601 -municode -DUNICODE -D_UNICODE -DNDEBUG + set LDFLAGS=-shared -s -Wl,--kill-at -Wl,--major-os-version=6 -Wl,--minor-os-version=1 -Wl,--major-subsystem-version=6 -Wl,--minor-subsystem-version=1 -Wl,--tsaware -Wl,--dynamicbase -Wl,--nxcompat -Wl,--export-all-symbols + set LDLIBS=-lmsi -lole32 -lshlwapi -lshell32 -luuid call :msi x86 i686 x86 || goto :error + set CGO_LDFLAGS=%CGO_LDFLAGS% -Wl,--high-entropy-va call :msi amd64 x86_64 x64 || goto :error if exist ..\sign.bat call ..\sign.bat if "%SigningCertificate%"=="" goto :success @@ -57,9 +61,6 @@ if exist .deps\prepared goto :build :msi set PATH=%BUILDDIR%..\.deps\%~2-w64-mingw32-native\bin;%PATH% set CC=%~2-w64-mingw32-gcc - set CFLAGS=-O3 -Wall -std=gnu11 -DWINVER=0x0601 -D_WIN32_WINNT=0x0601 -municode -DUNICODE -D_UNICODE -DNDEBUG - set LDFLAGS=-shared -s -Wl,--kill-at -Wl,--major-os-version=6 -Wl,--minor-os-version=1 -Wl,--major-subsystem-version=6 -Wl,--minor-subsystem-version=1 - set LDLIBS=-lmsi -lole32 -lshlwapi -lshell32 -luuid if not exist "%~1" mkdir "%~1" echo [+] Compiling %1 %CC% %CFLAGS% %LDFLAGS% -o "%~1\customactions.dll" customactions.c %LDLIBS% || exit /b 1 -- cgit v1.2.3-59-g8ed1b