building an 8.4-STABLE i386 poudriere jail on an 10.0-STABLE amd64 host
Glen Barber
gjb at FreeBSD.org
Sat Aug 30 02:43:01 UTC 2014
On Fri, Aug 29, 2014 at 05:43:18PM -0700, Don Lewis wrote:
> I simplified things a bit and am now just doing normal crossbuilds. I'm
> still seeing core dumps, even on amd64 -> amd64 crossbuilds. I'm not
> seeing a reason, though ...
>
> [gdb backtrace]
>
> [...]
>
> Looks like all the pointers are OK, so why the SIGBUS?
>
Pardon any incoherency in what follows, because it is mostly based off
smashed-together recollection from a text file of notes with the 8.x
(and prior) cross builds.
The TL;DR is, there's probably not much information I can provide that
will be useful to you in debugging this. Sorry. :(
(And Warner, if you're listening, I know your stance on the topic, so
no need to re-enlighten me.) :-)
While it may sounds like I'm going in a different direction than what
you're try to solve, there actually is a reason for it, and a possible
solution for your case.
The issues you are running into are 80% of the reason that after 8.4 was
released, there were no 8.4-STABLE snapshots produced. The other 20% is
split up with 10% because of how the release builds for 8.x and earlier
work, and 10% because it was not reasonable to implement "special" code
in the scripts I use for a single branch. If this was a few years ago,
and 7.x (and possibly 6.x) was still supported, I may have considered
it. That said, when I say "8.x" below, I really mean "8.x and prior
branches."
My primary issue with how the 8.x release builds worked is that it would
use chroot(8) by default, specifically:
1) buildworld
2) installworld DESTDIR=/blah
3) chroot /blah make -C /usr/src buildworld buildkernel
4) chroot /blah make -C /usr/src/release release
The 9.x and later release builds do not do this. You specify the target
directory for the resulting build, and a bunch of magic happens, and
when it's done, you have all the things to install FreeBSD. The major
benefit to this is that it does *not* use chroot(8) by default.
The 8.4-RELEASE was built on a machine running 9-STABLE, so make(1),
gcc(1), and so on were not that far diverged for there to be any real
issues (such as what you're seeing).
The snapshot builder in use now, at that time was running 10-CURRENT.
Several "hacks" were in place, such as WITH_GNUCXX (which somehow turned
into 4 or more src.conf(5) entries by now), which would allow building
8.x on 10-CURRENT to somewhat work. That did not last long, though.
I think it was around when bmake became the default in -CURRENT that
I stopped spending time trying to build 8.x snapshots -- at that point,
the time spent debugging the build failures and updating the scripts to
"fix" the build became increasingly less beneficial.
Now, having said all that, I have a possible solution that, quite
honestly, may or may not work (I have no idea at this point).
You can grab the 8.4-RELEASE distribution set from FTP, and extract it
into a scratch directory, check out the stable/8/ tree into the scratch
directory usr/src/, then do:
# chroot /scratch make -C /usr/src buildworld [...]
That would at least provide you with the binary bits you want for your
package builds.
I *think* this is somewhat what the cluster package builders do, but
then again, I do not know off-hand if packages for 8.x are build for
pkg(8) - they may be only pkg_install(1).
Again, sorry that I do not provide a "just do $this" kind of magic wand
in this case, especially since I've been in the same painful situation
you are in. But I hope at least some of this information is useful to
you.
Glen
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20140829/9d49bf94/attachment.sig>
More information about the freebsd-stable
mailing list