compilers: detect: fix typo in comment

pull/13289/head
Sam James 5 months ago
parent 5d80f77408
commit 4cebb77e1e
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
  1. 2
      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.

Loading…
Cancel
Save