We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc2f39 commit 60d7f60Copy full SHA for 60d7f60
AMBuildScript
@@ -291,6 +291,10 @@ class SMConfig(object):
291
raise Exception('--enable-asan only supported when using Clang')
292
self.configure_asan(cxx)
293
294
+ # AMTL uses std::bind
295
+ if (have_gcc and cxx.version >= 'gcc-10.0') or (have_clang and cxx.version >= 'clang-12.0'):
296
+ cxx.cxxflags += ['-Wno-deprecated-declarations']
297
+
298
# Work around SDK warnings.
299
if cxx.version >= 'clang-10.0' or cxx.version >= 'apple-clang-12.0':
300
cxx.cflags += [
0 commit comments