963c808570
Changelog: Changes in 2.26: * Add option to objcopy to insert new symbols into a file: --add-symbol <name>=[<section>:]<value>[,<flags>] * Add support for the ARC EM/HS, and ARC600/700 architectures. * Extend objcopy --compress-debug-sections option to support --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi] for ELF targets. * Add --update-section option to objcopy. * Add --output-separator option to strings.
32 lines
804 B
Makefile
32 lines
804 B
Makefile
# $NetBSD: Makefile,v 1.2 2016/01/30 22:20:51 ryoon Exp $
|
|
|
|
DISTNAME= binutils-2.26
|
|
PKGNAME= cross-arm-none-eabi-${DISTNAME}
|
|
CATEGORIES= cross
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=binutils/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= # empty
|
|
COMMENT= Cross binutils for bare metal ARM EABI
|
|
LICENSE= gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake makeinfo
|
|
GNU_CONFIGURE= yes
|
|
|
|
ARMELF_PREFIX= ${PREFIX}/cross-arm-none-eabi
|
|
|
|
OBJDIR= ../build
|
|
CONFIGURE_DIRS= ${OBJDIR}
|
|
CONFIGURE_SCRIPT= ${WRKSRC}/configure
|
|
GNU_CONFIGURE_PREFIX= ${ARMELF_PREFIX}
|
|
|
|
CONFIGURE_ARGS+= --disable-werror --target=arm-none-eabi
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
INFO_FILES= yes
|
|
|
|
pre-configure:
|
|
${RUN} cd ${WRKSRC} && ${MKDIR} ${OBJDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|