Home > OS >  command line tool it always crashes "dyld: lazy symbol binding failed: Symbol not found: ____ch
command line tool it always crashes "dyld: lazy symbol binding failed: Symbol not found: ____ch

Time:11-15

This happens to any command line tool I build. after install node latest version

dyld: lazy symbol binding failed: Symbol not found: ____chkstk_darwin
  Referenced from: /usr/local/bin/node (which was built for Mac OS X 10.15)
  Expected in: /usr/lib/libSystem.B.dylib

dyld: Symbol not found: ____chkstk_darwin
  Referenced from: /usr/local/bin/node (which was built for Mac OS X 10.15)
  Expected in: /usr/lib/libSystem.B.dylib

Abort trap: 6

Do you have any recommend? I really dont know what's happening here

CodePudding user response:

the problem was with the node version. It was not suitable for my version of Mac, which is macOS 10.13. I deleted node 18 and installed node 16 after that it worked

  • Related