From 9085d6831bf9cabc8f1ff6edc15b9ba0b0c2f6b4 Mon Sep 17 00:00:00 2001 From: Fabian Fichter Date: Sat, 24 Aug 2019 12:57:44 +0200 Subject: [PATCH] Fix #29: Increase stack limit for mingw --- src/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/Makefile b/src/Makefile index 9516332..4411293 100644 --- a/src/Makefile +++ b/src/Makefile @@ -212,7 +212,7 @@ ifeq ($(COMP),mingw) endif CXXFLAGS += -Wextra -Wshadow - LDFLAGS += -static + LDFLAGS += -static -Wl,--stack,8388608 endif ifeq ($(COMP),icc) -- 1.7.0.4