Gerald Pfeifer
2017-Apr-29 17:00 UTC
GCC + FreeBSD 11.0 Stable - stat.h does not have vm_ooffset_t definition
On Thu, 27 Apr 2017, Jung-uk Kim wrote:>>>>>> I found the problem, but I do not know how to resolve this. When you >>>>>> install the GCC compiler from the PKG repository it appears to create a >>>>>> modified set of include files from the system (default?) include files >>>>>> (/usr/include). However, when the modified /usr/include/sys/types.h >>>>>> file is created, the typedef for vm_ooffset_t is modified, and there is >>>>>> no reference to __vm_ooffset_t that the compiler can resolve. >>>>>> >>>>>> < typedef __int64_t vm_ooffset_t; >>>>>> --- >>>>>> > typedef __vm_ooffset_t vm_ooffset_t; >>>>> ... >>>>> You have to rebuild lang/gcc from the ports tree to fix this problem. >>>>> >>>>> https://lists.freebsd.org/pipermail/freebsd-current/2017-February/064937.html >>>> Does this mean that the GCC port/package needs to be updated? If so, >>>> should I file a PR report on this issue? >>>> I (temporarily) fixed this problem by hand editting the modified types.h >>>> file and things seem to work. >>> I already wrote a patch (attached). :-) > If the maintainer (gerald) approves. CC'd.Thanks for bringing this to my attention. Can you please help me understand why this is necessary? If the port/package is builts from scratch, does this trigger the problem? Or is this only a question of an old package running on that new version of FreeBSD after these changes? (I am wondering whether just forcing a rebuild of that package is not going to have the same effect?) Gerald
Dimitry Andric
2017-Apr-29 17:55 UTC
GCC + FreeBSD 11.0 Stable - stat.h does not have vm_ooffset_t definition
On 29 Apr 2017, at 19:00, Gerald Pfeifer <gerald at pfeifer.com> wrote:> > On Thu, 27 Apr 2017, Jung-uk Kim wrote: >>>>>>> I found the problem, but I do not know how to resolve this. When you >>>>>>> install the GCC compiler from the PKG repository it appears to create a >>>>>>> modified set of include files from the system (default?) include files >>>>>>> (/usr/include). However, when the modified /usr/include/sys/types.h >>>>>>> file is created, the typedef for vm_ooffset_t is modified, and there is >>>>>>> no reference to __vm_ooffset_t that the compiler can resolve. >>>>>>> >>>>>>> < typedef __int64_t vm_ooffset_t; >>>>>>> --- >>>>>>>> typedef __vm_ooffset_t vm_ooffset_t; >>>>>> ... >>>>>> You have to rebuild lang/gcc from the ports tree to fix this problem. >>>>>> >>>>>> https://lists.freebsd.org/pipermail/freebsd-current/2017-February/064937.html >>>>> Does this mean that the GCC port/package needs to be updated? If so, >>>>> should I file a PR report on this issue? >>>>> I (temporarily) fixed this problem by hand editting the modified types.h >>>>> file and things seem to work. >>>> I already wrote a patch (attached). :-) >> If the maintainer (gerald) approves. CC'd. > > Thanks for bringing this to my attention. > > Can you please help me understand why this is necessary?This is because gcc's fixincludes process makes copies of certain system headers (in this case, /usr/include/sys/types.h) with slight modifications. Then, it places the directory containing the modified headers at the front of the include search path. So far so good. Now, whenever sys/types.h is updated, as happened with the vm_ooffset_t change, the header in gcc's own preferred directory might not match the definitions which are expected, leading to compilation errors.> If the > port/package is builts from scratch, does this trigger the problem?Yes, basically you need to rebuild all gcc ports from scratch, whenever you update any system header that matches gcc's list of files it wants to modify. But getting those errors in the first place can be very confusing to an end-user. And having to rebuild all those ports might be a burden. As some people pointed out, simply moving away or deleting the directory with fixed includes appears to work around the problems. So maybe the question is if gcc really needs to modify those headers at all? I have looked at gcc's build system a bit, but it does not seem very easy to disable the fixincludes step. I guess that is simply not supported. So in that case, if Jung-uk's solution works, it is probably the best way forward, and it can even be upstreamed. Jung-uk, how does your patch handle an updated header under /usr/include which contains e.g. new definitions, which are not in the fixed includes directory? -Dimitry -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 194 bytes Desc: Message signed with OpenPGP URL: <http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20170429/25727835/attachment.sig>