From: Peter Eisentraut Date: Wed, 21 Aug 2024 13:11:21 +0000 (+0200) Subject: doc: remove llvm-config search from configure documentation X-Git-Tag: REL_17_RC1~30 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=0c7ec3b3a03b90c6d8afaff01635ed9060d5414d;p=postgresql.git doc: remove llvm-config search from configure documentation As of 4dd29b6833, we no longer attempt to locate any other llvm-config variant than plain llvm-config in configure-based builds; update the documentation accordingly. (For Meson-based builds, we still use Meson's LLVMDependencyConfigTool [0], which runs through a set of possible suffixes [1], so no need to update the documentation there.) [0]: https://github.com/mesonbuild/meson/blob/7d28ff29396f9d7043204de8ddc52226b9903811/mesonbuild/dependencies/dev.py#L184 [1]: https://github.com/mesonbuild/meson/blob/7d28ff29396f9d7043204de8ddc52226b9903811/mesonbuild/environment.py#L183 Author: Ole Peder Brandtzæg Discussion: https://www.postgresql.org/message-id/20240518224601.gtisttjerylukjr5%40samfundet.no --- diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index b7f3c09b501..83e75ea5201 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -941,12 +941,10 @@ build-postgresql: llvm-configllvm-config will be used to find the required compilation options. - llvm-config, and then - llvm-config-$major-$minor for all supported - versions, will be searched for in your PATH. If - that would not yield the desired program, - use LLVM_CONFIG to specify a path to the - correct llvm-config. For example + llvm-config will be searched for in your + PATH. If that would not yield the desired program, + use LLVM_CONFIG to specify a path to the correct + llvm-config. For example ./configure ... --with-llvm LLVM_CONFIG='/path/to/llvm/bin/llvm-config'