GCC build problem (#include_next limits.h)

后端 未结 6 972
一个人的身影
一个人的身影 2021-01-02 04:43

When i try to

$ make depend -f gcc.mak

a middleware on my Ubuntu machine I get this

/usr/include/../include/limits.h:125:26: error: no include          


        
6条回答
  •  旧巷少年郎
    2021-01-02 05:09

    Consider using #include_next (gcc extension) in order to force gcc to look at the next found limits.h in the include path (which should be the toolset's copy).

提交回复
热议问题