On Linux default use_static_cpp to disabled

This commit is contained in:
David Snopek
2025-11-01 08:31:46 -05:00
parent fde93df450
commit d033e8abea
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ from SCons.Variables import BoolVariable
def options(opts):
opts.Add(BoolVariable("use_llvm", "Use the LLVM compiler - only effective when targeting Linux", False))
opts.Add(BoolVariable("use_static_cpp", "Link libgcc and libstdc++ statically for better portability", True))
opts.Add(BoolVariable("use_static_cpp", "Link libgcc and libstdc++ statically for better portability", False))
def exists(env):