Unity3D 4.7.2 exported source worked perfect in Xcode 9.
Same code gave file not found error in latest Xcode 10.1
#include <algorithm> // Got error here saying file not found.
So I just changed C++ Standard Library to libc++(LLVM C++ standard library)
After this change all compiler errors gone.... got lots of linker error for c++
How to solve these errors ?