diff options
author | emaste <emaste@FreeBSD.org> | 2015-07-29 18:45:38 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2015-07-29 18:45:38 +0000 |
commit | 32e34ac2b595f7fda4fd60eb068119b02dfce0a7 (patch) | |
tree | 1dd80db28960f1762946a615398f646b34178730 /tools/build/options | |
parent | 4829edcacf3d5dc06981744eb6ae9d3faf755697 (diff) | |
download | FreeBSD-src-32e34ac2b595f7fda4fd60eb068119b02dfce0a7.zip FreeBSD-src-32e34ac2b595f7fda4fd60eb068119b02dfce0a7.tar.gz |
Allow ELF Tool Chain elfcopy to be installed as objcopy
ELF Tool Chain elfcopy is nearly a drop-in replacement for GNU objcopy,
but does not currently support PE output which is needed for building
x86 UEFI bits.
Add a src.conf knob to allow installing it as objcopy and set it by
default for aarch64 only, where we don't have a native binutils.
Reviewed by: bapt
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D2887
Diffstat (limited to 'tools/build/options')
-rw-r--r-- | tools/build/options/WITHOUT_ELFCOPY_AS_OBJCOPY | 4 | ||||
-rw-r--r-- | tools/build/options/WITH_ELFCOPY_AS_OBJCOPY | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tools/build/options/WITHOUT_ELFCOPY_AS_OBJCOPY b/tools/build/options/WITHOUT_ELFCOPY_AS_OBJCOPY new file mode 100644 index 0000000..f06a606 --- /dev/null +++ b/tools/build/options/WITHOUT_ELFCOPY_AS_OBJCOPY @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Set to build and install +.Xr objcopy 1 +from GNU Binutils, instead of the one from ELF Tool Chain. diff --git a/tools/build/options/WITH_ELFCOPY_AS_OBJCOPY b/tools/build/options/WITH_ELFCOPY_AS_OBJCOPY new file mode 100644 index 0000000..eabaac3 --- /dev/null +++ b/tools/build/options/WITH_ELFCOPY_AS_OBJCOPY @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Set to build and install ELF Tool Chain's elfcopy as +.Xr objcopy 1 , +instead of the one from GNU Binutils. |