watcher: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.23' not found

I’m getting this error when trying to run npx parcel -p 1234 --hmr-port 1235 index.html with 2.0.0-alpaha.1.1

/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.23' not found (required by /app/node_modules/@parcel/core/node_modules/@parcel/watcher/build/Release/watcher.node) 

About this issue

  • Original URL
  • State: closed
  • Created 5 years ago
  • Reactions: 1
  • Comments: 22 (6 by maintainers)

Most upvoted comments

This should be fixed now that #24 is merged. It’s released in @parcel/watcher v2.0.0-alpha.5.

Running into this too when trying to build using Netlify.

Screen Shot 2019-11-10 at 2 25 11 PM

Edit: Forgot to mention that I’m using v2.0.0-alpha.2.1

which version did you have installed previously (both ubuntu/debian & libc)?

Ubuntu 16.04. I’m not sure what libc version it comes with.

Maybe we can require a lower libc when building the prebuilt binaries.

A better option, IMO, is to do what node-sass and other native projects do: test the prebuilt binary, and if it fails to work for any reason, just compile a new one on the machine. Is that possible?