You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to test integrity of Phoenix RTOS on macOS 15 one of the steps was to build tool chains, and sadly i386 returned a bunch of errors on c++. Full list of errors are posted below:
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:496:3: error: '__abi_tag__' attribute only applies to structs, variables, functions, and namespaces
496 | _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { returndo_toupper(__c); }
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:496:57: error: expected ';' at end of declaration list
496 | _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { returndo_toupper(__c); }
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:498:68: error: too many arguments provided to function-like macro invocation
498 | _LIBCPP_HIDE_FROM_ABI const char_type* toupper(char_type* __low, const char_type* __high) const {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:504:68: error: too many arguments provided to function-like macro invocation
504 | _LIBCPP_HIDE_FROM_ABI const char_type* tolower(char_type* __low, const char_type* __high) const {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:575:3: error: '__abi_tag__' attribute only applies to structs, variables, functions, and namespaces
575 | _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { returndo_toupper(__c); }
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:575:57: error: expected ';' at end of declaration list
575 | _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { returndo_toupper(__c); }
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:577:68: error: too many arguments provided to function-like macro invocation
577 | _LIBCPP_HIDE_FROM_ABI const char_type* toupper(char_type* __low, const char_type* __high) const {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:583:68: error: too many arguments provided to function-like macro invocation
583 | _LIBCPP_HIDE_FROM_ABI const char_type* tolower(char_type* __low, const char_type* __high) const {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:683:55: error: too many arguments provided to function-like macro invocation
683 | inline _LIBCPP_HIDE_FROM_ABI boolisspace(_CharT __c, const locale& __loc) {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:683:35: error: declaration conflicts with target of using declaration already in scope
683 | inline _LIBCPP_HIDE_FROM_ABI boolisspace(_CharT __c, const locale& __loc) {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:683:42: error: expected ';' at end of declaration
683 | inline _LIBCPP_HIDE_FROM_ABI boolisspace(_CharT __c, const locale& __loc) {
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:683:76: error: expected unqualified-id
683 | inline _LIBCPP_HIDE_FROM_ABI boolisspace(_CharT __c, const locale& __loc) {
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:688:55: error: too many arguments provided to function-like macro invocation
688 | inline _LIBCPP_HIDE_FROM_ABI boolisprint(_CharT __c, const locale& __loc) {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:688:35: error: declaration conflicts with target of using declaration already in scope
688 | inline _LIBCPP_HIDE_FROM_ABI boolisprint(_CharT __c, const locale& __loc) {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:688:42: error: expected ';' at end of declaration
688 | inline _LIBCPP_HIDE_FROM_ABI boolisprint(_CharT __c, const locale& __loc) {
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:688:76: error: expected unqualified-id
688 | inline _LIBCPP_HIDE_FROM_ABI boolisprint(_CharT __c, const locale& __loc) {
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:693:55: error: too many arguments provided to function-like macro invocation
693 | inline _LIBCPP_HIDE_FROM_ABI booliscntrl(_CharT __c, const locale& __loc) {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:693:35: error: declaration conflicts with target of using declaration already in scope
693 | inline _LIBCPP_HIDE_FROM_ABI booliscntrl(_CharT __c, const locale& __loc) {
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale:202:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale:693:42: error: expected ';' at end of declaration
693 | inline _LIBCPP_HIDE_FROM_ABI booliscntrl(_CharT __c, const locale& __loc) {
The text was updated successfully, but these errors were encountered:
In order to test integrity of Phoenix RTOS on macOS 15 one of the steps was to build tool chains, and sadly i386 returned a bunch of errors on c++. Full list of errors are posted below:
The text was updated successfully, but these errors were encountered: