-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
print more details for the dyld[39817]: missing symbol called
error
#3511
Comments
Unfortunately this error happens in dyld (it is not produced by Bun) It means that the native library expects a function to exist but it didn't exist You might get more info with |
Interestingly, % bun src/hello.ts
hello bun
% DYLD_PRINT_APIS=1 bun src/hello.ts
zsh: bus error DYLD_PRINT_APIS=1 bun src/hello.ts
% cat src/hello.ts
console.log("hello bun"); Reproduces for bun 0.6.13, 0.6.12, 0.6.11 on macOS Ventura 13.4.1
|
I'm running into this problem now. I'd love to switch us over to using Bun but I'm unable to tell what function is getting called (or even what package has a V8 binary) in our app. |
Not perfect but try: I'm stuck migrating a project as well. |
Duplicate of #4290 |
What is the problem this feature would solve?
Identifying specific problematic modules while adjusting existing node projects to use bun takes a long time
What is the feature you are proposing to solve the problem?
Print more details for the
dyld[39817]: missing symbol called
error (symbol name, library name, ideally where it was required from)What alternatives have you considered?
The text was updated successfully, but these errors were encountered: