File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ function(linux_options)
1515 the docs (https://docs.godotengine.org/en/latest/tutorials/scripting/cpp/build_system/cmake.html)
1616 for examples.
1717 ]]
18- option (GODOTCPP_USE_STATIC_CPP "Link libgcc and libstdc++ statically for better portability" ON )
18+ option (GODOTCPP_USE_STATIC_CPP "Link libgcc and libstdc++ statically for better portability" OFF )
1919endfunction ()
2020
2121#[===========================[ Target Generation ]===========================]
Original file line number Diff line number Diff line change 55
66def options (opts ):
77 opts .Add (BoolVariable ("use_llvm" , "Use the LLVM compiler - only effective when targeting Linux" , False ))
8- opts .Add (BoolVariable ("use_static_cpp" , "Link libgcc and libstdc++ statically for better portability" , True ))
8+ opts .Add (BoolVariable ("use_static_cpp" , "Link libgcc and libstdc++ statically for better portability" , False ))
99
1010
1111def exists (env ):
You can’t perform that action at this time.
0 commit comments