Skip to content

Commit 4cebb77

Browse files
committed
compilers: detect: fix typo in comment
1 parent 5d80f77 commit 4cebb77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mesonbuild/compilers/detect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def detect_static_linker(env: 'Environment', compiler: Compiler) -> StaticLinker
179179
else:
180180
trials = default_linkers
181181
elif compiler.id == 'intel-cl' and compiler.language == 'c': # why not cpp? Is this a bug?
182-
# Intel has it's own linker that acts like microsoft's lib
182+
# Intel has its own linker that acts like microsoft's lib
183183
trials = [['xilib']]
184184
elif is_windows() and compiler.id == 'pgi': # this handles cpp / nvidia HPC, in addition to just c/fortran
185185
trials = [['ar']] # For PGI on Windows, "ar" is just a wrapper calling link/lib.

0 commit comments

Comments
 (0)