Add NetBSD support in symbolextractor.

Choose FreeBSD backend (OpenBSD backend would also work).
pull/10281/head
Thomas Klausner 3 years ago committed by Eli Schwartz
parent 54808cd39b
commit 1c23281653
  1. 2
      mesonbuild/scripts/symbolextractor.py

@ -288,6 +288,8 @@ def gen_symbols(libfilename: str, impfilename: str, outfilename: str, cross_host
openbsd_syms(libfilename, outfilename)
elif mesonlib.is_freebsd():
freebsd_syms(libfilename, outfilename)
elif mesonlib.is_netbsd():
freebsd_syms(libfilename, outfilename)
elif mesonlib.is_windows():
if os.path.isfile(impfilename):
windows_syms(impfilename, outfilename)

Loading…
Cancel
Save