Skip to content

Commit

Permalink
configure.ac: set MINGW stack reserve
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyd2019 authored and lazka committed Jul 19, 2023
1 parent 50c4354 commit da6930f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3533,6 +3533,11 @@ then
VxWorks*)
LINKFORSHARED='-Wl,-export-dynamic';;
esac
case $host in
*-*-mingw*)
# for https://bugs.python.org/issue40458 on MINGW
LINKFORSHARED="-Wl,--stack,2000000";;
esac
fi
AC_MSG_RESULT($LINKFORSHARED)

Expand Down

0 comments on commit da6930f

Please sign in to comment.