diff options
author | Charles Pigott <charlespigott@googlemail.com> | 2019-01-16 19:28:52 +0000 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2019-01-17 21:55:15 +0000 |
commit | 6535abb88bd3c598517641b49569b480c3282cdf (patch) | |
tree | 913b3f0a431466a30c2bd70e53f2260417832709 | |
parent | fe8c24e0817a04ea7719372156d2aa674939b479 (diff) | |
download | openttd-6535abb88bd3c598517641b49569b480c3282cdf.tar.xz |
Codechange: Don't explicitly link with -lstdc++, causes linking issues with freetype on MinGW
-rw-r--r-- | config.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib index 1ef51f72a..1c3fc2c94 100644 --- 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="" |