diff options
author | Martin Bahlinger <martin.bahlinger@leica-geosystems.com> | 2021-04-27 22:42:53 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2021-04-28 21:37:52 +0200 |
commit | 4f7aaa50f93b667aee662de5f9308545bb00a5f2 (patch) | |
tree | 2dea64f2d93b1c4185d7385b34b0a2dac625993c | |
parent | e3a82f2e6894155cc030680332f31db6f79aba28 (diff) | |
download | ghdl-4f7aaa50f93b667aee662de5f9308545bb00a5f2.tar.gz ghdl-4f7aaa50f93b667aee662de5f9308545bb00a5f2.tar.bz2 ghdl-4f7aaa50f93b667aee662de5f9308545bb00a5f2.zip |
Increase stack size to 8MB for msys2-mcode (fix ghdl/ghdl#1742)
-rw-r--r-- | scripts/msys2-mcode/PKGBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/msys2-mcode/PKGBUILD b/scripts/msys2-mcode/PKGBUILD index 853b0429b..012160139 100644 --- a/scripts/msys2-mcode/PKGBUILD +++ b/scripts/msys2-mcode/PKGBUILD @@ -18,7 +18,7 @@ build() { cd "${srcdir}/builddir" ../../../../configure \ --prefix=${MINGW_PREFIX} \ - LDFLAGS=-static \ + LDFLAGS="-static -Wl,--stack=8388608" \ --enable-libghdl \ --enable-synth make GNATMAKE="gnatmake -j$(nproc)" |