/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/llvm-version.h
26 строк
900 B
Jameson Nash
drop llvm 16 support (#56751)
06 дек 2024, 14:17
Не верифицирован
06 дек 2024, 14:17
b8230c0
Код
Авторство
О чём код?
// This file is a part of Julia. License is MIT: https://julialang.org/license #include <llvm/Config/llvm-config.h> #include "julia_assert.h" #include "platform.h" // The LLVM version used, JL_LLVM_VERSION, is represented as a 5-digit integer // of the form ABBCC, where A is the major version, B is minor, and C is patch. // So for example, LLVM 3.7.0 is 30700. #define JL_LLVM_VERSION (LLVM_VERSION_MAJOR * 10000 + LLVM_VERSION_MINOR * 100 \ + LLVM_VERSION_PATCH) #if JL_LLVM_VERSION < 170000 #error Only LLVM versions >= 17.0.0 are supported by Julia #endif #if JL_LLVM_VERSION < 19000 && defined(_CPU_RISCV64_) #error Only LLVM versions >= 19.0.0 are supported by Julia on RISC-V #endif #ifdef __cplusplus #if defined(__GNUC__) && (__GNUC__ >= 9) // Added in GCC 9, this warning is annoying #pragma GCC diagnostic ignored "-Winit-list-lifetime" #endif #endif