-
Notifications
You must be signed in to change notification settings - Fork 100
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
Shared library is missing executable bit #109
Comments
setuptools-rust/setuptools_rust/build.py Lines 328 to 332 in 991de4c
|
tiran
added a commit
to tiran/setuptools-rust
that referenced
this issue
Feb 10, 2021
Fixes: PyO3#109 Signed-off-by: Christian Heimes <[email protected]>
tiran
added a commit
to tiran/setuptools-rust
that referenced
this issue
Feb 10, 2021
Shared libraries on Linux, macOS, and other Unix-like operating systems require the executable bit, too. Fixes: PyO3#109 Signed-off-by: Christian Heimes <[email protected]>
tiran
added a commit
to tiran/setuptools-rust
that referenced
this issue
Feb 11, 2021
Shared libraries on Linux, macOS, and other Unix-like operating systems require the executable bit, too. Fixes: PyO3#109 Signed-off-by: Christian Heimes <[email protected]>
davidhewitt
pushed a commit
that referenced
this issue
Feb 11, 2021
* Shared libraries also need executable bit Shared libraries on Linux, macOS, and other Unix-like operating systems require the executable bit, too. Fixes: #109 Signed-off-by: Christian Heimes <[email protected]> * Add changelog entry Signed-off-by: Christian Heimes <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RustExtension()
creates a shared library without executable bit. Shared library on Linux, macOS, and probably other Unix-like operation systems must have executable bit. Kernel may refuse to mmap() shared libraries asPROT_EXEC
.See #106
The text was updated successfully, but these errors were encountered: