Skip to content
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

Releasing v6.0.0 #529

Open
aminya opened this issue Nov 17, 2022 · 76 comments
Open

Releasing v6.0.0 #529

aminya opened this issue Nov 17, 2022 · 76 comments

Comments

@aminya
Copy link
Member

aminya commented Nov 17, 2022

I'd like to explain the project's status and track the remaining issues for v6.0.0.

The latest beta builds without any issues, and prebuilt binaries for many platforms are provided.

The normal unit tests pass locally (pnpm run test.skip_gc_tests)

Some of the GC tests for some protocols fail (pnpm run test). However, I don't think these GC tests are crucial for functionality since the tests try to rely on GC's unpredictable behaviour.

If there is an issue that actually blocks us from releasing v6.0.0 please leave a comment.

@ni-mkrieg

This comment was marked as resolved.

@ni-mkrieg

This comment was marked as resolved.

@aminya

This comment was marked as outdated.

@ni-mkrieg
Copy link

thanks, yes would be great if you could prevent the whole rebuild, it is not running for a good while and then I get this error on x64 Mac.

ld: library not found for -lsodium
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [Release/zeromq.node] Error 1
rm 7722eaf02fcc073df28ffd1fa831e71544edfd42.intermediate
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/Users/markus.krieg/.nvm/versions/node/v16.13.0/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
gyp ERR! stack     at ChildProcess.emit (node:events:390:28)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:290:12)
gyp ERR! System Darwin 20.6.0
gyp ERR! command "/Users/markus.krieg/.nvm/versions/node/v16.13.0/bin/node" "/Users/markus.krieg/.nvm/versions/node/v16.13.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/markus.krieg/git/native-access/node_modules/zeromq

@ni-mkrieg

This comment was marked as outdated.

@aminya
Copy link
Member Author

aminya commented Nov 18, 2022

This issue can be fixed by installing sodium

brew install libsodium gnutls

Could you install zeromq with npm i --verbose. node-gyp-build doesn't give the reason why the prebuild is not picked up.
prebuild/node-gyp-build#54

@ni-mkrieg

This comment was marked as outdated.

@aminya
Copy link
Member Author

aminya commented Nov 18, 2022

I am working on the node-gyp-build's preinstall logic:
prebuild/node-gyp-build#55

Hopefully, that is merged soon, and you will not need to do a rebuild!

@ni-mkrieg
Copy link

That would be very cool, even after installing sodium on M1 it is currently still rebuilding indeed. So sodium installed prevented rebuild on x64 but not arm64. Actually I am not 100% sure the brew install for libsodium worked on arm, still getting this line:

ld: library not found for -lsodium

The yarn install --verbose did not contain much useful information either.

verbose 53.652263084 Error: /Users/markus/git/native-access/node_modules/zeromq: Command failed.
Exit code: 1
Command: (shx test -f ./script/build.js || run-s build.js) && node-gyp-build
Arguments: 
Directory: /Users/markus/git/native-access/node_modules/zeromq
Output:
dyld[91022]: missing symbol called

Downloading libzmq source from https://github.com/zeromq/libzmq/releases/download/v4.3.4/zeromq-4.3.4.tar.gz
Building libzmq Release

@ni-mkrieg
Copy link

ni-mkrieg commented Nov 18, 2022

Okay so an x64 this is the reason why it rebuilds, I believe because it cannot find libsodium that is needed by your precompiled binary? That would also explain why it does not recompile after I install libsodium via homebrew. Is there a way for you to compile that lib into your prebuilt binary and not dynamically link to it?

Or could you replace libsodium all together with something that is already preinstalled during CI? Does not make sense for you either to spend all this time brew installing it during every CI build...

verbose 108.080591296 Error: /Users/markus/git/native-access/node_modules/zeromq: Command failed.
Exit code: 1
Command: (shx test -f ./script/build.js || run-s build.js) && node-gyp-build
Arguments: 
Directory: /Users/markus/git/native-access/node_modules/zeromq
Output:
node:internal/modules/cjs/loader:1183
  return process.dlopen(module, path.toNamespacedPath(filename));
                 ^

Error: dlopen(/Users/markus/git/native-access/node_modules/zeromq/prebuilds/darwin-x64/node.napi.glibc.node, 1): Library not loaded: /usr/local/opt/libsodium/lib/libsodium.23.dylib
  Referenced from: /Users/markus/git/native-access/node_modules/zeromq/prebuilds/darwin-x64/node.napi.glibc.node
  Reason: image not found
    at Object.Module._extensions..node (node:internal/modules/cjs/loader:1183:18)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:102:18)
    at load (/Users/markus/git/native-access/node_modules/node-gyp-build/index.js:22:10)
    at Object.<anonymous> (/Users/markus/git/native-access/node_modules/node-gyp-build/build-test.js:19:19)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32) {
  code: 'ERR_DLOPEN_FAILED'
}

@aminya
Copy link
Member Author

aminya commented Nov 21, 2022

libsodium is preinstalled on the GitHub runners, and it is very small. I am not sure where you are running this. GitHub doesn't offer an Arm runner. Please contact your CI engineer.

@ni-mkrieg
Copy link

all good if we do not have to rebuild, was more worried about your own CI.yml file having to do this for each build:

- name: Install Mac-OS Dependencies
        if: contains(matrix.os, 'macos')
        run: |
          brew install libsodium gnutls

were you able to avoid the rebuild on Mac x64 and arm64 - ideally without us having to install libsodium? it worked fine without libsodium installed in beta.6 for Mac x64...

@aminya
Copy link
Member Author

aminya commented Nov 21, 2022

That snippet is just to declare the dependencies to be more accurate. In practice it does nothing because it is already installed:
https://github.com/zeromq/zeromq.js/actions/runs/3483046346/jobs/5826083947#step:7:11

You will need the libsodium dynamic library in either case during runtime. Without that library, the connections will not be secure.

Regarding the rebuild, I am still handling the external node-gyp-build issues. Please stay tuned.

@bfan1256
Copy link

bfan1256 commented Nov 22, 2022

I have done brew install and ran a verbose and can see that libsodium is found But it just happens at the final linking step that it just can't find -lsodium

I'm on M1 Mac ARM (osx64)

ld: library not found for -lsodium
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [Release/zeromq.node] Error 1
rm 7722eaf02fcc073df28ffd1fa831e71544edfd42.intermediate
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
gyp ERR! stack     at ChildProcess.emit (node:events:390:28)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:290:12)
gyp ERR! System Darwin 21.6.0
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/weigfan/code/shade-cinema/shade-plugin/node_modules/zeromq

@td-krzysiek
Copy link

td-krzysiek commented Nov 22, 2022

Hello,

Exactly the same issue here on M1, this is after brew reinstall libsodium gnutls. Full log:

2022-11-22T11_35_47_985Z-debug-0.log

@td-krzysiek

This comment was marked as resolved.

@aminya

This comment was marked as outdated.

@td-krzysiek

This comment was marked as resolved.

@DonJayamanne
Copy link
Contributor

Hi, Thank you for looking into releasing a new version.
I'm one of the engineers working on the Jupyter extension for VS Code
This package is used to communicate with Jupyter kernels (python kernels) over zmq

We found that the package fails in some cases which you may be aware of
You have requested this new version to be tested here microsoft/vscode-jupyter#10386 (comment)

I'll test this and get back to you with a confirmation.
Again thanks for your contribution to this project

@aminya aminya closed this as completed in 99500f2 Nov 25, 2022
@crimx
Copy link

crimx commented Jan 4, 2023

Sorry I copied from the docs.

Same issue with bata.16 without libsodium.

pnpm add zeromq@6.0.0-beta.16                                                                                                                                                                                                                                    1 ✘  25s  system   2.7.6   16:04:24
Packages: +32
++++++++++++++++++++++++++++++++
node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq: Running install script, failed in 1.6s
.../node_modules/zeromq install$ (shx test -f ./script/build.js || run-s build.js) && cross-env npm_config_build_from_source=true node-gyp-build
│ dlopen(/Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq/prebuilds/darwin-x64/node.napi.glibc.node, 0x0001): Library not loaded: /usr/local/opt/libsodium/lib/libsodium.23.dylib
│   Referenced from: <00BDB276-A607-3D78-B10D-0899069B057C> /Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq/prebuilds/darwin-x64/node.napi.glibc.node
│   Reason: tried: '/usr/local/opt/libsodium/lib/libsodium.23.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OS/usr/local/opt/libsodium/lib/libsodium.23.dylib' (no such file), '/usr/local/opt/libsodium/lib/libsodium.23.dylib' (no such file), '/usr/local/lib/libsodium.23.dylib' (no such file), '/usr/lib
│ gyp info it worked if it ends with ok
│ gyp info using node-gyp@9.3.1
│ gyp info using node@18.4.0 | darwin | x64
│ gyp info find Python using Python version 3.9.6 found at "/Applications/Xcode.app/Contents/Developer/usr/bin/python3"
│ gyp info spawn /Applications/Xcode.app/Contents/Developer/usr/bin/python3
│ gyp info spawn args [
│ gyp info spawn args   '/Users/xxx/Library/pnpm/global/5/.pnpm/pnpm@7.22.0/node_modules/pnpm/dist/node_modules/node-gyp/gyp/gyp_main.py',
│ gyp info spawn args   'binding.gyp',
│ gyp info spawn args   '-f',
│ gyp info spawn args   'make',
│ gyp info spawn args   '-I',
│ gyp info spawn args   '/Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq/build/config.gypi',
│ gyp info spawn args   '-I',
│ gyp info spawn args   '/Users/xxx/Library/pnpm/global/5/.pnpm/pnpm@7.22.0/node_modules/pnpm/dist/node_modules/node-gyp/addon.gypi',
│ gyp info spawn args   '-I',
│ gyp info spawn args   '/Users/xxx/Library/Caches/node-gyp/18.4.0/include/node/common.gypi',
│ gyp info spawn args   '-Dlibrary=shared_library',
│ gyp info spawn args   '-Dvisibility=default',
│ gyp info spawn args   '-Dnode_root_dir=/Users/xxx/Library/Caches/node-gyp/18.4.0',
│ gyp info spawn args   '-Dnode_gyp_dir=/Users/xxx/Library/pnpm/global/5/.pnpm/pnpm@7.22.0/node_modules/pnpm/dist/node_modules/node-gyp',
│ gyp info spawn args   '-Dnode_lib_file=/Users/xxx/Library/Caches/node-gyp/18.4.0/<(target_arch)/node.lib',
│ gyp info spawn args   '-Dmodule_root_dir=/Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq',
│ gyp info spawn args   '-Dnode_engine=v8',
│ gyp info spawn args   '--depth=.',
│ gyp info spawn args   '--no-parallel',
│ gyp info spawn args   '--generator-output',
│ gyp info spawn args   'build',
│ gyp info spawn args   '-Goutput_dir=.'
│ gyp info spawn args ]
│ Package libsodium was not found in the pkg-config search path.
│ Perhaps you should add the directory containing `libsodium.pc'
│ to the PKG_CONFIG_PATH environment variable
│ No package 'libsodium' found
│ gyp: Call to 'pkg-config libsodium --libs' returned exit status 1 while in binding.gyp. while trying to load binding.gyp
│ gyp ERR! configure error
│ gyp ERR! stack Error: `gyp` failed with exit code: 1
│ gyp ERR! stack     at ChildProcess.onCpExit (/Users/xxx/Library/pnpm/global/5/.pnpm/pnpm@7.22.0/node_modules/pnpm/dist/node_modules/node-gyp/lib/configure.js:325:16)
│ gyp ERR! stack     at ChildProcess.emit (node:events:537:28)
│ gyp ERR! stack     at ChildProcess._handle.onexit (node:internal/child_process:291:12)
│ gyp ERR! System Darwin 22.1.0
│ gyp ERR! command "/usr/local/Cellar/node/18.4.0/bin/node" "/Users/xxx/Library/pnpm/global/5/.pnpm/pnpm@7.22.0/node_modules/pnpm/dist/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
│ gyp ERR! cwd /Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq
│ gyp ERR! node -v v18.4.0
│ gyp ERR! node-gyp -v v9.3.1
│ gyp ERR! not ok
└─ Failed in 1.6s at /Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq
Progress: resolved 32, reused 32, downloaded 0, added 0, done
 ELIFECYCLE  Command failed with exit code 1.

@Bartel-C8
Copy link
Contributor

It's because macos also has the "<!@(pkg-config libsodium --libs)", dependency library in binding.gyp.

@aminya
Copy link
Member Author

aminya commented Jan 4, 2023

dlopen(/Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq/prebuilds/darwin-x64/node.napi.glibc.node, 0x0001): Library not loaded: /usr/local/opt/libsodium/lib/libsodium.23.dylib

That is strange. The libsodium is built statically, but it still tries to link to the dylib. See -DWITH_LIBSODIUM_STATIC=ON

const cmake_configure = `cmake -S "${src_dir}" -B ./build ${build_options} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX="${libzmq_install_prefix}" -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_STATIC=ON -DBUILD_TESTS=OFF -DBUILD_SHARED=OFF -DWITH_DOCS=OFF -DWITH_LIBSODIUM=ON -DWITH_LIBSODIUM_STATIC=ON`

@Bartel-C8
Copy link
Contributor

dlopen(/Users/xxx/code/test/node_modules/.pnpm/zeromq@6.0.0-beta.16/node_modules/zeromq/prebuilds/darwin-x64/node.napi.glibc.node, 0x0001): Library not loaded: /usr/local/opt/libsodium/lib/libsodium.23.dylib

That is strange. The libsodium is built statically, but it still tries to link to the dylib. See -DWITH_LIBSODIUM_STATIC=ON

const cmake_configure = `cmake -S "${src_dir}" -B ./build ${build_options} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX="${libzmq_install_prefix}" -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_STATIC=ON -DBUILD_TESTS=OFF -DBUILD_SHARED=OFF -DWITH_DOCS=OFF -DWITH_LIBSODIUM=ON -DWITH_LIBSODIUM_STATIC=ON`

That's strange indeed! I also notice now, with my bundled application: If I uninstall libsodium, I get the same error.
I think it is because of the "<!@(pkg-config libsodium --libs)", which was also there for the macos config, which points to the dynamic library of libsodium.

Currently we are not building libsodium ourselves... We are linking to the static library.
Thus, on the machine that builds it (github CI or on a non-compatible pnpm install rebuild), libdsodium is currently required to be available -DWITH_LIBSODIUM=ON -DWITH_LIBSODIUM_STATIC=ON.

I think we have some options here:

We could add an option to build with/without CURVE. Are many people using it? Should the prebuilt binaries be shipped with/without then?

In either way, I think, when needing CURVE, libsodium is preferred, over tweetnacl, because of performance reasons. So we should avoid using tweetnacl as much as possible?

So we can:

@Bartel-C8
Copy link
Contributor

I think it is because the CMake file of libzmq doesn't support linking libsodium statically properly:

https://github.com/zeromq/libzmq/blob/master/builds/cmake/Modules/FindSodium.cmake

It should point to the .a files, as e.g. supported in FindOpenSSL: https://github.com/Kitware/CMake/blob/master/Modules/FindOpenSSL.cmake#L184

https://cmake.org/cmake/help/latest/variable/CMAKE_FIND_LIBRARY_SUFFIXES.html

@l1shen
Copy link

l1shen commented Jan 4, 2023

Same here on M1 Mac. brew install libsodium fixes the installation issue. But error dyld[78762]: missing symbol called throws when require("zeromq").

@Bartel-C8
Copy link
Contributor

Bartel-C8 commented Jan 4, 2023

Same here on M1 Mac. brew install libsodium fixes the installation issue. But error dyld[78762]: missing symbol called throws when require("zeromq").

Could you provide a full log of the installation and the error message? Normally, for macos, when libsodium is installed, it should work fine though. So that's interesting.

@aminya : I think we should strip the libsodium dependency for now and just release a version with tweetnacl?
Or even release CURVE disabled, or provide an install argument for it?

@l1shen
Copy link

l1shen commented Jan 4, 2023

// index.js
const zmq = require("zeromq");
 node index.js
dyld[35815]: missing symbol called
[1]    35815 abort      node index.js

@l1shen
Copy link

l1shen commented Jan 4, 2023

❯ otool -L node_modules/zeromq/build/Release/zeromq.node
node_modules/zeromq/build/Release/zeromq.node (architecture x86_64):
	/usr/local/opt/libsodium/lib/libsodium.23.dylib (compatibility version 27.0.0, current version 27.0.0)
	/usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 1300.36.0)
	/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1319.0.0)
node_modules/zeromq/build/Release/zeromq.node (architecture arm64):
	/usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 1300.36.0)
	/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1319.0.0)

@robdivincenzo
Copy link

robdivincenzo commented Jan 5, 2023

Not sure if this is the right place but I had a similar libsodium issue as @crimx on an M1 macOS running npm install zeromq. Running brew install libsodium did not entirely fix it for me.

The error says it tried /usr/local/lib/libsodium.23.dylib (no such file) but that is the directory homebrew uses for Intel while homebrew's default directory for M1 is actually /opt/homebrew/ according to: https://docs.brew.sh/Installation. And indeed that is where homebrew installs libsodium on my M1 macbook.

As a workaround, creating a symbolic link in homebrew's directory for Intel to the homebrew's directory for M1 allowed it to build successfully: sudo ln -s /opt/homebrew/lib/libsodium.23.dylib /usr/local/lib/libsodium.23.dylib but that isn't ideal.

@aminya
Copy link
Member Author

aminya commented Jan 5, 2023

Reported the issue upstream.
zeromq/libzmq#4484

My temporary solution would be to include the dynamic libraries in the package by copying them beside the .node files in the prebuilds directory. Contributions for doing this are welcome!

@smitalm
Copy link

smitalm commented Jan 24, 2023

@aminya is this still blocking 6.0.0 release? Linked upstream issue was closed zeromq/libzmq#4484

@aminya
Copy link
Member Author

aminya commented Jan 25, 2023

Notified the core members to see what we can do about the upstream issue.

@DonJayamanne

This comment was marked as off-topic.

@denyeo
Copy link

denyeo commented Jun 12, 2023

I've not been able to get the prebuilt binaries on Node 18.16 on Ubuntu 20.04 Focal on WSL 1.2.5.0 (x64), kernel 5.15.90.1. I also tried the node:18.15.0-slim Docker image, but it doesn't get the binaries either.

It looks like all the latest node images are built on Debian 11, which only has glibc 2.31, while zeromq.js 6.0.0 requires glibc 2.33 to build (based on the error messages I get). I believe glibc shouldn't be upgraded, since it's a system package. I'd also prefer using prebuilt binaries instead of building.

Is there a publicly available, recent node image that works for prebuilt binaries? Alpine ones? Otherwise, which Debian/Alpine releases have the glibc/libc6/stdlibc++ versions needed to use the binaries? Just Ubuntu 22.04? @aminya Would be grateful for any information you could provide!

edit: Seems like node:18-alpine does get the binary. Too bad about Debian

@Bartel-C8
Copy link
Contributor

The glibc dependency on linux(/debian) is awful.

I use zeromq.js in a production environment where I don't have any influence on the host OS. Which means I already experienced users which could not open the application because they had an older glibc.
I now build on a Debian 9 ancient docker image to maximise glibc compatibility, which uses v2.24.

It would be awesome if the prebuilt did the same thing, so maximum compatibility is guaranteed by default. Now indeed it's being build by Ubuntu 22, which uses glibc 2.33.
(Which means e.g. that Ubuntu 18 and Ubuntu 20 are not supported, unless built yourself on an older machine).
Would this be possible in the current CI setup @aminya ?

@aminya
Copy link
Member Author

aminya commented Jun 12, 2023

Just to clarify, this issue is not unique to zeromq.js, and it only happens for Linux where the dependencies are shared libraries:
nodejs/node-gyp#2297 (comment)

What we can do is to compile on multiple Ubuntu versions so that it covers all the Glibcxx versions. Sometimes binaries compiled with older Glibcxx work on the newer versions.

@Bartel-C8
Copy link
Contributor

@aminya : Won't the binary always work when compiled with an older glibc version? As newer glibc versions are always backwards compatible?

So best would be to compile (just one?) prebuilt with the (reasonably) oldest glibc version? That way, like in my case, an end-provider should not care about it's build system and glibc version, as automatically the prebuilt with the old glibc compatibility is linked?

Maybe also good to mention in the readme docs that this could be an issue.

@aminya
Copy link
Member Author

aminya commented Jun 13, 2023

The issue is not GlibC. I think you have mistaken GLibCXX for GLIBC here.

@Bartel-C8
Copy link
Contributor

Bartel-C8 commented Jun 13, 2023

Could be, not that familiar with the difference between them, but the error I got was:

node:electron/js2c/asar_bundle:2 Uncaught Error: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by /tmp/.mount-cAKD9Q/resources/app.asar.unpacked/node_modules/zeromq/build/Release/zeromq.node)

So it seems to be GLIBC, no?
When I fixed that one, indeed, the next dependency error was GLIBCXX

Uncaught Error: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.26' not found (required by /tmp/.mount-13pmTw/resources/app.asar.unpacked/node_modules/zeromq/build/Release/zeromq.node)

I see that you have changed the CI to use Ubuntu 20.04, which is a good step in the right direction.

But in the problematic use-case I experienced the system was using these libs:

file /lib/x86_64-linux-gnu/libc.so.6
/lib/x86_64-linux-gnu/libc.so.6: symbolic link to libc-2.27.so

file /usr/lib/x86_64-linux-gnu/libstdc++.so.6
/usr/lib/x86_64-linux-gnu/libstdc++.so.6: symbolic link to libstdc++.so.6.0.25

Ubuntu 18.04.6 LTS e.g. still has glibc 2.27 (https://repology.org/project/glibc/versions). And it just recently dropped LTS state (31 May 2023) , so not unimaginable that people are still using it...

@aminya
Copy link
Member Author

aminya commented Jun 13, 2023

Released v6.0.0-beta.17. Please update your versions, and try again.
https://github.com/zeromq/zeromq.js/releases/tag/v6.0.0-beta.17

@denyeo
Copy link

denyeo commented Jun 14, 2023

Thank you @aminya for the changed prebuild, and @Bartel-C8 for the detailed feedback!

@aminya
Copy link
Member Author

aminya commented Jun 25, 2023

I issued a statement regarding the status of zeromq.js here:

#576

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests