build: Disable source fortification for Windows builds

MSYS2/Mingw does not appear to provide a stable set of fortified source
functions which the compiler makes calls to when the feature is enabled.
Disable the feature for now.
This commit is contained in:
Matt Borgerson 2019-11-15 17:24:39 -07:00 committed by mborgerson
parent 310addb197
commit f8a7f34508
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ case "$(uname -s)" in # adjust compilation option based on platform
CYGWIN*|MINGW*|MSYS*)
echo 'Compiling for Windows…'
sys_cflags='-Wno-error'
sys_opts='--python=python3 --disable-cocoa --disable-opengl'
sys_opts='--python=python3 --disable-cocoa --disable-opengl --disable-fortify-source'
postbuild='package_windows' # set the above function to be called after build
;;
*)