-
Notifications
You must be signed in to change notification settings - Fork 697
Closed
Labels
Milestone
Description
#53 discusses dynamic linking (post-V1), and PRs such as #71 document module loading (V1 feature). Speaking in-person, @lukewagner, @kg, @ncbray and I don't quite agree on the differences.
- Does dynamic linking inply heap sharing? We seem to agree it does.
- Is module loading just FII/syscall?
- If V1 had dynamic linking, how would uses of module loading be different?
- Would developers hack-in dynamic linking support on top of V1 using module loading?
- Is module loading hindering non-browser uses?
- If
stdout
andwrite
were accessed through a dynamic library then it may be more portable than if it went through module loading and baked-inconsole.log
.
- If
Maybe we should even consider supporting dynamic linking for V1.