You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably due to #9849 and #9841. I believe the CentOS image we used to compile on no longer builds (CentOS is defunct). It is getting much harder to support these super old versions...
It is getting much harder to support these super old versions...
While I agree that supporting a variety of OS versions is tricky, it's probably worth noting that Rocky 8 (a very widely used CentOS replacement / equivalent) is still in security support for another 4.5 years.
If you'd like any help replacing your CentOS image with some other RedHat Enterprise Linux 8 equivalent then do let me know.
🐛 bug report
With
@parcel/rust
v2.12.0parcel
runs fine on an OS that uses GLIBC_2.28 (e.g. Rocky Linux 8)With
@parcel/rust
v2.13.0parcel
fails with the following error:🎛 Configuration (.babelrc, package.json, cli command)
No
babel
or other special configuration required🤔 Expected Behavior
Within a major semver version,
parcel
should continue to run in a given environment (GLIBC_2.28).😯 Current Behavior
Parcel fails with a GLIBC version error on environments that use GLIBC_2.28
🔦 Context
We are unable to run
parcel
on our build environment💻 Code Sample
Steps to reproduce:
docker run -it rockylinux:8 /bin/bash
dnf module -y enable nodejs:18
dnf install -y nodejs
cd /tmp
npm init -y
parcel
:npm install parcel
parcel
:node_modules/.bin/parcel
Error: /lib64/libm.so.6: version
GLIBC_2.29' not found`@parcel/rust
by adding:"overrides": { "@parcel/rust": "2.12.0" }
to thepackage.json
filenpm install
parcel
:node_modules/.bin/parcel
🌍 Your Environment
The text was updated successfully, but these errors were encountered: