Skip to content

Commit

Permalink
Add: daily report
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhang71 committed Jul 11, 2024
1 parent bc72b08 commit 0e0cf1d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/daily.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ wasm-ld: error: ../../glibc/sysroot/lib/wasm32-wasi/libc.a(dl-support.o): undefi
wasm-ld: error: ../../glibc/sysroot/lib/wasm32-wasi/libc.a(dl-support.o): undefined symbol: __ehdr_start
wasm-ld: error: ../../glibc/sysroot/lib/wasm32-wasi/libc.a(dl-support.o): undefined symbol: __ehdr_start
```
4. wasm-ld: error: ../../glibc/sysroot/lib/wasm32-wasi/libc.a(libc-start.o): undefined symbol: __fini_array_end
wasm-ld: error: ../../glibc/sysroot/lib/wasm32-wasi/libc.a(libc-start.o): undefined symbol: __fini_array_start
Learning from wasi-libc, above errors can be solved by initializing both extern void (*__fini_array_start []) (void) 0; and
4. Learning from wasi-libc, some of the errors can be solved by initializing both extern void (*__fini_array_start []) (void) 0; and
extern void (*__fini_array_end []) (void) 0; into 0 in /glibc/csu/libc-start.c::160


## Wed 7/10/2024
1. Helped Runbin with the document and merged several of his PRs.
2. We are getting an error from `__nptl_tls_static_size_for_stack` because the variables `dl_tls_static_size` and `dl_tls_static_align` are not initialized.
Expand Down

0 comments on commit 0e0cf1d

Please sign in to comment.