You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 2, 2021. It is now read-only.
Include directories that are added from USER_HEADER_SEARCH_PATHS end up passed to the compiler with the -I flag, while xcodebuild uses -iquote. This means that even though these directories were only inteded for use with #include "foo.h", the also end up used for #include <foo.h>.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Include directories that are added from USER_HEADER_SEARCH_PATHS end up passed to the compiler with the
-I
flag, while xcodebuild uses-iquote
. This means that even though these directories were only inteded for use with#include "foo.h"
, the also end up used for#include <foo.h>
.The text was updated successfully, but these errors were encountered: