aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-06-23 22:14:27 +0100
committerSam James <sam@gentoo.org>2024-06-24 00:32:24 +0100
commit4cebb77e1ed264555c898505a79bd252533dfe49 (patch)
treecad59c7fe2204ac1688771da3648f3662eb4adae
parent5d80f7740867b04d44459ecd72431f85882cb77e (diff)
downloadmeson-4cebb77e1ed264555c898505a79bd252533dfe49.zip
meson-4cebb77e1ed264555c898505a79bd252533dfe49.tar.gz
meson-4cebb77e1ed264555c898505a79bd252533dfe49.tar.bz2
compilers: detect: fix typo in comment
-rw-r--r--mesonbuild/compilers/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py
index d6aeff9..4cb8a6f 100644
--- a/mesonbuild/compilers/detect.py
+++ b/mesonbuild/compilers/detect.py
@@ -179,7 +179,7 @@ def detect_static_linker(env: 'Environment', compiler: Compiler) -> StaticLinker
else:
trials = default_linkers
elif compiler.id == 'intel-cl' and compiler.language == 'c': # why not cpp? Is this a bug?
- # Intel has it's own linker that acts like microsoft's lib
+ # Intel has its own linker that acts like microsoft's lib
trials = [['xilib']]
elif is_windows() and compiler.id == 'pgi': # this handles cpp / nvidia HPC, in addition to just c/fortran
trials = [['ar']] # For PGI on Windows, "ar" is just a wrapper calling link/lib.