Revert "openbsd: execinfo is not a compiler lib"

OpenBSD now has execinfo as compiler lib. DragonFly has all along.

This reverts commit 0241948d8f.
pull/11174/head
Brad Smith 2 years ago committed by Jussi Pakkanen
parent b249470a4c
commit dd25b88f00
  1. 8
      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):

Loading…
Cancel
Save