-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Travis: system includes not treated as such by gcc on osx #67
Comments
Indeed, at the end of if(NOT APPLE)
set(CMAKE_INCLUDE_SYSTEM_FLAG_${lang} "-isystem ")
endif() If this is just it, we can simply patch that in the |
So the patch would be to always disable "-Werror" on Mac OS X, I guess? |
Apparently, |
Apparently, this was finally fixed in CMake 3.6. |
Compilation currently fails on Travis with
osx
+gcc-4.8
. It seems that system includes (e.g.-isystem /usr/include
) end up being treated as normal includes (-I/usr/include
), and warnings in Eigen become errors.Possible related issue: http://public.kitware.com/Bug/view.php?id=10837
The text was updated successfully, but these errors were encountered: