mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
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
This commit is contained in:
@ -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()
|
||||
|
||||
|
Reference in New Issue
Block a user