Yansongsongsong commented on issue #2062:
URL:
https://github.com/apache/incubator-opendal/issues/2062#issuecomment-1525837674
> opendal-nodejs is built upon `ubuntu 22.04` which may have higher glibc
than `node:18.xx.x-bullseye`
>
> Maybe we should build on lower version to make it work on more
distributions...
after test, i found the glibc version of runkit using is 2.11, and glibc
version of `node:18.16.0-bullseye` is 2.17.
here is the test script:
```js
const { exec } = require("child_process");
exec("strings /usr/bin/gcc | grep GLIBC", (error, stdout, stderr) => {
if (error) {
console.log(`error: ${error.message}`);
return;
}
if (stderr) {
console.log(`stderr: ${stderr}`);
return;
}
console.log(`stdout: ${stdout}`);
});
```
so we may need to downgrade the version of glibc to 2.11 at least.
do you have any comment on it?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]