Uploaded image for project: 'Thrift'
  1. Thrift
  2. THRIFT-5018

Build failure with clang proxy compiler under Linux due to cmake include_directories SYSTEM option

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 0.13.0
    • None
    • Build Process
    • None

    Description

      We saw build errors with Thrift 0.13.0 like the following when compiling with a proxy compiler (effectively a script that sits in front of clang) under Linux:

      stdlib.h: No such file or directory #include_next <stdlib.h>

      Compiling the same Thrift sources with clang 6.0.0 directly on the same system worked fine.

      We traced it down to the the following compile command line being added in the proxy compiler case:

      -isystem /usr/include 
      

      When we manually removed the above option from a failing command line it succeeded.

      Searching online indicates that this is a known issue with the above option and certain versions of clang and gcc. The typical work around for CMake generated projects is to include the following CMake option:

      set (CMAKE_NO_SYSTEM_FROM_IMPORTED ON)

      We import Thrift via cmake using the ExternalProject_Add command. Attempting to pass the above option in the usual CMAKE_ARGS to the external project did not work. It was too bad because we really didn’t want to change the Thrift sources.

      Eventually we found this thread, where the poster was seeing the same problem with Thrift:

      https://patchwork.openembedded.org/patch/154233/

      In the end what we did to work around this was to remove the SYSTEM option from every include_directories call in the Thrift CMake sources. For example, the following:

      include_directories(SYSTEM "${Boost_INCLUDE_DIRS}”)

      Was changed to:

      include_directories("${Boost_INCLUDE_DIRS}”)

      After making this change everywhere in the Thrift cmake sources, the build succeeded.

      It’s unclear to us the exact mechanism whereby the errant -isystem command is being included. Perhaps this is a CMake bug. In our case we were using CMake 3.14.3.

      But there does seem to be some consensus online that using -isystem might cause more harm than good. For example, see this thread:

      https://stackoverflow.com/questions/37218953/isystem-on-a-system-include-directory-causes-errors

      And specifically this quote:

      To summarize, be cautious about using -isystem for its error-silencing side-effects; if the directory being included is already on the search path, the order of the path may be modified and GCC may report errors.

      If there’s any interest, we can provide a patch to 0.13.0 that removes the SYSTEM option. Although it’s just as easy to find them all and remove them if you agree that this should be fixed.

      Attachments

        Activity

          People

            Unassigned Unassigned
            acronce Allen Cronce
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: