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
With G++ version 4.8 or 4.9 on OS X, installed from Homebrew, the library does not compiler:
optional.hpp: In function 'void std::experimental::fail(const char*, const char*, unsigned int)':
optional.hpp:211:29: error: '_assert' was not declared in this scope
_assert(expr, file, line);
If I add an underscore to call __assert instead of _assert everything works. It seems that it fails to recognize that it is using the GNU library
The text was updated successfully, but these errors were encountered:
nicola-gigante
changed the title
Library does not compiler with G++ under OS X
Library does not compile with G++ under OS X
Dec 13, 2015
With G++ version 4.8 or 4.9 on OS X, installed from Homebrew, the library does not compiler:
If I add an underscore to call
__assert
instead of_assert
everything works. It seems that it fails to recognize that it is using the GNU libraryThe text was updated successfully, but these errors were encountered: