mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
Meta: Use proper versions in is_compiler_supported check in serenity.sh
We were checking the compilers against clang-12 and gcc-10. Since the check itself is confusing, some comments are warranted.
This commit is contained in:
parent
d9c1eb860f
commit
9bf2a7c7e5
1 changed files with 4 additions and 2 deletions
|
@ -156,9 +156,11 @@ is_supported_compiler() {
|
|||
if $COMPILER --version 2>&1 | grep "Apple clang" >/dev/null; then
|
||||
return 1
|
||||
elif $COMPILER --version 2>&1 | grep "clang" >/dev/null; then
|
||||
[ "$MAJOR_VERSION" -gt 12 ] && return 0
|
||||
# Clang version check
|
||||
[ "$MAJOR_VERSION" -ge 13 ] && return 0
|
||||
else
|
||||
[ "$MAJOR_VERSION" -gt 10 ] && return 0
|
||||
# GCC version check
|
||||
[ "$MAJOR_VERSION" -ge 12 ] && return 0
|
||||
fi
|
||||
return 1
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue