We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2349c3d commit 08e218eCopy full SHA for 08e218e
src/nix/main.cc
@@ -566,7 +566,9 @@ int main(int argc, char ** argv)
566
#ifndef _WIN32
567
// Increase the default stack size for the evaluator and for
568
// libstdc++'s std::regex.
569
- nix::setStackSize(64 * 1024 * 1024);
+ // This used to be 64 MiB, but macOS as deployed on GitHub Actions has a
570
+ // hard limit slightly under that, so we round it down a bit.
571
+ nix::setStackSize(60 * 1024 * 1024);
572
#endif
573
574
return nix::handleExceptions(argv[0], [&]() { nix::mainWrapped(argc, argv); });
0 commit comments