Solved 10.3 build error

Crivens

Administrator
Staff member
Administrator
Moderator
When trying to make buildworld on my main machine (amd64 running releng-10.2, I run into a build error.
Code:
/usr/src/lib/libc/posix1e/acl_support_nfs4.c:51:8: error: use of undeclared identifier 'ACL_ENTRY_INHERITED'
     { ACL_ENTRY_INHERITED, "inherited", 'I' },
Looking at the internet has not given me much clue for this as has searching here. It surely is only some small thing, but I can't see it.
I'm somewhat unenthusiastic to update the kernel without a built userland in reach.
 
Just did that, also I tried it with ccache and without...
The current state of affairs, should it be of relevance, is
Code:
Revision: 298354
 
Strange things... I ended up distrusting svn telling me no changes were present. So I removed the complete source tree and checked it out again, and then it builds. I still have the old one around on a backup, but I am not so hell-bent to get to the bottom of this to resurrect that one for comparison.
 
Sorry, but I have to re-open this.
It turns out the svn checkout is not the issue.
My /etc/make.conf looks like this:
Code:
WITH="GALLIUM"  # Needed for Radeon cards, but does no harm with Intel devices.
OVERRIDE_LINUX_BASE_PORT=c6
OVERRIDE_LINUX_NONBASE_PORTS=c6

OPTIONS_UNSET+=PULSEAUDIO
OPTIONS_UNSET+=HAL
OPTIONS_UNSET+=GVFS

WITH_CCACHE_BUILD=yes

#begin ccache settings
#.if ${.CURDIR:M*/ports/devel/ccache}
#  NO_CCACHE=yes
#.else
#  CC=/usr/local/libexec/ccache/world/cc
#  CXX=/usr/local/libexec/ccache/world/c++
#.endif
#end ccache settings

When I remove the comments which currently block ccache from being used, the build breaks.
And I have cleared the cache, yes.
 
So - I re-installed ccache not setting the CLANGLINK and LLVMLINK options, removed my entries in make.comf and set them according to the install instruction. Copy-paste. It looked the same, so I was surprised when "make buildworld" immediately balked. Turns out that formatting your make.conf to make conditional scopes from ".if" and so on is a bad idea - I added some whitespace to make clear which .if controlled what. Maybe that was it, I removed it. Right now, the build is humming away and filling the cache. I'll file this under "tales from the twilight zone". Have a nice weekend.
 
Back
Top