diff options
-rw-r--r-- | mesonbuild/arglist.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mesonbuild/arglist.py b/mesonbuild/arglist.py index f7d7530..189b77b 100644 --- a/mesonbuild/arglist.py +++ b/mesonbuild/arglist.py @@ -20,16 +20,12 @@ import os import re import typing as T -from . import mesonlib - if T.TYPE_CHECKING: from .linkers import StaticLinker from .compilers import Compiler -UNIXY_COMPILER_INTERNAL_LIBS = ['m', 'c', 'pthread', 'dl', 'rt'] # type: T.List[str] -# execinfo is a compiler lib on FreeBSD and NetBSD -if mesonlib.is_freebsd() or mesonlib.is_netbsd(): - UNIXY_COMPILER_INTERNAL_LIBS.append('execinfo') +# execinfo is a compiler lib on BSD +UNIXY_COMPILER_INTERNAL_LIBS = ['m', 'c', 'pthread', 'dl', 'rt', 'execinfo'] # type: T.List[str] class Dedup(enum.Enum): |