PABannier / bark.cpp

Suno AI's Bark model in C/C++ for fast text-to-speech
MIT License
630 stars 48 forks source link

Increase stack size to 10MB for Visual Studio compilation #163

Closed jzeiber closed 2 months ago

jzeiber commented 2 months ago

Visual Studio defaults to 1MB stack size, which causes a stack overflow when running the bark executable. This increases the stack size to 10MB when compiling with Visual Studio.

PABannier commented 2 months ago

Thank you @jzeiber !