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
As of WASI SDK 16, __original_main is no longer added, breaking this:
__original_main
wizer/include/wizer.h
Lines 87 to 90 in 65e345f
The text was updated successfully, but these errors were encountered:
WebAssembly/wasi-libc#295
Sorry, something went wrong.
Replace __origin_main() with __main_argc_argv() manually could be a workaround?
__origin_main()
__main_argc_argv()
Thanks @Zzzode, adding this seems to work:
#ifndef __original_main #define __original_main __main_argc_argv #endif
No branches or pull requests
As of WASI SDK 16,
__original_main
is no longer added, breaking this:wizer/include/wizer.h
Lines 87 to 90 in 65e345f
https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-16
I am not sure what issue #295 is referring to there.
The text was updated successfully, but these errors were encountered: