Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Jun 2011 03:00:52 +0400
From:      Pan Tsu <inyaoo@gmail.com>
To:        "Hartmann\, O." <ohartman@zedat.fu-berlin.de>
Cc:        FreeBSD Current <freebsd-current@freebsd.org>, freebsd-ports@FreeBSD.org
Subject:   Re: gcc-4.5 and 4.6 needs to be recompiled due to /usr/src/UPDATE: 20110608:
Message-ID:  <867h8uehjv.fsf@gmail.com>
References:  <4DF10BD3.2030006@zedat.fu-berlin.de>

next in thread | previous in thread | raw e-mail | index | archive | help
"Hartmann, O." <ohartman@zedat.fu-berlin.de> writes:

> Since the notice mentioned in /usr/src/UPDATE (20110608) both gcc-4.5
> and 4.6 seems to need to be recompiled. I tried some ports with
> "USE_FORTRAN= yes" setand they failed as with gcc-4.6. There was
> always an error reporting: undefined reference to __cpumask_t or
> similar.

Do you mean stale typedef in gcc's private copy under
  PREFIX/lib/gccXY/gcc/*/*/include-fixed/sys/types.h ?

You can fix the file manually instead of wasting cpu cycles.

  $ gcc46 foo.c
  In file included from /usr/local/lib/gcc46/gcc/x86_64-portbld-freebsd9.0/4.6.1/include-fixed/unistd.h:46:0,
                   from foo.c:1:
  /usr/local/lib/gcc46/gcc/x86_64-portbld-freebsd9.0/4.6.1/include-fixed/sys/types.h:111:1: error: unknown type name '__cpumask_t'
  Exit 1

  $ sed -n 111p /usr/local/lib/gcc46/gcc/x86_64-portbld-freebsd9.0/4.6.1/include-fixed/sys/types.h
  typedef __cpumask_t     cpumask_t;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?867h8uehjv.fsf>