Issue 7617: distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option() should recognize ${configuration_name}-gcc (original) (raw)

Issue7617

Created on 2010-01-01 13:38 by Arfrever, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python-distutils-recognize_configuration_names.patch Arfrever,2010-01-01 13:38 Recognize configuration names
Messages (3)
msg97114 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) Date: 2010-01-01 13:38
distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option() currently only recognizes "gcc" or "gcc-${version" (e.g. "gcc-4.4.2"), but it doesn't recognize "${configuration_name}-gcc" (e.g. "x86_64-pc- "x86_64-pc-linux-gnu-gcc-4.4.2"). Python is configured with such fully qualified configuration names in some distributions (e.g. Gentoo). Configuration names are described in: http://sourceware.org/autobook/autobook/autobook_17.html http://www.gnu.org/software/autoconf/manual/html_node/Specifying-
msg97115 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) Date: 2010-01-01 13:43
This bug tracker removes parts of splitted, long lines when the previous line was ending with '-' :( . There should be: "but it doesn't recognize "${configuration_name}-gcc" (e.g. "x86_64-pc-linux-gnu-gcc") or "${configuration_name}-gcc-${version}" (e.g. "x86_64-pc-linux-gnu-gcc-4.4.2")." The second URL has 2 parts: http://www.gnu.org/software/autoconf/manual/html_node/ Specifying-Target-Triplets.html
msg97446 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2010-01-09 00:04
done in r77377, r77378, r77380, r77381 Thanks!
History
Date User Action Args
2022-04-11 14:56:56 admin set github: 51866
2010-01-09 00:04:04 tarek set status: open -> closedmessages: +
2010-01-08 20🔞16 tarek set priority: normalresolution: accepted
2010-01-01 13:43:16 Arfrever set messages: +
2010-01-01 13:38:04 Arfrever create