diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-08-21 15:11:21 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-08-21 15:11:21 +0200 |
commit | 4baff5013277a61f6d5e1e3369ae3f878cb48d0a (patch) | |
tree | 64e0ad56c5b8be71de632a65ce2ad918866a4bd7 /doc/src | |
parent | d43b8bb6b8f56cda59d14b5040496e266b0d9d25 (diff) | |
download | postgresql-4baff5013277a61f6d5e1e3369ae3f878cb48d0a.tar.gz postgresql-4baff5013277a61f6d5e1e3369ae3f878cb48d0a.zip |
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 <olebra@samfundet.no>
Discussion: https://www.postgresql.org/message-id/20240518224601.gtisttjerylukjr5%40samfundet.no
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/installation.sgml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index a4f6d7a0d49..9e5a35ca3fe 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -941,12 +941,10 @@ build-postgresql: <para> <command>llvm-config</command><indexterm><primary>llvm-config</primary></indexterm> will be used to find the required compilation options. - <command>llvm-config</command>, and then - <command>llvm-config-$major-$minor</command> for all supported - versions, will be searched for in your <envar>PATH</envar>. If - that would not yield the desired program, - use <envar>LLVM_CONFIG</envar> to specify a path to the - correct <command>llvm-config</command>. For example + <command>llvm-config</command> will be searched for in your + <envar>PATH</envar>. If that would not yield the desired program, + use <envar>LLVM_CONFIG</envar> to specify a path to the correct + <command>llvm-config</command>. For example <programlisting> ./configure ... --with-llvm LLVM_CONFIG='/path/to/llvm/bin/llvm-config' </programlisting> |