Date: Tue, 28 Apr 2015 12:21:29 -0700 From: Garrett Cooper <yaneurabeya@gmail.com> To: Andrew Turner <andrew@fubar.geek.nz> Cc: Ed Maste <emaste@FreeBSD.org>, "src-committers@freebsd.org" <src-committers@freebsd.org>, "svn-src-all@freebsd.org" <svn-src-all@freebsd.org>, "svn-src-head@freebsd.org" <svn-src-head@freebsd.org> Subject: Re: svn commit: r282156 - head Message-ID: <A35EA7DC-3E12-44DC-A538-F9C3F3B3B8DC@gmail.com> In-Reply-To: <20150428190445.798316bb@bender> References: <201504281713.t3SHD5UW096783@svn.freebsd.org> <42F6A579-082C-4159-8E16-1C8B69B0A3AE@gmail.com> <20150428190445.798316bb@bender>
next in thread | previous in thread | raw e-mail | index | archive | help
--Apple-Mail=_F687196A-608A-4961-84AE-28BB09776064 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 On Apr 28, 2015, at 11:04, Andrew Turner <andrew@fubar.geek.nz> wrote: > On Tue, 28 Apr 2015 10:53:57 -0700 > Garrett Cooper <yaneurabeya@gmail.com> wrote: =85 >> Why just amd64/arm here? >=20 > You're missing part of the line, it contains all architectures with > arm64 being optional: >=20 > +TARGETS?=3Damd64 arm ${UNIVERSE_arm64} i386 mips pc98 powerpc sparc64 Hi Andrew, Oh, ok. It was a bit hard for me to read :/... I had a different change I was going to post up on Phabricator (pasted = below). The goal of my diff was two-fold: - allow people to override the universe target (in this case = universe_arm64) to skip the one generated for make universe below. - always add arm64, but enable universe_arm64 only if binutils was = installed on the build host. I could do the equivalent for the TARGET_ARCHES loop if desired. Thanks! -NGie $ svn diff Makefile Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- Makefile (revision 282108) +++ Makefile (working copy) @@ -373,19 +373,15 @@ # existing system is. # .if make(universe) || make(universe_kernels) || make(tinderbox) || = make(targets) -TARGETS?=3Damd64 arm i386 mips pc98 powerpc sparc64 +TARGETS?=3Damd64 arm arm64 i386 mips pc98 powerpc sparc64 # XXX Add arm64 to universe only if we have an external binutils = installed. # It does not build with the in-tree linker. -.if exists(/usr/local/aarch64-freebsd/bin/ld) -TARGETS+=3Darm64 -TARGET_ARCHES_arm64?=3D aarch64 -.else -universe: universe_arm64_skip -universe_epilogue: universe_arm64_skip -universe_arm64_skip: universe_prologue +.if !exists(/usr/local/aarch64-freebsd/bin/ld) +universe_arm64: @echo ">> arm64 skipped - install aarch64-binutils port or = package to build" .endif TARGET_ARCHES_arm?=3D arm armeb armv6 armv6hf +TARGET_ARCHES_arm64?=3D aarch64 TARGET_ARCHES_mips?=3D mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?=3D powerpc powerpc64 TARGET_ARCHES_pc98?=3D i386 @@ -427,6 +423,7 @@ .for target in ${TARGETS} universe: universe_${target} universe_epilogue: universe_${target} +.if !target(universe_${target}) universe_${target}: universe_${target}_prologue universe_${target}_prologue: universe_prologue @echo ">> ${target} started on `LC_ALL=3DC date`" @@ -454,6 +451,7 @@ .endfor .endif universe_${target}: universe_${target}_kernels +.endif universe_${target}_kernels: universe_${target}_prologue .MAKE .if exists(${KERNSRCDIR}/${target}/conf/NOTES) @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=3D/dev/null = \ --Apple-Mail=_F687196A-608A-4961-84AE-28BB09776064 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJVP926AAoJEMZr5QU6S73e+TwH/1nvWNYNlGcsTp51m75fzRyE IXSCMoXjddDS3aJ7s7uR/VumQPeoYX/I0fqlMTPNQoQug8oiRukDHgW82BUyhaN0 23cSYWomqrCZBIOgjlWgWxIP4LS/1BkxrSC6LJgXSB2rEZrV9+FgFENq1+Wdcq5B jYHGyqhWFU/T1dLF0hDi6nlvF/I4P8OlLUGBiD+QIo4OdIRGO9VCMyk3ePjF2o5o o96LS/hkhmxFw8AEUZwHR/f+Xx8wEgvGm3fo6OCKSQvagNKT9nCtX58JiICgMlpf 0DmCteQ1iz+4OnLJYV6avnC0WCHCqRNCDIHHLtJVMjIfJgWn7xApuMasw/acABI= =BlYZ -----END PGP SIGNATURE----- --Apple-Mail=_F687196A-608A-4961-84AE-28BB09776064--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?A35EA7DC-3E12-44DC-A538-F9C3F3B3B8DC>