diff options
author | emaste <emaste@FreeBSD.org> | 2015-01-23 21:34:08 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2015-01-23 21:34:08 +0000 |
commit | 8b186299aaa81eb7e86f5856a6ba143d37ef3fdd (patch) | |
tree | 2d29e78b218a3030fe6616a8f0c54448fd14ee48 /Makefile.inc1 | |
parent | 6ad32c1c7937ea6cc035c8260bd9091cc2ea5626 (diff) | |
download | FreeBSD-src-8b186299aaa81eb7e86f5856a6ba143d37ef3fdd.zip FreeBSD-src-8b186299aaa81eb7e86f5856a6ba143d37ef3fdd.tar.gz |
Restore addr2line to cross tools
Addr2line is not required for the build, and a per-arch binary is no
longer required with the switch to the ELF Tool Chain. However, building
these tools during the cross tools stage can be useful for developers
who cross build HEAD from stable/10, and adds very little to the build
time.
Reviewed by: ian, imp
Differential Revision: https://reviews.freebsd.org/D1583
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index afa4940..0d0aea4 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1437,6 +1437,9 @@ _elftctools= lib/libelftc \ usr.bin/nm \ usr.bin/size \ usr.bin/strings +# These are not required by the build, but can be useful for developers who +# cross-build on a FreeBSD 10 host: +_elftctools+= usr.bin/addr2line .endif .endif |