Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- =============================================================================
- WARNING: this project contains shell scripts, which CANNOT BE RUN on Windows
- without being translated first.
- WORKAROUND: for now, please remove your assets & plugins having shell scripts
- in their build phases, or translate them to batch scripts and call them in a
- pre-packaging script (or ignore this warning if the scripts are non-critical)
- In Xcode project: Unity-iPhone.xcodeproj
- -----------------------------------------------------------------------------
- shell script found:
- diff "${PODS_PODFILE_DIR_PATH}/Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null
- if [ $? != 0 ] ; then
- # print error to STDERR
- echo "error: The sandbox is not in sync with the Podfile.lock. Run pod install or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode outputs to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n
- =============================================================================
- These scripts might be non critical - attempting to proceed anyway.
- Building the CocoaPods dependency project absl...
- =============================================================================
- WARNING: this project contains shell scripts, which CANNOT BE RUN on Windows
- without being translated first.
- WORKAROUND: for now, please remove your assets & plugins having shell scripts
- in their build phases, or translate them to batch scripts and call them in a
- pre-packaging script (or ignore this warning if the scripts are non-critical)
- In Xcode project: Pods/Pods.xcodeproj
- -----------------------------------------------------------------------------
- shell script found:
- cd "$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME" || exit 1
- if [ ! -d Versions ]; then
- # Not a versioned framework, so no need to do anything
- exit 0
- fi
- public_path="${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}"
- if [ ! -f "$public_path" ]; then
- ln -fs "${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}" "$public_path"
- fi
- private_path="${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}"
- if [ ! -f "$private_path" ]; then
- ln -fs "${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}" "$private_path"
- fi
- =============================================================================
- These scripts might be non critical - attempting to proceed anyway.
- + Preparing output directory...
- + XCFrameworks: 3 supplied
- + Libraries: 6 supplied, 0 built
- + Frameworks: 0 supplied, 0 built
- + Pre-parsing project files...
- + Building absl for iphoneos (configuration: Release)
- + [arm64] Pods/abseil/../Target Support Files/abseil/abseil-dummy.m.obj is up to date
- + [arm64] Compiling Pods/abseil/absl/debugging/internal/address_is_readable.cc...
- + [arm64] Compiling Pods/abseil/absl/strings/internal/str_format/arg.cc...
- + [arm64] Compiling Pods/abseil/absl/strings/ascii.cc...
- + [arm64] Compiling Pods/abseil/absl/types/bad_any_cast.cc...
- + [arm64] Compiling Pods/abseil/absl/types/bad_optional_access.cc...
- + [arm64] Compiling Pods/abseil/absl/types/bad_variant_access.cc...
- + [arm64] Compiling Pods/abseil/absl/synchronization/barrier.cc...
- + [arm64] Compiling Pods/abseil/absl/strings/internal/str_format/bind.cc...
- + [arm64] Compiling Pods/abseil/absl/synchronization/blocking_counter.cc...
- In file included from Pods/abseil/absl/strings/internal/str_format/arg.cc:5:
- In file included from Pods/abseil\absl/strings/internal/str_format/arg.h:4:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(73,64): error: use of undeclared identifier 'strchr'
- char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(80,75): error: use of undeclared identifier 'strpbrk'
- char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(87,65): error: use of undeclared identifier 'strrchr'; did you mean 'strchr'?
- char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(94,49): error: unknown type name 'size_t'
- void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,46): error: unknown type name 'size_t'
- const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(98,46): error: unknown type name 'size_t'
- void* memchr( void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,74): error: use of undeclared identifier 'strstr'; did you mean 'strchr'?
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: 'strchr' declared here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,74): error: no matching function for call to 'strchr'
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: candidate disabled: <no message provided>
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,81): error: cannot initialize a parameter of type 'char *' with an lvalue of type 'const char *'
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^~~~
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- In file included from Pods/abseil/absl/strings/internal/str_format/arg.cc:5:
- In file included from Pods/abseil\absl/strings/internal/str_format/arg.h:5:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(137,77): error: use of undeclared identifier 'wcschr'
- wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(144,87): error: use of undeclared identifier 'wcspbrk'
- wchar_t* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1, __s2);}
- ^ + [arm64] Compiling Pods/abseil/absl/strings/charconv.cc...
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(151,78): error: use of undeclared identifier 'wcsrchr'; did you mean 'wcschr'?
- wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(139,16): note: 'wcschr' declared here
- const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(158,86): error: use of undeclared identifier 'wcsstr'; did you mean 'wcschr'?
- wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(141,16): note: 'wcschr' declared here
- wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(158,86): error: no matching function for call to 'wcschr'
- wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(141,16): note: candidate disabled: <no message provided>
- wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(158,93): error: cannot initialize a parameter of type 'wchar_t *' with an lvalue of type 'const wchar_t *'
- wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);}
- ^~~~
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(141,38): note: passing argument to parameter '__s' here
- wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(165,60): error: unknown type name 'size_t'
- wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(167,57): error: unknown type name 'size_t'
- const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(169,57): error: unknown type name 'size_t'
- wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);}
- ^
- In file included from Pods/abseil/absl/strings/internal/str_format/arg.cc:5:
- In file included from Pods/abseil\absl/strings/internal/str_format/arg.h:7:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdio(109,9): error: no member named 'FILE' in the global namespace
- using ::FILE;
- ~~^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- In file included from Pods/abseil/absl/strings/ascii.cc:15:
- In file included from Pods/abseil\absl/strings/ascii.h:55:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring:60:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.hIn file included from Pods/abseil/absl/debugging/internal/address_is_readable.cc:(73,64): error: use of undeclared identifier 'strchr'
- char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
- ^
- In file included from Pods/abseil/absl/types/bad_any_cast.cc:15:
- In file included from Pods/abseil\absl/types/bad_any_cast.h:24:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\typeinfo:60:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib:85:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(142,34): error: unknown type name 'ldiv_t'
- inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(143,12): error: no member named 'ldiv' in the global namespace
- return ::ldiv(__x, __y);
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(80,75): error: use of undeclared identifier 'strpbrk'
- char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(146,34): error: unknown type name 'lldiv_t'
- inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x,
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(87,65): error: use of undeclared identifier 'strrchr'; did you mean 'strchr'?
- char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(148,12): error: no member named 'lldiv' in the global namespace
- return ::lldiv(__x, __y);
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(94,76): error: use of undeclared identifier 'memchr'
- void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
- ^
- In file included from Pods/abseil/absl/types/bad_any_cast.cc:15:
- In file included from Pods/abseil\absl/types/bad_any_cast.h:24:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\typeinfo:60:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(100,9): error: no member named 'div_t' in the global namespace
- using ::div_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,74): error: use of undeclared identifier 'strstr'; did you mean 'strchr'?
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: 'strchr' declared here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,74): error: no matching function for call to 'strchr'
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.hD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib + [arm64] Compiling Pods/abseil/absl/strings/internal/charconv_bigint.cc...
- 18:
- In file included from Pods/abseil\absl/debugging/internal/address_is_readable.h:18(In file included from (77,13101Pods/abseil/absl/types/bad_optional_access.cc:15): note: candidate disabled: <no message provided>
- :
- :
- In file included from Pods/abseil\absl/base/config.h:67:
- Pods/abseil\absl/base/policy_checks.h(97,2): error: "Abseil assumes CHAR_BIT == 8."
- ,9): error: no member named 'ldiv_t' in the global namespace
- #error "Abseil assumes CHAR_BIT == 8."
- ^using ::ldiv_t;In file included from Pods/abseil\absl/types/bad_optional_access.h:24:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib:85:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(142,34):
- ~~^
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,81): error: cannot initialize a parameter of type 'char *' with an lvalue of type 'const char *'
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^~~~
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(103,9): error: no member named 'lldiv_t' in the global namespace
- using ::lldiv_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(105,9): error: no member named 'atof' in the global namespaceIn file included from Pods/abseil/absl/strings/ascii.cc:15:
- In file included from Pods/abseil\absl/strings/ascii.h:55:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(69,9): error: no member named 'memcpy' in the global namespace; did you mean 'memchr'?
- using ::memcpy;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
- const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- error: unknown type name 'ldiv_t'
- inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {
- ^
- In file included from Pods/abseil/absl/strings/ascii.cc:15:
- In file included from Pods/abseil\absl/strings/ascii.h:55:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(70,9): error: no member named 'memmove' in the global namespace
- using ::memmove;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(143,12): error: no member named 'ldiv' in the global namespace
- return ::ldiv(__x, __y);
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(71,9): error: no member named 'strcpy' in the global namespace; did you mean 'strchr'?
- using ::strcpy;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(146,34In file included from
- Pods/abseil\absl/base/policy_checks.hIn file included from )Pods/abseil/absl/strings/internal/str_format/bind.cc:using ::atof; + [arm64] Compiling Pods/abseil/absl/strings/internal/charconv_parse.cc...
- (108,2): error: "Abseil assumes that int is at least 4 bytes. "
- :1:
- In file included from Pods/abseil\absl/strings/internal/str_format/bind.hPods/abseil/absl/strings/ascii.cc In file included from :
- #error "Abseil assumes that int is at least 4 bytes. ":error: In file included from Pods/abseil/absl/synchronization/barrier.cc15 ~~^
- ^
- 4::
- unknown type name 'lldiv_t'
- inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x,
- ^
- Pods/abseil/absl/types/bad_variant_access.cc:15:
- In file included from Pods/abseil\absl/types/bad_variant_access.h:24:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib:85:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(142,34): error: unknown type name 'ldiv_t'
- inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(106,9): error: no member named 'atoi' in the global namespace
- using ::atoi;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(148,12): error: no member named 'lldiv' in the global namespace
- return ::lldiv(__x, __y);
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(143,12): error: no member named 'ldiv' in the global namespace
- return ::ldiv(__x, __y);
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(107,9): error: no member named 'atol' in the global namespace
- using ::atol;
- ~~^
- In file included from Pods/abseil/absl/types/bad_optional_access.cc:15:
- In file included from Pods/abseil\absl/types/bad_optional_access.h:24:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(100,9): error: no member named 'div_t' in the global namespace
- using ::div_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(146,34): error: unknown type name 'lldiv_t'
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(109,915:
- In file included from Pods/abseil\absl/synchronization/barrier.h:22:
- In file included from Pods/abseil\absl/base/thread_annotations.h:37:
- In file included from Pods/abseil\absl/base/config.h:67:
- Pods/abseil\absl/base/policy_checks.h(97,2): error: "Abseil assumes CHAR_BIT == 8."
- #error "Abseil assumes CHAR_BIT == 8."
- ^
- Pods/abseil\absl/base/policy_checks.h(108,2): error: "Abseil assumes that int is at least 4 bytes. "
- inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x,
- #error "Abseil assumes that int is at least 4 bytes. ":
- )In file included from In file included from Pods/abseil\absl/strings/ascii.h:55:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(101,9): error: no member named 'ldiv_t' in the global namespace: ^ error: D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array
- ^
- using ::ldiv_t;
- ~~^
- 2 errors generated.
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(no member named 'atoll' in the global namespace
- using ::atoll;
- ~~^
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring:D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib148D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib,detected compiler error, aborting multithreaded build.
- (In file included from (11472:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility:111(,12): error: 9In file included from Pods/abseil/absl/synchronization/barrier.cc203:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring:60:
- ,9): :D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h103no member named 'lldiv' in the global namespace)Pods/abseil/absl/synchronization/blocking_counter.ccerror: 15(,
- : error: no member named 'strncpy' in the global namespace: return ::lldiv(__x, __y);73,15:
- 9
- 64):no member named 'strtod' in the global namespace
- ):using ::strtod;:
- In file included from ~~^
- using ::strncpy;
- Pods/abseil\absl/synchronization/barrier.h
- error: no member named 'lldiv_t' in the global namespace
- error: using ::lldiv_t;use of undeclared identifier 'strchr' ~~^
- In file included from Pods/abseil\absl/synchronization/blocking_counter.h:23:
- In file included from Pods/abseil\absl/base/thread_annotations.h:37:
- In file included from Pods/abseil\absl/base/config.h:67:
- Pods/abseil\absl/base/policy_checks.h(97,2): error: "Abseil assumes CHAR_BIT == 8."
- #error "Abseil assumes CHAR_BIT == 8."
- ^
- Pods/abseil\absl/base/policy_checks.h(108,2): error: "Abseil assumes that int is at least 4 bytes. "
- #error "Abseil assumes that int is at least 4 bytes. "
- ^
- In file included from Pods/abseil/absl/types/bad_variant_access.cc:15:
- In file included from Pods/abseil\absl/types/bad_variant_access.h:24:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring
- ~~^ ~~^
- 45:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib((
- char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(105,9): error: no member named 'atof' in the global namespace
- using ::atof;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(106,9): error: no member named 'atoi' in the global namespace
- using ::atoi;
- ~~^
- :23:
- In file included from Pods/abseil\absl/synchronization/mutex.h:60:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\atomic:571:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\__threading_support:14:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\chrono:829:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\ratio:81:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(157,8): error: no member named 'uint8_t' in the global namespace
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h
- 73,9): error: no member named 'strcat' in the global namespace; did you mean 'strchr'?
- using ::strcat;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(107,9): error: no member named 'atol' in the global namespace
- using ::atol;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(112,9): error: no member named 'strtof' in the global namespace
- using ::strtof;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibusing::uint8_t;100(In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibPods/abseil/absl/strings/ascii.cc(113,9): error: no member named 'strtold' in the global namespace
- (
- ,80using ::strtold;,75In file included from 109 ~~^920
- : ~~^15:
- In file included from Pods/abseil\absl/strings/ascii.h:55:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithmPods/abseil/absl/synchronization/blocking_counter.cc,
- ) error)
- In file included from ::9:s:Pods/abseil/absl/strings/charconv.cc64115) generated ::
- :
- :error: .
- error: use of undeclared identifier 'strpbrk'
- In file included from error: no member named 'atoll' in the global namespacechar* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}Pods/abseil\absl/synchronization/blocking_counter.h
- no member named 'div_t' in the global namespace
- using ::atoll;
- 15using ::div_t;D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(74
- ~~^
- ~~^
- :24:
- In file included from Pods/abseil\absl/synchronization/mutex.h:60:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\atomic:571:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\__threading_support:14:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\chrono:829:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\ratio:81:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(157,8): error: no member named 'uint8_t' in the global namespace
- using::uint8_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(114,9): error: no member named 'strtol' in the global namespace
- using ::strtol;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(101,9): error: :
- In file included from Pods/abseil\absl/strings/charconv.h ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(111,9): error: no member named 'strtod' in the global namespace
- using ::strtod;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(158,8): error: no member named 'uint16_t' in the global namespace
- using::uint16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(116,9): error: no member named 'strtoll' in the global namespace
- using ::strtoll;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(158,8): error: no member named 'uint16_t' in the global namespace
- using::uint16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(112,9): error: no member named 'strtof' in the global namespace
- using ::strtof;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(118,9): error: no member named 'strtoul' in the global namespace
- using ::strtoul;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(159,8): error: no member named 'uint32_t' in the global namespace
- using::uint32_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(87,65):D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(113,9): error: no member named 'strtold' in the global namespace
- using ::strtold;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(159,8): error: no member named 'uint32_t' in the global namespace
- using::uint32_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(120,9): error: no member named 'strtoull' in the global namespace
- using ::strtoull;
- ~~^
- no member named 'ldiv_t' in the global namespace
- using ::ldiv_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(,D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint9( error: use of undeclared identifier 'strrchr'; did you mean 'strchr'?
- )160D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(125,::18 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(:
- (In file included from 1039,(160error: 114no member named 'strncat' in the global namespaceD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\system_error,)8):,
- :9: error: no member named 'rand' in the global namespace
- 9using ::strncat;)75, 147)using ::rand;
- ~~^
- ,8:
- :
- :error: 13)In file included from ~~^
- no member named 'uint64_t' in the global namespace):D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
- : error: no member named 'strtol' in the global namespace
- error: error:
- In file included from note: no member named 'uint64_t' in the global namespaceusing::uint64_t;no member named 'lldiv_t' in the global namespaceD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib'strchr' declared hereusing ::strtol;
- ~~^
- using ::lldiv_t;
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- using::uint64_t; ~~^
- ~~^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(75,9): error: no member named 'memcmp' in the global namespace; did you mean 'memchr'?
- using ::memcmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
- const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(105,9): error: no member named 'atof' in the global namespace
- using ::atof;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(94,76): error: use of undeclared identifier 'memchr'
- void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(106,9): error: no member named 'atoi' in the global namespace
- using ::atoi;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(162,8): error: no member named 'int_least8_t' in the global namespace
- In file included from Pods/abseil/absl/strings/ascii.cc:15:
- In file included from Pods/abseil\absl/strings/ascii.h:55:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(76,9): error: no member named 'strcmp' in the global namespace; did you mean 'strchr'?
- using ::strcmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^using::int_least8_t;
- ~~^
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(107,9): error: no member named 'atol' in the global namespace
- using ::atol;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(116,9): error: no member named 'strtoll' in the global namespace
- using ::strtoll;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintIn file included from (85((((Pods/abseil/absl/strings/internal/charconv_bigint.cc163:
- 109118162101:,8):,,15D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h, error: no member named 'int_least16_t' in the global namespace
- :
- (9,974In file included from 142,34using::int_least16_t;): error: ): error: Pods/abseil\absl/strings/internal/charconv_bigint.hno member named 'strtoul' in the global namespace): error: ):18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:no member named 'atoll' in the global namespace
- 8
- unknown type name 'ldiv_t'641:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring) ~~^
- :
- :using ::strtoul;:
- 60using ::atoll;
- inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {error: :
- ~~^error:
- no member named 'int_least8_t' in the global namespaceD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h
- use of undeclared identifier 'strstr'; did you mean 'strchr'? ^ ~~^
- (73,
- using::int_least8_t;
- ~~^
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77In file included from Pods/abseil/absl/strings/ascii.cc:15:
- In file included from Pods/abseil\absl/strings/ascii.h:55
- :
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(77,9): error: no member named 'strncmp' in the global namespace
- using ::strncmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(120,9): error: no member named 'strtoull' in the global namespace
- using ::strtoull;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(143,12): D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(111,error: no member named 'ldiv' in the global namespace
- return ::ldiv(__x, __y);
- ~~^
- 9): error: no member named 'strtod' in the global namespace
- using ::strtod;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(78,9): error: no member named 'strcoll' in the global namespace
- using ::strcoll;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(125,9): error: no member named 'rand' in the global namespace
- using ::rand;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(164,8): error: no member named 'int_least32_t' in the global namespace
- using::int_least32_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(112,9): error: no member named 'strtof' in the global namespace
- using ::strtof;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(163,8): error: no member named 'int_least16_t' in the global namespace
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h64): error: use of undeclared identifier 'strchr'
- ,char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}(146,34): error: unknown type name 'lldiv_t'
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstringfatal error: using::int_least16_t;13
- (too many errors emitted, stopping now [-ferror-limit=] ^
- )79,9): error:
- ~~^
- : note: 'strchr' declared here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x,no member named 'strxfrm' in the global namespaceD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.hD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint((
- (D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint80(, ^ ^113using ::strxfrm;
- ~~^
- ,9): error: D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h165164no member named 'strtold' in the global namespace
- 75): ,8(101,74):,8): error: no member named 'int_least32_t' in the global namespace error: error: use of undeclared identifier 'strpbrk'
- no matching function for call to 'strchr'
- char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
- ^
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: candidate disabled: <no message provided>
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,81): error: cannot initialize a parameter of type 'char *' with an lvalue of type 'const char *'
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^~~~
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(148,12): error: no member named 'lldiv' in the global namespace
- return ::lldiv(__x, __y);
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(82,9): error: no member named 'strcspn' in the global namespace
- using ::strcspn;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(87,65): error: use of undeclared identifier 'strrchr'; did you mean 'strchr'?
- char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- In file included from Pods/abseil/absl/strings/internal/str_format/bind.cc:1using ::strtold;
- ~~^
- In file included from Pods/abseil/absl/strings/charconv.cc:15:
- In file included from Pods/abseil\absl/strings/charconv.h:18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\system_error:147:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(100,9): error: no member named 'div_t' in the global namespace
- using ::div_t;
- ~~^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(114,9): error: no member named 'strtol' in the global namespace
- using ::strtol;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(101,9): error: no member named 'ldiv_t' in the global namespace
- using ::ldiv_t;
- ~~^
- using::int_least32_t;:
- )D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.hD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibIn file included from
- In file included from :(((Pods/abseil/absl/strings/internal/charconv_parse.cc ~~^Pods/abseil\absl/strings/internal/str_format/bind.h 94116103:
- :error: ,,,154no member named 'int_least64_t' in the global namespace7699:
- :
- )))In file included from In file included from :::using::int_least64_t;Pods/abseil\absl/strings/internal/charconv_parse.hD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array
- ::error: error: use of undeclared identifier 'memchr'no member named 'strtoll' in the global namespace
- 114error: using ::strtoll; ~~^
- :
- no member named 'lldiv_t' in the global namespace
- ~~^
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility
- using ::lldiv_t;18:203:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(69,
- ~~^
- 9): error: no member named 'memcpy' in the global namespace; did you mean 'memchr'?
- using ::memcpy;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
- const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(118,9): error: no member named 'strtoul' in the global namespace
- using ::strtoul;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(105,9): error: no member named 'atof' in the global namespace
- using ::atof;
- ~~^
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintvoid* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
- ^
- Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
- In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array:114:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility:203:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(70,9): error: no member named 'memmove' in the global namespace
- using ::memmove;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(120,9): error: no member named 'strtoull' in the global namespace
- using ::strtoull;D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(167,8): error: no member named 'uint_least8_t' in the global namespace
- using::uint_least8_t;:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(152,8)
- (165,8): ~~^
- : error: no member named 'int8_t' in the global namespace
- using::int8_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(106,9): error: no member named 'atoi' in the global namespace
- using ::atoi;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(71,9): error: no member named 'strcpy' in the global namespace; did you mean 'strchr'?
- using ::strcpy;
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib
- ~~^
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(153,8(125,9): error: no member named 'rand' in the global namespace
- ): D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.husing ::rand;error: no member named 'int16_t' in the global namespaceconst char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- error:
- no member named 'int_least64_t' in the global namespace
- ~~^(using::int16_t;D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint
- ^
- 101using::int_least64_t;
- ~~^
- ~~^
- ,74): error: use of undeclared identifier 'strstr'; did you mean 'strchr'?
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: 'strchr' declared here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,74): error: no matching function for call to 'strchr'
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: candidate disabled: <no message provided>
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(101,81): error: cannot initialize a parameter of type 'char *' with an lvalue of type 'const char *'
- char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
- ^~~~
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
- char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(154,8fatal error: (
- ): error: no member named 'int32_t' in the global namespace
- using::int32_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(155,8): error: no member named 'int64_t' in the global namespace
- using::int64_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(167,8): error: no member named 'uint_least8_t' in the global namespace
- using::uint_least8_t;
- ~~^
- In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
- In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstringIn file included from (too many errors emitted, stopping now [-ferror-limit=]168
- ,8): error: no member named 'uint_least16_t' in the global namespace
- using::uint_least16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(157,8): error: no member named 'uint8_t' in the global namespace
- using::uint8_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(158,8): error: no member named 'uint16_t' in the global namespace
- using::uint16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(168,8): error: no member named 'uint_least16_t' in the global namespace
- using::uint_least16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(159,8): error: no member named 'uint32_t' in the global namespace
- using::uint32_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(169,8): error: no member named 'uint_least32_t' in the global namespace
- using::uint_least32_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(160,8): error: no member named 'uint64_t' in the global namespace
- using::uint64_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(162,8): error: (no member named 'int_least8_t' in the global namespace
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint20Pods/abseil/absl/strings/internal/str_format/bind.cc10769(using::int_least8_t;169( error:,
- ,170,s19 ~~^8,9 generated:
- )
- )8): .
- :): error: error: In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4 error: no member named 'uint_least64_t' in the global namespace
- : error: no member named 'memcpy' in the global namespace; did you mean 'memchr'?
- using ::memcpy;
- :
- In file included from no member named 'uint_least32_t' in the global namespace
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\arrayusing::uint_least32_t;
- ~~^
- :114:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility:203:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(72,9): error: no member named 'strncpy' in the global namespace
- using ::strncpy;
- ~~^
- no member named 'atol' in the global namespace
- using ::atol;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(163,8): error: no member named 'int_least16_t' in the global namespace
- using::int_least16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(73,9): error: no member named 'strcat' in the global namespace; did you mean 'strchr'?
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(109,9): error: no member named 'atoll' in the global namespace
- using ::atoll;
- ~~^
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
- const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(164,8): error: no member named 'int_least32_t' in the global namespace
- using::int_least32_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(111,9): error: no member named 'strtod' in the global namespace
- using ::strtod;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(165,8): error: no member named 'int_least64_t' in the global namespace
- using::int_least64_t;
- ~~^
- In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
- In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(70,9): error: no member named 'memmove' in the global namespace
- using ::memmove;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(112,9): error: no member named 'strtof' in the global namespace
- using ::strtof;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(167,8): error: no member named 'uint_least8_t' in the global namespace
- using::uint_least8_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(113,9): error: no member named 'strtold' in the global namespace
- using ::strtold;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(168,8): error: no member named 'uint_least16_t' in the global namespace
- using::uint_least16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(71,9): error: no member named 'strcpy' in the global namespace; did you mean 'strchr'?
- using ::strcpy;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(114,9): error: no member named 'strtol' in the global namespaceD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintIn file included from using ::strcat;D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintusing::uint_least64_t;20
- 20( errorPods/abseil/absl/strings/internal/charconv_bigint.cc( error ~~^
- 169s
- :170s
- ,using ::strtol; generated ~~^15, generated8
- .
- :
- 8.
- ) ~~^D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,
- In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm: error: no member named 'uint_least32_t' in the global namespace
- 13): note: 'strchr' declared here
- using::uint_least32_t;
- ~~^
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- ): error: no member named 'uint_least64_t' in the global namespace
- using::uint_least64_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(116,9): error: no member named 'strtoll' in the global namespace
- using ::strtoll;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(172,8): error: no member named 'int_fast8_t' in the global namespace
- using::int_fast8_t;
- ~~^D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(170,8): error: no member named 'uint_least64_t' in the global namespaceD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(172,8): error: no member named 'int_fast8_t' in the global namespace
- using::uint_least64_t;
- ~~^
- using::int_fast8_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibIn file included from
- (118,9)Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
- In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array:114:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility::641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(72203:
- : error: no member named 'strtoul' in the global namespace
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(74,9):using ::strtoul;
- ~~^
- error: no member named 'strncat' in the global namespace
- using ::strncat;
- ~~^
- ,9): error: no member named 'strncpy' in the global namespace
- using ::strncpy;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(173,8): error: no member named 'int_fast16_t' in the global namespace
- using::int_fast16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(120,9): error: no member named 'strtoull' in the global namespace
- using ::strtoull;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(75,9): error: no member named 'memcmp' in the global namespace; did you mean 'memchr'?
- using ::memcmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
- const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(173,8): error: no member named 'int_fast16_t' in the global namespace
- using::int_fast16_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(125,9): error: no member named 'rand' in the global namespace
- using ::rand;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(174,8): error: no member named 'int_fast32_t' in the global namespace
- using::int_fast32_t;
- ~~^
- In file included from Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
- In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstringfatal error: D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdintThe process cannot access the file because it is being used by another process.
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array((73,9): too many errors emitted, stopping now [-ferror-limit=](:172114(
- 175error: ,:
- 174,no member named 'strcat' in the global namespace; did you mean 'strchr'?8In file included from ,8
- ):using ::strcat;D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility
- 8):): error: no member named 'int_fast32_t' in the global namespace
- : ~~^
- error: using::int_fast32_t;203 D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.hno member named 'int_fast64_t' in the global namespace
- :
- error: (using::int_fast64_t;75,13):
- note: D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring ~~^ ~~^
- 'strchr' declared here
- no member named 'int_fast8_t' in the global namespace
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- using::int_fast8_t;
- ~~^
- (76,9): error: no member named 'strcmp' in the global namespace; did you mean 'strchr'?
- using ::strcmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
- In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(74,9): error: no member named 'strncat' in the global namespace
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(173,8): error: no member named 'int_fast16_t' in the global namespace
- using ::strncat;using::int_fast16_t;
- ~~^
- ~~^
- In file included from Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
- In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array:114:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility:203:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(77,9): error: no member named 'strncmp' in the global namespace
- using ::strncmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(175,8): error: no member named 'int_fast64_t' in the global namespace
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(177,8): error: no member named 'uint_fast8_t' in the global namespace
- using::uint_fast8_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(174,8using::int_fast64_t;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring): error: no member named 'int_fast32_t' in the global namespace
- (75,9): error: no member named 'memcmp' in the global namespace; did you mean 'memchr'?
- using::int_fast32_t;
- ~~^
- using ::memcmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
- const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(78,9): error: no member named 'strcoll' in the global namespace
- using ::strcoll;
- ~~^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstringIn file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
- In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(76,9): error: no member named 'strcmp' in the global namespace; did you mean 'strchr'?
- using ::strcmp;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
- const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
- ^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(177,8): error: no member named 'uint_fast8_t' in the global namespace
- using::uint_fast8_t;
- ~~^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
- In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
- In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(77,9): error: no member named 'strncmp' in the global namespace
- using ::strncmp;
- ~~^
- (79,9): error: no member named 'strxfrm' in the global namespace
- using ::strxfrm;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(78,9): error: no member named 'strcoll' in the global namespace
- using ::strcoll;
- ~~^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(79,9): error: no member named 'strxfrm' in the global namespace
- using ::strxfrm;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(82,9): error: no member named 'strcspn' in the global namespace
- using ::strcspn;
- ~~^
- D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(82,9): error: no member named 'strcspn' in the global namespace
- using ::strcspn;
- ~~^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- 20 errors generated.
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- 20 errors generated.
- 20 errors generated.
- 20 errors generated.
- 20 errors generated.
- 20 errors generated.
- 20 errors generated.
- Press any key to continue . . .
Advertisement
Add Comment
Please, Sign In to add comment