potential future proofing fix for aicasm build.

Xin Li delphij at delphij.net
Thu May 2 17:57:31 UTC 2013


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

On 05/02/13 00:19, Dimitry Andric wrote:
> On May 1, 2013, at 18:44, Alfred Perlstein <alfred at ixsystems.com>
> wrote:
>> I took a shot at fixing this issue with building aicasm as part
>> of "buildkernel" of an older 9.0 src on a machine running HEAD.
>> 
>> aicasm.o: In function `__getCurrentRuneLocale': >
>> /usr/include/runetype.h:96: undefined reference to
>> `_ThreadRuneLocale'
> 
> I don't understand this error message... It seems like a linker
> error, but it also seems to refer to an incorrect include file?  Is
> this during linking or compiling?

This is because the locale code being a macro:

#if defined(__NO_TLS) || defined(__RUNETYPE_INTERNAL)
extern const _RuneLocale *__getCurrentRuneLocale(void);
#else
extern _Thread_local const _RuneLocale *_ThreadRuneLocale;
static __inline const _RuneLocale *__getCurrentRuneLocale(void)
{

        if (_ThreadRuneLocale)
                return _ThreadRuneLocale;
        if (_CurrentRuneLocale)
                return _CurrentRuneLocale;
        return &_DefaultRuneLocale;
}
#endif /* __NO_TLS || __RUNETYPE_INTERNAL */

What really puzzles me is that why the build picks up headers from the
running system.

Cheers,
- -- 
Xin LI <delphij at delphij.net>    https://www.delphij.net/
FreeBSD - The Power to Serve!           Live free or die
-----BEGIN PGP SIGNATURE-----

iQEcBAEBCgAGBQJRgqkDAAoJEG80Jeu8UPuzwvUH/2M+HDzKA9neXXYb6SKzrNX2
DVqw66ygatDj6QqwmMvZvU4+kGLNR6KEOQGNF4f0mMJmfg+GLzDFE5s769J/Be+1
4WMr1luWwgwrYlYhMrA8/CXYUWI2O9mhNfhLQHD8z3lJ6yxJgPy3h9J3jwzmU/W8
p58Dp8raABgKcK9DKE47QSXiiEXHuJUdSJXBPCoEFg09s+PnhrduQ1Vd9vfK9As0
G1HUmn+S/LWxRCB2wzZAC3FjZQHblXEvmfZzxCqUZr5AP3jtlHTHDUtJTCxxclgg
sGLmdvqnn6/3BBXIhcxXVka3CKzbuCyIeGCBhTsSbLnuKB+FXbid9ibSrIlFA2s=
=vdoK
-----END PGP SIGNATURE-----


More information about the freebsd-hackers mailing list