Mark Kettenis wrote:
> > Date: Sat, 11 May 2013 04:41:03 +0200
> > From: Han Boetes <[email protected]>
> >
> > Han Boetes wrote:
> > > I noticed emacs failed to build after switching to 5.3. I
> > > discussed the matter with the emacs devs and they added some
> > > debug code which is triggered by CFLAGS='-g3 -DUNEXELF_DEBUG' So
> > > when it's building the main binary at "Dumping under the name
> > > emacs" I get this output:
> >
> > Incase anyone missed it: I'm always using the latest code from BZR.
>
> And are you building/linking with -fno-pie -nopie?
Thanks for the heads up! That fixes the issue indeed.
% grep -i pie /usr/ports/editors/emacs/Makefile
LDFLAGS="-L${LOCALBASE}/lib -nopie"
CFLAGS+= -fno-pie
# Han