2023-12-14 03:38:41 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2021-06-04 03:10:19 +08:00
|
|
|
# Copyright 2012-2021 The Meson development team
|
|
|
|
|
2023-02-07 12:29:27 +08:00
|
|
|
from .base import ArLikeLinker, RSPFileSyntax
|
2021-06-03 01:30:55 +08:00
|
|
|
from .detect import (
|
|
|
|
defaults,
|
|
|
|
guess_win_linker,
|
|
|
|
guess_nix_linker,
|
|
|
|
)
|
2021-06-04 03:10:19 +08:00
|
|
|
|
|
|
|
__all__ = [
|
2023-02-07 12:29:27 +08:00
|
|
|
# base.py
|
|
|
|
'ArLikeLinker',
|
|
|
|
'RSPFileSyntax',
|
|
|
|
|
2021-06-03 01:30:55 +08:00
|
|
|
# detect.py
|
|
|
|
'defaults',
|
|
|
|
'guess_win_linker',
|
|
|
|
'guess_nix_linker',
|
2021-06-04 03:10:19 +08:00
|
|
|
]
|