Add a new target which generates a C-only API shared library, compatible with MSVC#209
Closed
fabiocannizzo wants to merge 8 commits intonumpy:mainfrom
Closed
Add a new target which generates a C-only API shared library, compatible with MSVC#209fabiocannizzo wants to merge 8 commits intonumpy:mainfrom
fabiocannizzo wants to merge 8 commits intonumpy:mainfrom
Conversation
ee1ad57 to
1e28e47
Compare
483b4de to
8f598b1
Compare
This can be compiled for both Linux and Windows. If the chosen target is a Windows DLL, the library is compatible with MSVC and It is self-contained, i.e. there are no other DLL dependencies (other than the kernel) and exceptions and memory allocations do not cross the DLL boundary. Signed-off-by: Fabio Cannizzo <fabio.cannizzo@gmail.com>
Signed-off-by: Fabio Cannizzo <fabio.cannizzo@gmail.com>
Signed-off-by: Fabio Cannizzo <fabio.cannizzo@gmail.com>
…ments, to prevent registers spill to the stack in Windows ABI mode Signed-off-by: Fabio Cannizzo <fabio.cannizzo@gmail.com>
Author
|
Apologies for the multiple rebases. They are just minimal fixes in the first commit to ensure successful compilation on all platforms. |
Signed-off-by: Fabio Cannizzo <fabio.cannizzo@gmail.com>
…he DLL + various fixes
Signed-off-by: Fabio Cannizzo <fabio.cannizzo@gmail.com>
Author
|
This PR is now replaced by #211 which makes a few minor improvements and rationalize the commits. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This can be compiled for both Linux and Windows.
If the chosen target is a Windows DLL, the library is compatible with MSVC and It is self-contained, i.e. there are no other DLL dependencies (other than the kernel) and exceptions and memory allocations do not cross the DLL boundary.