Skip to content

Commit

Permalink
compilers: detect: fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
thesamesam committed Jun 23, 2024
1 parent 5d80f77 commit 4cebb77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/compilers/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4cebb77

Please sign in to comment.