| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 21eac79 commit 7079041
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1301,7 +1301,7 @@ def check_compiler(o): | |||
| 1301 | 1301 | if not ok: | |
| 1302 | 1302 | warn(f'failed to autodetect C++ compiler version (CXX={CXX})') | |
| 1303 | 1303 | elif (is_apple and clang_version < (17, 0, 0) or not is_apple and clang_version < (19, 1, 0)) if is_clang else gcc_version < (12, 2, 0): | |
| 1304 | - warn(f'C++ compiler (CXX={CXX}, {version_str}) too old, need g++ 12.2.0, clang++ 19.1.0, or Apple clang++ 17.0.0') | ||
| 1304 | + warn(f"C++ compiler (CXX={CXX}, {version_str}) too old, need g++ 12.2.0 or clang++ 19.1.0{' or Apple clang++ 17.0.0' if is_apple else ''}") | ||
| 1305 | 1305 | ||
| 1306 | 1306 | ok, is_clang, clang_version, gcc_version, is_apple = try_check_compiler(CC, 'c') | |
| 1307 | 1307 | version_str = ".".join(map(str, clang_version if is_clang else gcc_version)) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments