Skip to content

Commit

Permalink
Fix "stdlib.h: No such file or directory" errors in GCC-6
Browse files Browse the repository at this point in the history
Including '-isystem /usr/include' breaks building with GCC-6.
See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70129
  • Loading branch information
Nsane457 committed Sep 19, 2016
1 parent 4421e22 commit b0d31cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tf/CMakeLists.txt
Expand Up @@ -8,7 +8,7 @@ find_package(catkin COMPONENTS angles geometry_msgs message_filters message_gene

catkin_python_setup()

include_directories(SYSTEM ${Boost_INCLUDE_DIR}
include_directories(${Boost_INCLUDE_DIR}
${catkin_INCLUDE_DIRS}
)
include_directories(include)
Expand Down

0 comments on commit b0d31cc

Please sign in to comment.