From 1f43c949bf1b58f8167c463f4a88b6c7b5407a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Gardstr=C3=B6m?= Date: Sun, 15 Oct 2023 23:35:56 +0200 Subject: [PATCH] add execinfo for netbsd --- .changes/1348.json | 4 ++++ docker/netbsd.sh | 1 + 2 files changed, 5 insertions(+) create mode 100644 .changes/1348.json diff --git a/.changes/1348.json b/.changes/1348.json new file mode 100644 index 000000000..c4860057a --- /dev/null +++ b/.changes/1348.json @@ -0,0 +1,4 @@ +{ + "description": "add `libexecinfo.so` in netbsd", + "type": "added" +} diff --git a/docker/netbsd.sh b/docker/netbsd.sh index 7eb1b27f6..b0ce0ee1e 100755 --- a/docker/netbsd.sh +++ b/docker/netbsd.sh @@ -78,6 +78,7 @@ main() { cp "${td}/netbsd/lib/libpthread.so.1.4" "${destdir}/lib" cp "${td}/netbsd/usr/lib/librt.so.1.1" "${destdir}/lib" cp "${td}/netbsd/usr/lib"/lib{c,m,pthread}{,_p}.a "${destdir}/lib" + cp "${td}/netbsd/usr/lib"/libexecinfo.so "${destdir}/lib" cp "${td}/netbsd/usr/lib"/{crt0,crti,crtn,crtbeginS,crtendS,crtbegin,crtend,gcrt0}.o "${destdir}/lib" ln -s libc.so.12.213 "${destdir}/lib/libc.so"