Module Name: src
Committed By: matt
Date: Thu Apr 25 14:48:09 UTC 2013
Modified Files:
src/lib/libexecinfo: Makefile
Log Message:
When building for earm, make sure to build unwind_arm_ehabi_stub.*
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libexecinfo/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libexecinfo/Makefile
diff -u src/lib/libexecinfo/Makefile:1.1 src/lib/libexecinfo/Makefile:1.2
--- src/lib/libexecinfo/Makefile:1.1 Sat May 26 22:02:29 2012
+++ src/lib/libexecinfo/Makefile Thu Apr 25 14:48:09 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2012/05/26 22:02:29 christos Exp $
+# $NetBSD: Makefile,v 1.2 2013/04/25 14:48:09 matt Exp $
.include <bsd.own.mk>
@@ -19,6 +19,9 @@ MAN= backtrace.3
.if ${USE_UNWIND} == "yes"
SRCS+=unwind.c
+.if !empty(MACHINE_ARCH:Mearm)
+SRCS+=unwind_arm_ehabi_stub.c
+.endif
.else
SRCS+=builtin.c
.endif