While working in VScode I'm getting the following message
ld: warning: dylib (/usr/local/Cellar/gcc/11.2.0/lib/gcc/11/libstdc++.dylib) was built for newer macOS version (11.3) than being linked (11.0)
While working in VScode I'm getting the following message
ld: warning: dylib (/usr/local/Cellar/gcc/11.2.0/lib/gcc/11/libstdc++.dylib) was built for newer macOS version (11.3) than being linked (11.0)
The C compiler standard library being selected on your Mac is a locally-installed gcc 11.2.0 version, and the installed version is not compatible with the macOS version you're using. Based on what's posted, upgrade macOS to 11.3, or re-link that locally-installed library (likely homebrew) for 11.0, or maybe switch to the clang tools and libraries.