diff options
author | Matthias Köppe <mkoeppe@math.ucdavis.edu> | 2022-06-20 13:58:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-20 13:58:02 (GMT) |
commit | 61f24e7885bed096b5d7f75aff13c1001994b35a (patch) | |
tree | 30ba2a9ec8a5d154209709fd298e0a9aa172e984 /Doc/using | |
parent | ab0e60101637b7cf47f3cc95813996791e7118c4 (diff) | |
download | cpython-61f24e7885bed096b5d7f75aff13c1001994b35a.zip cpython-61f24e7885bed096b5d7f75aff13c1001994b35a.tar.gz cpython-61f24e7885bed096b5d7f75aff13c1001994b35a.tar.bz2 |
gh-90539: doc: Expand on what should not go into CFLAGS, LDFLAGS (#92754)
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/configure.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 8cbeb49..80c0dc0 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -749,6 +749,17 @@ Compiler flags extensions. Use it when a compiler flag should *not* be part of the distutils :envvar:`CFLAGS` once Python is installed (:issue:`21121`). + In particular, :envvar:`CFLAGS` should not contain: + + * the compiler flag `-I` (for setting the search path for include files). + The `-I` flags are processed from left to right, and any flags in + :envvar:`CFLAGS` would take precedence over user- and package-supplied `-I` + flags. + + * hardening flags such as `-Werror` because distributions cannot control + whether packages installed by users conform to such heightened + standards. + .. versionadded:: 3.5 .. envvar:: EXTRA_CFLAGS @@ -861,6 +872,13 @@ Linker flags :envvar:`CFLAGS_NODIST`. Use it when a linker flag should *not* be part of the distutils :envvar:`LDFLAGS` once Python is installed (:issue:`35257`). + In particular, :envvar:`LDFLAGS` should not contain: + + * the compiler flag `-L` (for setting the search path for libraries). + The `-L` flags are processed from left to right, and any flags in + :envvar:`LDFLAGS` would take precedence over user- and package-supplied `-L` + flags. + .. envvar:: CONFIGURE_LDFLAGS_NODIST Value of :envvar:`LDFLAGS_NODIST` variable passed to the ``./configure`` |