Every time I run conan init in a fresh docker container, I get the following warning:
************************* WARNING: GCC OLD ABI COMPATIBILITY ***********************
Conan detected a GCC version > 5 but has adjusted the 'compiler.libcxx' setting to
'libstdc++' for backwards compatibility.
Your compiler is likely using the new CXX11 ABI by default (libstdc++11).
If you want Conan to use the new ABI for the default profile, run:
$ conan profile update settings.compiler.libcxx=libstdc++11 default
Or edit '/home/smith/.conan/profiles/default' and set compiler.libcxx=libstdc++11
************************************************************************************
It's annoying, and distracting. Redundant, too, since the very next command I run in the script is the one for setting the ABI, as suggested in the warning.
conan profile update settings.compiler.libcxx=libstdc++11 default
Is there a way to disable the warning, to avoid seeing it?