Fixed style issue as per comments on PR 8911.

pull/8912/head
Justin Handville 3 years ago committed by Daniel Mensinger
parent 9f248c778d
commit e8e03cdc72
  1. 3
      mesonbuild/compilers/compilers.py

@ -74,8 +74,7 @@ c_suffixes = lang_suffixes['c'] + ('h',) # type: T.Tuple[str, ...]
# C ABI; these can generally be used interchangeably
clib_langs = ('objcpp', 'cpp', 'objc', 'c', 'fortran',) # type: T.Tuple[str, ...]
# List of assembler suffixes that can be linked with C code directly by the linker
assembler_suffixes = tuple() # type: T.Tuple[str, ...]
assembler_suffixes += ('s', 'S')
assembler_suffixes: T.Tuple[str, ...] = ('s', 'S')
# List of languages that can be linked with C code directly by the linker
# used in build.py:process_compilers() and build.py:get_dynamic_linker()
clink_langs = ('d', 'cuda') + clib_langs # type: T.Tuple[str, ...]

Loading…
Cancel
Save