Date: Thu, 21 Oct 2010 19:58:20 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r214165 - projects/binutils-2.17/gnu/usr.bin/binutils Message-ID: <201010211958.o9LJwKPD002095@svn.freebsd.org>
index | next in thread | raw e-mail
Author: dim Date: Thu Oct 21 19:58:20 2010 New Revision: 214165 URL: http://svn.freebsd.org/changeset/base/214165 Log: Update binutils VERSION define for 2.17, and create separate TARGET_VENDOR and TARGET_OS defines. Set TARGET_TUPLE from BINUTILS_ARCH, TARGET_VENDOR and TARGET_OS. Modified: projects/binutils-2.17/gnu/usr.bin/binutils/Makefile.inc0 Modified: projects/binutils-2.17/gnu/usr.bin/binutils/Makefile.inc0 ============================================================================== --- projects/binutils-2.17/gnu/usr.bin/binutils/Makefile.inc0 Thu Oct 21 19:56:26 2010 (r214164) +++ projects/binutils-2.17/gnu/usr.bin/binutils/Makefile.inc0 Thu Oct 21 19:58:20 2010 (r214165) @@ -4,15 +4,17 @@ # use the normal "Makefile.inc" mechanism, because we need some of these # definitions before the sub-Makefile is processed. -VERSION= "2.15 [FreeBSD] 2005-06-08" +VERSION= "2.17 [FreeBSD] 2007-08-07" TARGET_ARCH?= ${MACHINE_ARCH} +TARGET_VENDOR?= unknown +TARGET_OS?= freebsd .if ${TARGET_ARCH} == "amd64" BINUTILS_ARCH=x86_64 .else BINUTILS_ARCH=${TARGET_ARCH} .endif -TARGET_TUPLE?= ${BINUTILS_ARCH}-obrien-freebsd +TARGET_TUPLE?= ${BINUTILS_ARCH}-${TARGET_VENDOR}-${TARGET_OS} # RELTOP is the relative path to this point in the source or object # tree, from any subdirectory of same. It gets extra "../" prefixeshelp
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010211958.o9LJwKPD002095>
