mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-11 09:25:20 +00:00
doc/build_wasm_app.md: Update a note about LLVM 13 incompatibility (#1441)
Remove the workaround as it wasn't so good. (It can cause the lack of ctor calls) Mention that it's only about a command.
This commit is contained in:
parent
531a011700
commit
ef8c6bd98a
|
@ -160,10 +160,9 @@ Firstly if libc-builtin (-nostdlib) mode meets the requirements, e.g. there are
|
|||
|
||||
Most of the above methods are also available for libc-wasi mode, besides them, we can export malloc and free functions with `-Wl,--export=malloc -Wl,--export=free` option, so WAMR runtime will disable its app heap and call the malloc/free function exported to allocate/free the memory from/to the heap space managed by libc.
|
||||
|
||||
Note: wasm-ld from LLVM 13 and later automatically inserts dtor calls
|
||||
for exported funtions. It breaks the malloc/free export mentioned above.
|
||||
A workaround: Add `-Wl,--export=__wasm_call_ctors`, which happens to
|
||||
prevent the automatic insertions for the current implementation.
|
||||
Note: wasm-ld from LLVM 13 and later automatically inserts ctor/dtor calls
|
||||
for all exported functions for a command. (vs reactor)
|
||||
It breaks the malloc/free exports mentioned above.
|
||||
|
||||
## 3. Build wasm app with pthread support
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user