aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers/__init__.py
blob: 356a43d4cd1f7ce98f4db5b2b6b247d2190871fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# SPDX-License-Identifier: Apache-2.0
# Copyright 2012-2021 The Meson development team

from .base import ArLikeLinker, RSPFileSyntax
from .detect import (
    defaults,
    guess_win_linker,
    guess_nix_linker,
)

__all__ = [
    # base.py
    'ArLikeLinker',
    'RSPFileSyntax',

    # detect.py
    'defaults',
    'guess_win_linker',
    'guess_nix_linker',
]