aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/linkers/__init__.py')
-rw-r--r--mesonbuild/linkers/__init__.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/mesonbuild/linkers/__init__.py b/mesonbuild/linkers/__init__.py
index 0d6fbc1..9182fa1 100644
--- a/mesonbuild/linkers/__init__.py
+++ b/mesonbuild/linkers/__init__.py
@@ -12,6 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+from .detect import (
+ defaults,
+ guess_win_linker,
+ guess_nix_linker,
+)
from .linkers import (
RSPFileSyntax,
@@ -64,6 +69,12 @@ from .linkers import (
)
__all__ = [
+ # detect.py
+ 'defaults',
+ 'guess_win_linker',
+ 'guess_nix_linker',
+
+ # linkers.py
'RSPFileSyntax',
'StaticLinker',