# HG changeset patch # User Charles Pigott # Date 2019-01-16 19:28:52 # Node ID 60b37e0d998fc080c6950d7edfe067bc23307fe8 # Parent 6e6fab1ad520f1a80f8ff02916b371be8397cfd6 Codechange: Don't explicitly link with -lstdc++, causes linking issues with freetype on MinGW diff --git a/config.lib b/config.lib --- a/config.lib +++ b/config.lib @@ -1509,7 +1509,7 @@ make_cflags_and_ldflags() { CXXFLAGS_ENV="$CXXFLAGS" CXXFLAGS="" # Libs to compile. In fact this is just LDFLAGS - LIBS="-lstdc++" + LIBS="" # LDFLAGS used for HOST LDFLAGS_ENV="$LDFLAGS" LDFLAGS=""