-
Notifications
You must be signed in to change notification settings - Fork 0
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
Compile Errors Xcode 10.2 #1
Comments
SEMANTIC ISSUES: (all seem to relate to above) /VVOSCQueryProtocol/external_projects/asio/asio/include/asio/detail/string_view.hpp:36:12: No member named 'experimental' in namespace 'std' in the string_view.hpp files contains: #ifndef ASIO_DETAIL_STRING_VIEW_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) pragma once#endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "asio/detail/config.hpp" #if defined(ASIO_HAS_STRING_VIEW) #if defined(ASIO_HAS_STD_STRING_VIEW) include <string_view>#elif defined(ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW) include <experimental/string_view>#else // defined(ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW) error ASIO_HAS_STRING_VIEW is set but no string_view is available#endif // defined(ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW) namespace asio { #if defined(ASIO_HAS_STD_STRING_VIEW) } // namespace asio define ASIO_STRING_VIEW_PARAM asio::string_view#else // defined(ASIO_HAS_STRING_VIEW) define ASIO_STRING_VIEW_PARAM const std::string&#endif // defined(ASIO_HAS_STRING_VIEW) #endif // ASIO_DETAIL_STRING_VIEW_HPP` |
SEMANTIC ISSUE: /VVOSCQueryProtocol/external_projects/asio/asio/include/asio/ip/basic_resolver_entry.hpp:53:36: No type named 'string_view' in namespace 'asio'; did you mean simply 'string_view'? trimmed from : ip/basic_resolver_entry.hpp |
Seems like I was able to try a different CLONE and open it in Xcode 8 and get it to compile. |
It took me a while to try to figure out how to CheckOut with Submodules. Most times I've just downloaded the zip. Most documentation regarding SubModules was pretty bad. But I think I finally have it.
When trying to Build VVOSCQueryProtocol only get the following build errors:
MINOR ERRORS:
/VVOSCQueryProtocol/external_projects/websocketpp/websocketpp/frame.hpp:834:13:
Implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'uint32_t' (aka 'unsigned int')
/VVOSCQueryProtocol/external_projects/asio/asio/include/asio/detail/impl/socket_ops.ipp:3458:65:
Implicit conversion loses integer precision: 'std::size_t' (aka 'unsigned long') to 'socklen_t' (aka 'unsigned int')
MAJOR FAIL ERRORS:
USER DEFINED ISSUE:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/experimental/string_view:11:2:
"<experimental/string_view> has been removed. Use <string_view> instead."
The above seems to be the biggest issue.
I'm going to separate comment for further issues
The text was updated successfully, but these errors were encountered: