diff options
author | fredb <fredb@pkgsrc.org> | 2003-07-14 19:01:35 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2003-07-14 19:01:35 +0000 |
commit | e2ea4670d3ff09ae3aa79b523552dae175619f03 (patch) | |
tree | 3833f92e2f2e4b4b25d5565af95b3d155c72bde7 /devel/binutils/Makefile | |
parent | 226bb910e07f2e1592b424398c7caae959cc3fe0 (diff) | |
download | pkgsrc-e2ea4670d3ff09ae3aa79b523552dae175619f03.tar.gz |
Update to binutils "2.14.0.0". (The ".0.0" is to allow any PKGREVISION
bumps to correctly sort before "2.14.1", and "2.14.1.1", and so on.)
Follows is a list of additions to the "NEWS" files since 2.13. The "NEWS"
files were apparently not updated for "2.13.2.1" however, so all of this
is not really new. The "--with-sysroot" and "--with-lib-path" configure
options for "ld" are truly new, though, and the package now takes advantage
of "--with-lib-path" to prevent picking up crud from "${PREFIX}/lib", to
better support using this "ld" with which to build pkgsrc packages.
----- binutils/binutils/NEWS -----
* Added --info switch to objcopy and strip.
* Support for Vitesse IQ2000 added by Red Hat.
* Added 'S' encoding to strings to allow the display of 8-bit characters.
* Added --prefix-symbols=<text>, --prefix-sections=<text> and
--prefix-alloc-sections=<text> to objcopy.
* readelf can handle the extensions to the DWARF2 spec used by the Unified
Parallel C compiler.
* BFD no longer declares a "boolean" type, to avoid clashes with other
headers that declare the same. Users of BFD should replace boolean,
false and true, with int, 0 and 1, or define their own boolean type.
* Support for IP2K added by Denis Chertykov.
----- binutils/gas/NEWS -----
* Added support for MIPS32 Release 2.
* Added support for Xtensa architecture.
* Support for Intel's iWMMXt processor (an ARM variant) added.
* An assembler test generator has been contributed and an example file that
uses it (gas/testsuite/gas/all/test-gen.c and test-exmaple.c).
* Support for SH2E added.
* GASP has now been removed.
* Support for Texas Instruments TMS320C4x and TMS320C3x series of
DSP's contributed by Michael Hayes and Svein E. Seldal.
* Support for the Ubicom IP2xxx microcontroller added.
----- binutils/ld/NEWS -----
* Added support for Xtensa architecture.
* Added --with-sysroot configure switch to specify a target system root, for
linking against a target filesystem image.
* Added --accept-unknown-linker-format to restore old linker behaviour (pre
2.14) of silently accepting and linking in any files in an unknown binary
file format.
* Added --no-omagic to undo the effects of the -N option.
* Support for Texas Instruments TMS320C4x and TMS320C3x series of
DSP's contributed by Michael Hayes and Svein E. Seldal.
* Added --with-lib-path configure switch to specify default value for
LIB_PATH.
* ARM port to QNX operating system added by Graeme Peterson.
* IP2K support added by Denis Chertykov.
Diffstat (limited to 'devel/binutils/Makefile')
-rw-r--r-- | devel/binutils/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/devel/binutils/Makefile b/devel/binutils/Makefile index 5a9a18af346..a1f50382b9a 100644 --- a/devel/binutils/Makefile +++ b/devel/binutils/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2003/06/23 10:17:53 seb Exp $ +# $NetBSD: Makefile,v 1.13 2003/07/14 19:01:35 fredb Exp $ # -DISTNAME= binutils-2.13.2.1 +DISTNAME= binutils-2.14 +PKGNAME= binutils-2.14.0.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=binutils/} @@ -9,15 +10,18 @@ MAINTAINER= tech-pkg@netbsd.org HOMEPAGE= http://www.gnu.org/directory/binutils.html COMMENT= GNU binary utilities -USE_BUILDLINK2= YES GNU_CONFIGURE= YES +USE_BUILDLINK2= YES +USE_MAKEINFO= YES +USE_NEW_TEXINFO= YES +USE_PKGLOCALEDIR= YES + +CONFIGURE_ARGS+= --with-lib-path='/lib:/usr/lib' PLIST_SRC= ${PKGDIR}/PLIST.common PLIST_SRC+= ${WRKDIR}/PLIST_DYNAMIC PLIST_SRC+= ${PKGDIR}/PLIST.common_end -USE_NEW_TEXINFO= YES -USE_MAKEINFO= YES INFO_FILES= as.info bfd.info binutils.info gprof.info ld.info # Prevent the need to run texi2pod.pl and pod2man hence |