diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-11-27 21:15:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-27 21:15:59 +0000 |
| commit | 44124cb639a198092204a0167ef827ea41ad023e (patch) | |
| tree | 62a0994ae3b9aaea2f1bc390550f40229a7efd9d /src/main.cpp | |
| parent | fa39d87f88b3a6443dace7351af82d981a3ba6f4 (diff) | |
| parent | d04ff6951a194082df6c64a39bae4010e659d9c0 (diff) | |
Merge pull request #4440 from 0dminnimda/support_llvm19
Add support for llvm version 19
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 4815f6bb4..015269438 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -89,8 +89,8 @@ gb_global Timings global_timings = {0}; #if defined(GB_SYSTEM_OSX) #include <llvm/Config/llvm-config.h> - #if LLVM_VERSION_MAJOR < 11 || (LLVM_VERSION_MAJOR > 14 && LLVM_VERSION_MAJOR < 17) || LLVM_VERSION_MAJOR > 18 - #error LLVM Version 11..=14 or =18 is required => "brew install llvm@14" + #if LLVM_VERSION_MAJOR < 11 || (LLVM_VERSION_MAJOR > 14 && LLVM_VERSION_MAJOR < 17) || LLVM_VERSION_MAJOR > 19 + #error LLVM Version 11..=14 or 17..=19 is required => "brew install llvm@14" #endif #endif |