diff options
author | Thomas Munro | 2023-10-22 01:17:00 +0000 |
---|---|---|
committer | Thomas Munro | 2023-10-22 01:22:11 +0000 |
commit | 5e4dacb9878cf71e32950e90993afd9450dab4da (patch) | |
tree | 491074e9357a069f3b18dfaeaa5f47af8d7a27d7 /configure | |
parent | dab889d60bac3fbf691973ca1770f2eb50547999 (diff) |
Log LLVM library version in configure output.
When scanning build farm results, it's useful to be able to see which
version is in use. For the Meson build system, this information was
already displayed.
Back-patch to all supported branches.
Discussion: https://postgr.es/m/4022690.1697852728%40sss.pgh.pa.us
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure index d47e0f8b260..c2cb1b1b247 100755 --- a/configure +++ b/configure @@ -5123,6 +5123,8 @@ fi if echo $pgac_llvm_version | $AWK -F '.' '{ if ($1 >= 4 || ($1 == 3 && $2 >= 9)) exit 1; else exit 0;}';then as_fn_error $? "$LLVM_CONFIG version is $pgac_llvm_version but at least 3.9 is required" "$LINENO" 5 fi + { $as_echo "$as_me:${as_lineno-$LINENO}: using llvm $pgac_llvm_version" >&5 +$as_echo "$as_me: using llvm $pgac_llvm_version" >&6;} # need clang to create some bitcode files |