-
Notifications
You must be signed in to change notification settings - Fork 280
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
MinGW Compile fix #329
Merged
Merged
MinGW Compile fix #329
Changes from 24 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
53209fc
Added support for mingw64 (gcc 6.3.0)
msbroadf a5b9beb
Fixed mingw32/64 issue
msbroadf 7ee1669
be more verbose (#312)
weinrank e6d4743
Improve and of ICMP messages on Windows.
tuexen b8e97a7
Fix broken links, Make URLs' protocols consistent (#315)
tillz e8e39b5
Backport https://svnweb.freebsd.org/base?view=revision&revision=340783
tuexen ab105a0
Improve input validation for the IPPROTO_SCTP level socket options
tuexen 8ad82a0
Allow sending on demand SCTP HEARTBEATS only in the ESTABLISHED state.
tuexen 2672aab
Fix cross-build linux->mingw (#320)
orgads 127801c
merged mingw PR with upstream
weinrank 8e6a666
Fix compile error due to merge mistake.
weinrank bbeb7d4
test commit
weinrank ab7e628
Add MinGW and MinGW64 support
weinrank b8a1318
MinGW support, polishing
weinrank 016d685
Merge remote-tracking branch 'upstream/master'
weinrank 7f7c325
Merge branch 'master' into mingw
weinrank d92bca9
Sanitize non C-style comments
weinrank 967b6f9
Merge branch 'mingw' of https://github.com/weinrank/usrsctp into mingw
weinrank 1ceeca9
Revert uint32_t casting for htonl
weinrank 111e0ca
Ignore wformat errors on GCC + MinGW platforms
weinrank 0f9b957
Merge remote-tracking branch 'upstream/master'
weinrank 40590d7
Merge branch 'master' into mingw
weinrank c561c0c
Merge remote-tracking branch 'upstream/master' into mingw
weinrank cc4fd05
Fix compile errors for MinGW
weinrank a49f277
Addressed Michaels comments and improved verbosity
weinrank File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't insert an
ifdef
here. Let us callatomic_init()
in any case for the userland stack.Please replace in
user_atomic.h
by
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot!