| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /opt/cloudlinux/venv/lib64/python3.11/site-packages/setuptools/_distutils/compat/ |
| Current File : //opt/cloudlinux/venv/lib64/python3.11/site-packages/setuptools/_distutils/compat/__init__.py |
from __future__ import annotations
from .py38 import removeprefix
def consolidate_linker_args(args: list[str]) -> list[str] | str:
"""
Ensure the return value is a string for backward compatibility.
Retain until at least 2025-04-31. See pypa/distutils#246
"""
if not all(arg.startswith('-Wl,') for arg in args):
return args
return '-Wl,' + ','.join(removeprefix(arg, '-Wl,') for arg in args)