Date: Wed, 20 Jun 2018 11:15:59 +0100 From: Ruslan Bukin <ruslan.bukin@cl.cam.ac.uk> To: Jan Beich <jbeich@FreeBSD.org> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r472783 - head/Templates Message-ID: <20180620101559.GA9393@bsdpad.com> In-Reply-To: <20180620093529.GA8916@bsdpad.com> References: <201806191236.w5JCarwQ059758@repo.freebsd.org> <y3fa-yamk-wny@FreeBSD.org> <20180620093529.GA8916@bsdpad.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Hi Jan I made required changes (based on previous updates to these scripts): https://reviews.freebsd.org/D15925 So I wonder how to exp-run these now ? I did a try to build few ports on amd64, riscv and it works. Also config.guess now guessing correctly: br@qemu:/usr/ports/Templates % sh config.guess riscv64-unknown-freebsd12.0 0 pie:/usr/ports/Templates >sh config.guess amd64-unknown-freebsd11.2 Ruslan On Wed, Jun 20, 2018 at 10:35:29AM +0100, Ruslan Bukin wrote: > Will take a look. > Sorry and thanks :) > > Ruslan > > On Tue, Jun 19, 2018 at 07:00:35PM +0200, Jan Beich wrote: > > Ruslan Bukin <br@FreeBSD.org> writes: > > > > > Author: br (src committer) > > > Date: Tue Jun 19 12:36:52 2018 > > > New Revision: 472783 > > > URL: https://svnweb.freebsd.org/changeset/ports/472783 > > > > > > Log: > > > Update config.guess and config.sub to the latest version. > > > > > > RISC-V machine added to config.sub allowing us to build > > > ports/packages for RISC-V. > > > > > > Sponsored by: DARPA, AFRL > > [...] > > > *:FreeBSD:*:*) > > > UNAME_PROCESSOR=`/usr/bin/uname -p` > > > - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` > > > + case "$UNAME_PROCESSOR" in > > > + amd64) > > > + UNAME_PROCESSOR=x86_64 ;; > > > + i386) > > > + UNAME_PROCESSOR=i586 ;; > > > + esac > > > + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" > > > exit ;; > > > > Did you check for fallout via exp-run? See also > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208440 > > > > $ sh Templates/config.guess > > i386-unknown-freebsd10.4 > > > > $ svn up Templates > > Updating 'Templates': > > U Templates/config.guess > > U Templates/config.sub > > Updated to revision 472804. > > > > $ sh Templates/config.guess > > i586-unknown-freebsd10.4 > > > > > > > > $ sh Templates/config.guess > > amd64-unknown-freebsd12.0 > > > > $ svn up Templates > > Updating 'Templates': > > U Templates/config.guess > > U Templates/config.sub > > Updated to revision 472804. > > > > $ sh Templates/config.guess > > x86_64-unknown-freebsd12.0 > _______________________________________________ > svn-ports-head@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-head > To unsubscribe, send any mail to "svn-ports-head-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20180620101559.GA9393>