Guest User

Builder Error

a guest
Oct 12th, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 66.25 KB | None | 0 0
  1. =============================================================================
  2. WARNING: this project contains shell scripts, which CANNOT BE RUN on Windows
  3. without being translated first.
  4. WORKAROUND: for now, please remove your assets & plugins having shell scripts
  5. in their build phases, or translate them to batch scripts and call them in a
  6. pre-packaging script (or ignore this warning if the scripts are non-critical)
  7. In Xcode project: Unity-iPhone.xcodeproj
  8. -----------------------------------------------------------------------------
  9. shell script found:
  10. diff "${PODS_PODFILE_DIR_PATH}/Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null
  11. if [ $? != 0 ] ; then
  12. # print error to STDERR
  13. 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
  14. =============================================================================
  15. These scripts might be non critical - attempting to proceed anyway.
  16. Building the CocoaPods dependency project absl...
  17. =============================================================================
  18. WARNING: this project contains shell scripts, which CANNOT BE RUN on Windows
  19. without being translated first.
  20. WORKAROUND: for now, please remove your assets & plugins having shell scripts
  21. in their build phases, or translate them to batch scripts and call them in a
  22. pre-packaging script (or ignore this warning if the scripts are non-critical)
  23. In Xcode project: Pods/Pods.xcodeproj
  24. -----------------------------------------------------------------------------
  25. shell script found:
  26. cd "$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME" || exit 1
  27. if [ ! -d Versions ]; then
  28. # Not a versioned framework, so no need to do anything
  29. exit 0
  30. fi
  31.  
  32. public_path="${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}"
  33. if [ ! -f "$public_path" ]; then
  34. ln -fs "${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}" "$public_path"
  35. fi
  36.  
  37. private_path="${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}"
  38. if [ ! -f "$private_path" ]; then
  39. ln -fs "${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}" "$private_path"
  40. fi
  41.  
  42. =============================================================================
  43. These scripts might be non critical - attempting to proceed anyway.
  44. + Preparing output directory...
  45. + XCFrameworks: 3 supplied
  46. + Libraries: 6 supplied, 0 built
  47. + Frameworks: 0 supplied, 0 built
  48. + Pre-parsing project files...
  49. + Building absl for iphoneos (configuration: Release)
  50. + [arm64] Pods/abseil/../Target Support Files/abseil/abseil-dummy.m.obj is up to date
  51. + [arm64] Compiling Pods/abseil/absl/debugging/internal/address_is_readable.cc...
  52. + [arm64] Compiling Pods/abseil/absl/strings/internal/str_format/arg.cc...
  53. + [arm64] Compiling Pods/abseil/absl/strings/ascii.cc...
  54. + [arm64] Compiling Pods/abseil/absl/types/bad_any_cast.cc...
  55. + [arm64] Compiling Pods/abseil/absl/types/bad_optional_access.cc...
  56. + [arm64] Compiling Pods/abseil/absl/types/bad_variant_access.cc...
  57. + [arm64] Compiling Pods/abseil/absl/synchronization/barrier.cc...
  58. + [arm64] Compiling Pods/abseil/absl/strings/internal/str_format/bind.cc...
  59. + [arm64] Compiling Pods/abseil/absl/synchronization/blocking_counter.cc...
  60. In file included from Pods/abseil/absl/strings/internal/str_format/arg.cc:5:
  61. In file included from Pods/abseil\absl/strings/internal/str_format/arg.h:4:
  62. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(73,64): error: use of undeclared identifier 'strchr'
  63. char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
  64. ^
  65. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(80,75): error: use of undeclared identifier 'strpbrk'
  66. char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
  67. ^
  68. 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'?
  69. char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
  70. ^
  71. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  72. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  73. ^
  74. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(94,49): error: unknown type name 'size_t'
  75. void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
  76. ^
  77. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,46): error: unknown type name 'size_t'
  78. const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  79. ^
  80. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(98,46): error: unknown type name 'size_t'
  81. void* memchr( void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  82. ^
  83. 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'?
  84. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  85. ^
  86. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: 'strchr' declared here
  87. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  88. ^
  89. 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'
  90. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  91. ^
  92. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: candidate disabled: <no message provided>
  93. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  94. ^
  95. 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 *'
  96. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  97. ^~~~
  98. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
  99. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  100. ^
  101. In file included from Pods/abseil/absl/strings/internal/str_format/arg.cc:5:
  102. In file included from Pods/abseil\absl/strings/internal/str_format/arg.h:5:
  103. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(137,77): error: use of undeclared identifier 'wcschr'
  104. wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);}
  105. ^
  106. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(144,87): error: use of undeclared identifier 'wcspbrk'
  107. wchar_t* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1, __s2);}
  108. ^ + [arm64] Compiling Pods/abseil/absl/strings/charconv.cc...
  109.  
  110. 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'?
  111. wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);}
  112. ^
  113. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(139,16): note: 'wcschr' declared here
  114. const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
  115. ^
  116. 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'?
  117. wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);}
  118. ^
  119. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(141,16): note: 'wcschr' declared here
  120. wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
  121. ^
  122. 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'
  123. wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);}
  124. ^
  125. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(141,16): note: candidate disabled: <no message provided>
  126. wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
  127. ^
  128. 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 *'
  129. wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);}
  130. ^~~~
  131. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(141,38): note: passing argument to parameter '__s' here
  132. wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
  133. ^
  134. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(165,60): error: unknown type name 'size_t'
  135. wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__s, __c, __n);}
  136. ^
  137. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(167,57): error: unknown type name 'size_t'
  138. const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);}
  139. ^
  140. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\wchar.h(169,57): error: unknown type name 'size_t'
  141. wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);}
  142. ^
  143. In file included from Pods/abseil/absl/strings/internal/str_format/arg.cc:5:
  144. In file included from Pods/abseil\absl/strings/internal/str_format/arg.h:7:
  145. 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
  146. using ::FILE;
  147. ~~^
  148. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  149. In file included from Pods/abseil/absl/strings/ascii.cc:15:
  150. In file included from Pods/abseil\absl/strings/ascii.h:55:
  151. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  152. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring:60:
  153. 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'
  154. char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
  155. ^
  156. In file included from Pods/abseil/absl/types/bad_any_cast.cc:15:
  157. In file included from Pods/abseil\absl/types/bad_any_cast.h:24:
  158. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\typeinfo:60:
  159. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
  160. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib:85:
  161. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(142,34): error: unknown type name 'ldiv_t'
  162. inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {
  163. ^
  164. 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
  165. return ::ldiv(__x, __y);
  166. ~~^
  167. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(80,75): error: use of undeclared identifier 'strpbrk'
  168. char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
  169. ^
  170. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(146,34): error: unknown type name 'lldiv_t'
  171. inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x,
  172. ^
  173. 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'?
  174. char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
  175. ^
  176. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  177. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  178. ^
  179. 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
  180. return ::lldiv(__x, __y);
  181. ~~^
  182. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(94,76): error: use of undeclared identifier 'memchr'
  183. void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
  184. ^
  185. In file included from Pods/abseil/absl/types/bad_any_cast.cc:15:
  186. In file included from Pods/abseil\absl/types/bad_any_cast.h:24:
  187. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\typeinfo:60:
  188. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
  189. 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
  190. using ::div_t;
  191. ~~^
  192. 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'?
  193. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  194. ^
  195. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: 'strchr' declared here
  196. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  197. ^
  198. 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'
  199. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  200. ^
  201. 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...
  202. 18:
  203. 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>
  204. :
  205. :
  206. In file included from Pods/abseil\absl/base/config.h:67:
  207. Pods/abseil\absl/base/policy_checks.h(97,2): error: "Abseil assumes CHAR_BIT == 8."
  208. ,9): error: no member named 'ldiv_t' in the global namespace
  209. #error "Abseil assumes CHAR_BIT == 8."
  210. ^using ::ldiv_t;In file included from Pods/abseil\absl/types/bad_optional_access.h:24:
  211. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
  212. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
  213. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib:85:
  214. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(142,34):
  215. ~~^
  216. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  217. ^
  218. 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 *'
  219. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  220. ^~~~
  221. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
  222. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  223. ^
  224. 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
  225. using ::lldiv_t;
  226. ~~^
  227. 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:
  228. In file included from Pods/abseil\absl/strings/ascii.h:55:
  229. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  230. 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'?
  231. using ::memcpy;
  232. ~~^
  233. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
  234. const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  235. ^
  236. error: unknown type name 'ldiv_t'
  237. inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {
  238. ^
  239. In file included from Pods/abseil/absl/strings/ascii.cc:15:
  240. In file included from Pods/abseil\absl/strings/ascii.h:55:
  241. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  242. 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
  243. using ::memmove;
  244. ~~^
  245. 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
  246. return ::ldiv(__x, __y);
  247. ~~^
  248. 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'?
  249. using ::strcpy;
  250. ~~^
  251. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  252. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  253. ^
  254. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(146,34In file included from
  255.  
  256. 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...
  257. (108,2): error: "Abseil assumes that int is at least 4 bytes. "
  258. :1:
  259. In file included from Pods/abseil\absl/strings/internal/str_format/bind.hPods/abseil/absl/strings/ascii.cc In file included from :
  260. #error "Abseil assumes that int is at least 4 bytes. ":error: In file included from Pods/abseil/absl/synchronization/barrier.cc15 ~~^
  261. ^
  262. 4::
  263.  
  264. unknown type name 'lldiv_t'
  265. inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x,
  266. ^
  267. Pods/abseil/absl/types/bad_variant_access.cc:15:
  268. In file included from Pods/abseil\absl/types/bad_variant_access.h:24:
  269. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
  270. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
  271. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib:85:
  272. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(142,34): error: unknown type name 'ldiv_t'
  273. inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {
  274. ^
  275. 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
  276. using ::atoi;
  277. ~~^
  278. 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
  279. return ::lldiv(__x, __y);
  280. ~~^
  281. 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
  282. return ::ldiv(__x, __y);
  283. ~~^
  284. 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
  285. using ::atol;
  286. ~~^
  287. In file included from Pods/abseil/absl/types/bad_optional_access.cc:15:
  288. In file included from Pods/abseil\absl/types/bad_optional_access.h:24:
  289. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
  290. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
  291. 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
  292. using ::div_t;
  293. ~~^
  294. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(146,34): error: unknown type name 'lldiv_t'
  295. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(109,915:
  296. In file included from Pods/abseil\absl/synchronization/barrier.h:22:
  297. In file included from Pods/abseil\absl/base/thread_annotations.h:37:
  298. In file included from Pods/abseil\absl/base/config.h:67:
  299. Pods/abseil\absl/base/policy_checks.h(97,2): error: "Abseil assumes CHAR_BIT == 8."
  300. #error "Abseil assumes CHAR_BIT == 8."
  301. ^
  302. Pods/abseil\absl/base/policy_checks.h(108,2): error: "Abseil assumes that int is at least 4 bytes. "
  303. inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x,
  304. #error "Abseil assumes that int is at least 4 bytes. ":
  305. )In file included from In file included from Pods/abseil\absl/strings/ascii.h:55:
  306. 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
  307.  
  308. ^
  309.  
  310. using ::ldiv_t;
  311. ~~^
  312. 2 errors generated.
  313. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h(no member named 'atoll' in the global namespace
  314. using ::atoll;
  315. ~~^
  316. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  317. 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.
  318. (In file included from (11472:
  319. 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:
  320. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring:60:
  321. ,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(,
  322. : error: no member named 'strncpy' in the global namespace: return ::lldiv(__x, __y);73,15:
  323.  
  324. 9
  325. 64):no member named 'strtod' in the global namespace
  326. ):using ::strtod;:
  327. In file included from ~~^
  328. using ::strncpy;
  329. Pods/abseil\absl/synchronization/barrier.h
  330. error: no member named 'lldiv_t' in the global namespace
  331. error: using ::lldiv_t;use of undeclared identifier 'strchr' ~~^
  332. In file included from Pods/abseil\absl/synchronization/blocking_counter.h:23:
  333. In file included from Pods/abseil\absl/base/thread_annotations.h:37:
  334. In file included from Pods/abseil\absl/base/config.h:67:
  335. Pods/abseil\absl/base/policy_checks.h(97,2): error: "Abseil assumes CHAR_BIT == 8."
  336. #error "Abseil assumes CHAR_BIT == 8."
  337. ^
  338. Pods/abseil\absl/base/policy_checks.h(108,2): error: "Abseil assumes that int is at least 4 bytes. "
  339. #error "Abseil assumes that int is at least 4 bytes. "
  340. ^
  341. In file included from Pods/abseil/absl/types/bad_variant_access.cc:15:
  342. In file included from Pods/abseil\absl/types/bad_variant_access.h:24:
  343. 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
  344. ~~^ ~~^
  345. 45:
  346. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
  347. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib((
  348. char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
  349. ^
  350. 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
  351. using ::atof;
  352. ~~^
  353. 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
  354. using ::atoi;
  355. ~~^
  356. :23:
  357. In file included from Pods/abseil\absl/synchronization/mutex.h:60:
  358. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\atomic:571:
  359. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\__threading_support:14:
  360. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\chrono:829:
  361. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\ratio:81:
  362. 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
  363. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h
  364. 73,9): error: no member named 'strcat' in the global namespace; did you mean 'strchr'?
  365. using ::strcat;
  366. ~~^
  367. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  368. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  369. ^
  370. 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
  371. using ::atol;
  372. ~~^
  373. 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
  374. using ::strtof;
  375. ~~^
  376. 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
  377. (
  378. ,80using ::strtold;,75In file included from 109 ~~^920
  379. : ~~^15:
  380. In file included from Pods/abseil\absl/strings/ascii.h:55:
  381. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithmPods/abseil/absl/synchronization/blocking_counter.cc,
  382. ) error)
  383. In file included from ::9:s:Pods/abseil/absl/strings/charconv.cc64115) generated ::
  384. :
  385. :error: .
  386. error: use of undeclared identifier 'strpbrk'
  387. 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
  388. no member named 'div_t' in the global namespace
  389. using ::atoll;
  390. 15using ::div_t;D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(74
  391. ~~^
  392.  
  393. ~~^
  394. :24:
  395. In file included from Pods/abseil\absl/synchronization/mutex.h:60:
  396. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\atomic:571:
  397. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\__threading_support:14:
  398. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\chrono:829:
  399. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\ratio:81:
  400. 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
  401. using::uint8_t;
  402. ~~^
  403. 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
  404. using ::strtol;
  405. ~~^
  406. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib(101,9): error: :
  407. In file included from Pods/abseil\absl/strings/charconv.h ^
  408. 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
  409. using ::strtod;
  410. ~~^
  411. 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
  412. using::uint16_t;
  413. ~~^
  414. 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
  415. using ::strtoll;
  416. ~~^
  417. 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
  418. using::uint16_t;
  419. ~~^
  420. 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
  421. using ::strtof;
  422. ~~^
  423. 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
  424. using ::strtoul;
  425. ~~^
  426. 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
  427. using::uint32_t;
  428. ~~^
  429. 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
  430. using ::strtold;
  431. ~~^
  432. 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
  433. using::uint32_t;
  434. ~~^
  435. 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
  436. using ::strtoull;
  437. ~~^
  438. no member named 'ldiv_t' in the global namespace
  439. using ::ldiv_t;
  440. ~~^
  441. 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'?
  442. )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);}
  443. ^
  444. 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(:
  445. (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):,
  446. :9: error: no member named 'rand' in the global namespace
  447. 9using ::strncat;)75, 147)using ::rand;
  448. ~~^
  449. ,8:
  450. :
  451. :error: 13)In file included from ~~^
  452. no member named 'uint64_t' in the global namespace):D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
  453. : error: no member named 'strtol' in the global namespace
  454. error: error:
  455. 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:
  456. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib'strchr' declared hereusing ::strtol;
  457. ~~^
  458.  
  459.  
  460. using ::lldiv_t;
  461.  
  462. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  463. ^
  464. using::uint64_t; ~~^
  465.  
  466. ~~^
  467. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  468. 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'?
  469. using ::memcmp;
  470. ~~^
  471. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
  472. const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  473. ^
  474. 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
  475. using ::atof;
  476. ~~^
  477. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(94,76): error: use of undeclared identifier 'memchr'
  478. void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
  479. ^
  480. 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
  481. using ::atoi;
  482. ~~^
  483. 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
  484. In file included from Pods/abseil/absl/strings/ascii.cc:15:
  485. In file included from Pods/abseil\absl/strings/ascii.h:55:
  486. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  487. 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'?
  488. using ::strcmp;
  489. ~~^
  490. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  491. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  492. ^using::int_least8_t;
  493. ~~^
  494.  
  495. ~~^
  496. 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
  497. using ::atol;
  498. ~~^
  499. 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
  500. using ::strtoll;
  501. ~~^
  502. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h:
  503. 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:
  504. 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
  505. :
  506. (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:
  507. 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
  508. 8
  509. unknown type name 'ldiv_t'641:
  510. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring) ~~^
  511. :
  512. :using ::strtoul;:
  513. 60using ::atoll;
  514. inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {error: :
  515. ~~^error:
  516.  
  517. no member named 'int_least8_t' in the global namespaceD:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h
  518. use of undeclared identifier 'strstr'; did you mean 'strchr'? ^ ~~^
  519. (73,
  520.  
  521. using::int_least8_t;
  522. ~~^
  523. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  524. ^
  525. 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:
  526. In file included from Pods/abseil\absl/strings/ascii.h:55
  527. :
  528. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  529. 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
  530. using ::strncmp;
  531. ~~^
  532. 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
  533. using ::strtoull;
  534. ~~^
  535. 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
  536. return ::ldiv(__x, __y);
  537. ~~^
  538. 9): error: no member named 'strtod' in the global namespace
  539. using ::strtod;
  540. ~~^
  541. 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
  542. using ::strcoll;
  543. ~~^
  544. 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
  545. using ::rand;
  546. ~~^
  547. 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
  548. using::int_least32_t;
  549. ~~^
  550. 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
  551. using ::strtof;
  552. ~~^
  553. 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
  554. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdlib.h64): error: use of undeclared identifier 'strchr'
  555. ,char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}(146,34): error: unknown type name 'lldiv_t'
  556. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstringfatal error: using::int_least16_t;13
  557. (too many errors emitted, stopping now [-ferror-limit=] ^
  558. )79,9): error:
  559.  
  560. ~~^
  561. : note: 'strchr' declared here
  562. 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((
  563.  
  564.  
  565. (D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint80(, ^ ^113using ::strxfrm;
  566. ~~^
  567.  
  568.  
  569. ,9): error: D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h165164no member named 'strtold' in the global namespace
  570. 75): ,8(101,74):,8): error: no member named 'int_least32_t' in the global namespace error: error: use of undeclared identifier 'strpbrk'
  571. no matching function for call to 'strchr'
  572. char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
  573. ^
  574. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  575. ^
  576. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: candidate disabled: <no message provided>
  577. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  578. ^
  579. 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 *'
  580. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  581. ^~~~
  582. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
  583. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  584. ^
  585. 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
  586. return ::lldiv(__x, __y);
  587. ~~^
  588. 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
  589. using ::strcspn;
  590. ~~^
  591. 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'?
  592. char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
  593. ^
  594. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  595. In file included from Pods/abseil/absl/strings/internal/str_format/bind.cc:1using ::strtold;
  596. ~~^
  597. In file included from Pods/abseil/absl/strings/charconv.cc:15:
  598. In file included from Pods/abseil\absl/strings/charconv.h:18:
  599. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\system_error:147:
  600. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\stdexcept:45:
  601. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\exception:81:
  602. 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
  603. using ::div_t;
  604. ~~^
  605. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  606. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  607. ^
  608. 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
  609. using ::strtol;
  610. ~~^
  611. 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
  612. using ::ldiv_t;
  613. ~~^
  614.  
  615. using::int_least32_t;:
  616. )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
  617. In file included from :(((Pods/abseil/absl/strings/internal/charconv_parse.cc ~~^Pods/abseil\absl/strings/internal/str_format/bind.h 94116103:
  618. :error: ,,,154no member named 'int_least64_t' in the global namespace7699:
  619. :
  620.  
  621. )))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
  622. ::error: error: use of undeclared identifier 'memchr'no member named 'strtoll' in the global namespace
  623. 114error: using ::strtoll; ~~^
  624. :
  625. no member named 'lldiv_t' in the global namespace
  626. ~~^
  627. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility
  628.  
  629. using ::lldiv_t;18:203:
  630. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(69,
  631. ~~^
  632. 9): error: no member named 'memcpy' in the global namespace; did you mean 'memchr'?
  633. using ::memcpy;
  634. ~~^
  635. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
  636. const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  637. ^
  638. 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
  639. using ::strtoul;
  640. ~~^
  641. 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
  642. using ::atof;
  643. ~~^
  644. 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);}
  645. ^
  646. Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
  647. In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
  648. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array:114:
  649. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility:203:
  650. 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
  651. using ::memmove;
  652. ~~^
  653. 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
  654. 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
  655. using::uint_least8_t;:
  656. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(152,8)
  657. (165,8): ~~^
  658. : error: no member named 'int8_t' in the global namespace
  659. using::int8_t;
  660. ~~^
  661. 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
  662. using ::atoi;
  663. ~~^
  664. 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'?
  665. using ::strcpy;
  666. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlib
  667. ~~^
  668. ~~^
  669. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  670. 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
  671. ): 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);}
  672. error:
  673. no member named 'int_least64_t' in the global namespace
  674. ~~^(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
  675. ^
  676. 101using::int_least64_t;
  677. ~~^
  678.  
  679. ~~^
  680. ,74): error: use of undeclared identifier 'strstr'; did you mean 'strchr'?
  681. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  682. ^
  683. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: 'strchr' declared here
  684. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  685. ^
  686. 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'
  687. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  688. ^
  689. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,13): note: candidate disabled: <no message provided>
  690. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  691. ^
  692. 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 *'
  693. char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
  694. ^~~~
  695. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(77,32): note: passing argument to parameter '__s' here
  696. char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  697. ^
  698. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(154,8fatal error: (
  699. ): error: no member named 'int32_t' in the global namespace
  700. using::int32_t;
  701. ~~^
  702. 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
  703. using::int64_t;
  704. ~~^
  705. 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
  706. using::uint_least8_t;
  707. ~~^
  708. In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
  709. In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
  710. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  711. 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
  712. ,8): error: no member named 'uint_least16_t' in the global namespace
  713. using::uint_least16_t;
  714. ~~^
  715. 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
  716. using::uint8_t;
  717. ~~^
  718. 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
  719. using::uint16_t;
  720. ~~^
  721. 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
  722. using::uint_least16_t;
  723. ~~^
  724. 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
  725. using::uint32_t;
  726. ~~^
  727. 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
  728. using::uint_least32_t;
  729. ~~^
  730. 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
  731. using::uint64_t;
  732. ~~^
  733. 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
  734. 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:,
  735. ,170,s19 ~~^8,9 generated:
  736. )
  737. )8): .
  738. :): 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
  739. : error: no member named 'memcpy' in the global namespace; did you mean 'memchr'?
  740. using ::memcpy;
  741. :
  742. In file included from no member named 'uint_least32_t' in the global namespace
  743. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\arrayusing::uint_least32_t;
  744. ~~^
  745. :114:
  746. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility:203:
  747. 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
  748. using ::strncpy;
  749. ~~^
  750. no member named 'atol' in the global namespace
  751. using ::atol;
  752. ~~^
  753. 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
  754. using::int_least16_t;
  755. ~~^
  756. 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'?
  757. 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
  758. using ::atoll;
  759. ~~^
  760. ~~^
  761. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
  762. const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  763. ^
  764. 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
  765. using::int_least32_t;
  766. ~~^
  767. 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
  768. using ::strtod;
  769. ~~^
  770. 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
  771. using::int_least64_t;
  772. ~~^
  773. In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
  774. In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
  775. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  776. 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
  777. using ::memmove;
  778. ~~^
  779. 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
  780. using ::strtof;
  781. ~~^
  782. 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
  783. using::uint_least8_t;
  784. ~~^
  785. 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
  786. using ::strtold;
  787. ~~^
  788. 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
  789. using::uint_least16_t;
  790. ~~^
  791. 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'?
  792. using ::strcpy;
  793. ~~^
  794. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  795. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  796. ^
  797. 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
  798. 20( errorPods/abseil/absl/strings/internal/charconv_bigint.cc( error ~~^
  799. 169s
  800. :170s
  801. ,using ::strtol; generated ~~^15, generated8
  802. .
  803.  
  804. :
  805. 8.
  806. ) ~~^D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,
  807. In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
  808. 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
  809. 13): note: 'strchr' declared here
  810. using::uint_least32_t;
  811. ~~^
  812. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  813. ^
  814. ): error: no member named 'uint_least64_t' in the global namespace
  815. using::uint_least64_t;
  816. ~~^
  817. 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
  818. using ::strtoll;
  819. ~~^
  820. 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
  821. using::int_fast8_t;
  822. ~~^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
  823.  
  824. using::uint_least64_t;
  825. ~~^
  826. using::int_fast8_t;
  827. ~~^
  828. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdlibIn file included from
  829. (118,9)Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
  830. In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
  831. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array:114:
  832. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility::641:
  833. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(72203:
  834. : error: no member named 'strtoul' in the global namespace
  835. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring(74,9):using ::strtoul;
  836. ~~^
  837. error: no member named 'strncat' in the global namespace
  838. using ::strncat;
  839. ~~^
  840. ,9): error: no member named 'strncpy' in the global namespace
  841. using ::strncpy;
  842. ~~^
  843. 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
  844. using::int_fast16_t;
  845. ~~^
  846. 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
  847. using ::strtoull;
  848. ~~^
  849. 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'?
  850. using ::memcmp;
  851. ~~^
  852. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
  853. const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  854. ^
  855. 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
  856. using::int_fast16_t;
  857. ~~^
  858. 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
  859. using ::rand;
  860. ~~^
  861. 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
  862. using::int_fast32_t;
  863. ~~^
  864. In file included from Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
  865. In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
  866. 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.
  867. 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(
  868. 175error: ,:
  869. 174,no member named 'strcat' in the global namespace; did you mean 'strchr'?8In file included from ,8
  870. ):using ::strcat;D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility
  871. 8):): error: no member named 'int_fast32_t' in the global namespace
  872. : ~~^
  873. 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
  874. :
  875. error: (using::int_fast64_t;75,13):
  876.  
  877. note: D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstring ~~^ ~~^
  878. 'strchr' declared here
  879.  
  880. no member named 'int_fast8_t' in the global namespace
  881. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  882. ^
  883. using::int_fast8_t;
  884. ~~^
  885. (76,9): error: no member named 'strcmp' in the global namespace; did you mean 'strchr'?
  886. using ::strcmp;
  887. ~~^
  888. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  889. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  890. ^
  891. In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
  892. In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
  893. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  894. 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
  895. 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
  896. using ::strncat;using::int_fast16_t;
  897. ~~^
  898.  
  899. ~~^
  900. In file included from Pods/abseil/absl/strings/internal/str_format/bind.cc:1:
  901. In file included from Pods/abseil\absl/strings/internal/str_format/bind.h:4:
  902. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\array:114:
  903. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\utility:203:
  904. 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
  905. using ::strncmp;
  906. ~~^
  907. 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
  908. 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
  909. using::uint_fast8_t;
  910. ~~^
  911. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\cstdint(174,8using::int_fast64_t;
  912. ~~^
  913. 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
  914. (75,9): error: no member named 'memcmp' in the global namespace; did you mean 'memchr'?
  915. using::int_fast32_t;
  916. ~~^
  917. using ::memcmp;
  918. ~~^
  919. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(96,13): note: 'memchr' declared here
  920. const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
  921. ^
  922. 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
  923. using ::strcoll;
  924. ~~^
  925. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  926. 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:
  927. In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
  928. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  929. 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'?
  930. using ::strcmp;
  931. ~~^
  932. D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\string.h(75,13): note: 'strchr' declared here
  933. const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
  934. ^
  935. 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
  936. using::uint_fast8_t;
  937. ~~^
  938. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  939. In file included from Pods/abseil/absl/strings/internal/charconv_bigint.cc:15:
  940. In file included from Pods/abseil\absl/strings/internal/charconv_bigint.h:18:
  941. In file included from D:/Programs/iOS Builder/iOS Project Builder for Unity/SDK/lib/c++/v1\algorithm:641:
  942. 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
  943. using ::strncmp;
  944. ~~^
  945. (79,9): error: no member named 'strxfrm' in the global namespace
  946. using ::strxfrm;
  947. ~~^
  948. 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
  949. using ::strcoll;
  950. ~~^
  951. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  952. 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
  953. using ::strxfrm;
  954. ~~^
  955. 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
  956. using ::strcspn;
  957. ~~^
  958. 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
  959. using ::strcspn;
  960. ~~^
  961. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  962. 20 errors generated.
  963. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  964. 20 errors generated.
  965. 20 errors generated.
  966. 20 errors generated.
  967. 20 errors generated.
  968. 20 errors generated.
  969. 20 errors generated.
  970.  
  971. Press any key to continue . . .
  972.  
Advertisement
Add Comment
Please, Sign In to add comment