Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Jul 2017 19:26:25 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 221029] AMD Ryzen: strange compilation failures using poudriere or plain buildkernel/buildworld
Message-ID:  <bug-221029-8-JgUK762V9u@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-221029-8@https.bugs.freebsd.org/bugzilla/>
References:  <bug-221029-8@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D221029

--- Comment #9 from Nils Beyer <nbe@renzel.net> ---
(In reply to Nils Beyer from comment #2)

believe it or not, I also get these
---------------------------------------------------------------------------=
-----
error: unable to rename temporary 'OptParserEmitter.o-a86dcd92' to output f=
ile
'OptParserEmitter.o': 'No such file or directory'
---------------------------------------------------------------------------=
-----

while _not_ using TMPFS; here's the script I'm running:
---------------------------------------------------------------------------=
-----
#!/bin/sh

OBJDIR=3D"/tmp/ryzen_stress_test"

trap "exit 1" 1 2 3

cd /usr/src
mkdir ${OBJDIR}

while [ 1 ]; do
        echo "`date` begin"
        BEG=3D"`date +%s`"
#       umount ${OBJDIR} ; umount ${OBJDIR} ; umount ${OBJDIR}
#       mount -t tmpfs tmpfs ${OBJDIR} || exit 1
        rm -rf ${OBJDIR}
        mkdir ${OBJDIR}
        export MAKEOBJDIRPREFIX=3D${OBJDIR}
        make -j20 buildworld buildkernel >${OBJDIR}/${BEG}.log 2>&1
        ERR=3D"$?"
        echo "`date` end - errorcode ${ERR}"
        [ "${ERR}" !=3D "0" ] && cp ${OBJDIR}/${BEG}.log ~/.
        rm ${OBJDIR}/${BEG}.log
done
---------------------------------------------------------------------------=
-----

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-221029-8-JgUK762V9u>