-
Notifications
You must be signed in to change notification settings - Fork 92
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
Cannot use R or Python in release builds due to libsodium (macOS only) #154
Comments
I can start investigating this later. |
That's presumedly coming from here, in zeromq: It's not clear to me why we're trying to link to both a static and dynamic copy of libzmq? That shouldn't be necessary? |
Ah, I think I know what's going on...
But that folder has:
And when linking, because both dynamic and static libraries are available, the linker will prefer the dynamic library. If you really want to link with a static library, it's better to just provide the path to the static library directly. |
I've filed an issue upstream at zeromq/zeromq.js#557. |
Also, here's the ugly |
I think I have something figured out:
|
Well, I thought I did! I had an idea -- let's use git submodules, with some local patches! And then:
This is after already running into other random pieces of submodule friction as well. 😵 |
Merge pull request #154 from posit-dev/shift-enter -------------------- Commit message for posit-dev/positron-python@577d59d: remove shift+enter keybinding Authored-by: Isabel Zimmerman <[email protected]> Signed-off-by: Isabel Zimmerman <[email protected]>
Merge pull request #154 from posit-dev/shift-enter -------------------- Commit message for posit-dev/positron-python@577d59d: remove shift+enter keybinding Authored-by: Isabel Zimmerman <[email protected]> Signed-off-by: Isabel Zimmerman <[email protected]>
Currently the Jupyter Adapter cannot start in release builds because it includes a hardcoded reference to libsodium at the path used in the build machine.
Possible solutions:
The text was updated successfully, but these errors were encountered: