nswitch: do not link libstdc++ to game libraries

This commit is contained in:
fgsfds 2023-02-08 00:53:45 +01:00
parent d32df80822
commit c6da23892f
1 changed files with 3 additions and 2 deletions

View File

@ -429,8 +429,9 @@ class NintendoSwitch:
return linkflags
def ldflags(self):
# system libraries implicitly require math and C++ standard library
ldflags = ['-lm', '-lstdc++']
# NOTE: shared libraries should be built without standard libs, so that they could import their contents from the NRO,
# but executables, including the SDL2 sanity check, will generally require libstdc++ and libm, which we will add manually
ldflags = [] # ['-lm', '-lstdc++']
return ldflags
def options(opt):