diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-10-01 04:49:11 -0400 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-10-01 04:49:11 -0400 |
commit | 972c2cd2882b6dd7a2059d030d03e89dae47ede7 (patch) | |
tree | 854f3705f09fbe826577a0d575173aab3c0dd6e5 /meson.build | |
parent | 1b4d52c3556b9abad10165ce7298062cf7eb7005 (diff) | |
download | postgresql-972c2cd2882b6dd7a2059d030d03e89dae47ede7.tar.gz postgresql-972c2cd2882b6dd7a2059d030d03e89dae47ede7.zip |
jit: Require at least LLVM 14, if enabled.
Remove support for LLVM versions 10-13. The default on all non-EOL'd
OSes represented in our build farm will be at least LLVM 14 when
PostgreSQL 18 ships.
Author: Thomas Munro <thomas.munro@gmail.com>
Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Discussion: https://postgr.es/m/CA%2BhUKGLhNs5geZaVNj2EJ79Dx9W8fyWUU3HxcpZy55sMGcY%3DiA%40mail.gmail.com
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 7150f85e0fb..f64ca5019e9 100644 --- a/meson.build +++ b/meson.build @@ -792,7 +792,7 @@ endif llvmopt = get_option('llvm') llvm = not_found_dep if add_languages('cpp', required: llvmopt, native: false) - llvm = dependency('llvm', version: '>=10', method: 'config-tool', required: llvmopt) + llvm = dependency('llvm', version: '>=14', method: 'config-tool', required: llvmopt) if llvm.found() |