We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
execinfo.h
I think I can make a patch so that ifdef __emscripten__ it uses the nop, but I am not sure if that is the preferred method for this project
ifdef __emscripten__
The text was updated successfully, but these errors were encountered:
Hi Frityet, that sounds good to me. So in
nop:
#if (defined( _WIN32) || defined( __MULLE_MUSL__) || defined( __COSMOPOLITAN__) || defined( __MULLE_COSMOPOLITAN__) || defined( __emscripten__))
and you probably want to do the opposite in the execinfo file.
execinfo:
#if ! (defined( _WIN32) || defined( __MULLE_MUSL__) || defined( __COSMOPOLITAN__) || defined( __MULLE_COSMOPOLITAN__) || defined( __emscripten__))
Sorry, something went wrong.
No branches or pull requests
I think I can make a patch so that
ifdef __emscripten__
it uses the nop, but I am not sure if that is the preferred method for this projectThe text was updated successfully, but these errors were encountered: