-
Notifications
You must be signed in to change notification settings - Fork 647
New issue
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
Add a switch to build simple sample without gui support #126
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sync up with main repo
Sync up with main repo
Sync up with main repo
add support for AliOS Things (#34)
Implement memory profiler, optimize memory usage, modify code indent …
…iwasm build type to Release and 64 bit by default
Implement memory.grow and limit heap space base offset to 1G (#36)
Sync up with main repo
Add a new extension library: connection (#39)
Fix bug of reading magic number and version in big endian platform (#41)
Add support for VxWorks (#43)
Re-org platform APIs: move most platform APIs of iwasm to shared-lib …
Implement 2D graphic API (#87)
Sync up with main repo
Enhance wasm loader to fix some security issues (#91)
Sync up with main repo
Fix issue about illegal load of EXC_RETURN into PC on stm32 board (#98)
Optimize interpreter LOAD/STORE opcodes to decrease the binary size Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper Add macros of global heap size, stack size, heap size for Zephyr main.c Clear compile warning of wasm_application.c
Enable native/app address validation and conversion for wasm app (#102)
Refine binary size and fix several minor issues (#104)
Add more security checks for libc wrapper API's (#105)
Add Linux SGX support (#106)
…tf macro for other platform header files
Use one libc wrapper copy for sgx and other platforms (#107)
Sync up with master repo
Sync up with master repo
Sync up with master repo
…er for native wrapper functions
Add parameter module inst for native wrapper functions (#117)
Fix typo 'destory' and compile issue (#119)
Document the Contributor Covenant as our Code of Conduct. (#116)
Remove get_module_inst() and fix issue of call native (#120)
…ove function index check to runtime instantiate
Refine wgl lib and refine wasm function index check (#122)
Refine interpreter call native process and memory boundary check (#124)
Re-implement invokeNative function of arm/mips/general version (#125)
wenyongh
referenced
this pull request
in wenyongh/wasm-micro-runtime
Sep 25, 2019
Add a switch to build simple sample without gui support (#126)
wenyongh
added a commit
that referenced
this pull request
Feb 18, 2020
* Implement memory profiler, optimize memory usage, modify code indent * Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default * Add a new extension library: connection * Fix bug of reading magic number and version in big endian platform * Re-org platform APIs: move most platform APIs from iwasm to shared-lib * Enhance wasm loader to fix some security issues * Fix issue about illegal load of EXC_RETURN into PC on stm32 board * Updates that let a restricted version of the interpreter run in SGX * Enable native/app address validation and conversion for wasm app * Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused * Refine binary size and fix several minor issues Optimize interpreter LOAD/STORE opcodes to decrease the binary size Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper Add macros of global heap size, stack size, heap size for Zephyr main.c Clear compile warning of wasm_application.c * Add more strict security checks for libc wrapper API's * Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files * Enhance security of libc strcpy/sprintf wrapper function * Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions * Remove get_module_inst() and fix issue of call native * Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate * Refine interpreter call native process, refine memory boudary check * Fix issues of invokeNative function of arm/mips/general version * Add a switch to build simple sample without gui support
wenyongh
referenced
this pull request
in wenyongh/wasm-micro-runtime
Feb 18, 2020
Add a switch to build simple sample without gui support (#126)
lum1n0us
pushed a commit
to lum1n0us/wasm-micro-runtime
that referenced
this pull request
Aug 24, 2021
…nal/feature Merge internal/feature into dev/simd
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
And fix bug of fmin/fmax opcode in interpreter.