mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-25 12:16:07 +00:00
* Fix: Fixed glibc version detection bug in check-requirements-linux.sh - Existing detection scripts simply use the `awk` command to record the version number in the `libstdc++.so` filename, - but in some specific versions of glibc++, the detailed version number is not indicated in the filename, - so we need to use a script to read the current version of GLIBCXX in the environment to see if it meets the expectations. Co-authored-by: chengy-sysu <939416532@qq.com> * Update check-requirements-linux.sh fix Indent * fix: Using grep and sed to replace strings command Since some Linux distributions do not come with GNU binutils pre-installed, the `strings` command does not fit on all platforms, so we use `grep` and `sed` instead of `strings`. Co-authored-by: chengy-sysu <939416532@qq.com> * fix: boundary case of check-requirements-linux.sh Co-authored-by: chengy-sysu <939416532@qq.com> * fix: Using grep and sed to replace strings command Since some Linux distributions do not come with GNU binutils pre-installed, the `strings` command does not fit on all platforms, so we use `grep` and `sed` instead of `strings`. Co-authored-by: chengy-sysu <939416532@qq.com> * fix: skip glibcxx check on alpine --------- Co-authored-by: chengy-sysu <939416532@qq.com> Co-authored-by: deepak1556 <hop2deep@gmail.com>