git: 63c1422d97af - 2022Q3 - devel/google-perftools: Fix build on armv6
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 22 Jul 2022 22:24:19 UTC
The branch 2022Q3 has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=63c1422d97af39c302b621066d7439dc817c963d commit 63c1422d97af39c302b621066d7439dc817c963d Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2022-07-22 22:22:10 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2022-07-22 22:24:16 +0000 devel/google-perftools: Fix build on armv6 Build was failing on armv6 with this error: ld: error: ./.libs/libtcmalloc_debug.so: undefined reference to unw_getcontext Reported by: fallout (cherry picked from commit feeb97235234964fc8e304fc99ef1500c22375e6) --- devel/google-perftools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/google-perftools/Makefile b/devel/google-perftools/Makefile index 013b0aadbf4f..c939155f6937 100644 --- a/devel/google-perftools/Makefile +++ b/devel/google-perftools/Makefile @@ -73,7 +73,7 @@ CONFIGURE_ARGS+=--enable-frame-pointers .endif # keep in sync with all platforms where libunwind is available -.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le +.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind LIBS+= -lunwind .endif