summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJeremy Andrews <athenian200@outlook.com>2023-11-05 19:14:40 -0600
committerJeremy Andrews <athenian200@outlook.com>2023-11-05 20:54:20 -0600
commitab5126023260fba2eaf336a7d292dae9313d70db (patch)
tree230b2ecf2067ab19935d3ae52f51913b59fc1a22 /build
parent34cadf60684ffc7b824b3caff84ad9a5a43a6b03 (diff)
downloaduxp-ab5126023260fba2eaf336a7d292dae9313d70db.tar.gz
Issue #2373 - Remove obsolete GLIBCXX version checks.
These version checks were only used with --enable-stdcxx-compat, which as far as I can tell no UXP application has ever relied on. The only use case seems to have been building with clang against an old version of GCC's libc that predates C++11, let alone C++17.
Diffstat (limited to 'build')
-rw-r--r--build/templates.mozbuild3
1 files changed, 0 insertions, 3 deletions
diff --git a/build/templates.mozbuild b/build/templates.mozbuild
index 4bf63cfc53..f059820d0d 100644
--- a/build/templates.mozbuild
+++ b/build/templates.mozbuild
@@ -8,9 +8,6 @@ def Binary():
'''Generic template for target binaries. Meant to be used by other
templates.'''
- if CONFIG['MOZ_LIBSTDCXX_TARGET_VERSION']:
- USE_LIBS += ['stdc++compat']
-
# Ideally, we'd support not adding this to the LIB_IS_C_ONLY case,
# but that variable is actually only set in db/sqlite/src, which
# doesn't build a shared library on the relevant platforms anyways.