-
Notifications
You must be signed in to change notification settings - Fork 490
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
Windows version #1540
Merged
Merged
Windows version #1540
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
e884e13
Merge pull request #1 from algorand/master
mxmauro ad1cf07
Merge pull request #2 from algorand/master
mxmauro 0cc6f1c
Source code modifications to make them compilable under Windows
mxmauro 12d0f07
Scripts to setup development environment under MSYS2
mxmauro f24f931
Moved dll dependency copy at the end of setup script
mxmauro 627e07d
Fixed Linux compilation issues.
mxmauro 5eeb7f5
Removed raise exception after cgo_painc call
mxmauro fb401cb
Removed dummy comments
mxmauro df38db3
Added comments to exported functions
mxmauro 8235d7c
Fixed build exception on intended target OS
mxmauro e40994f
Added common functions for all OSes
mxmauro 71aa8ad
Fixed code formatting
mxmauro 981a7d5
Added missing return at end of function
mxmauro f6cd990
Removed underscore from variables
mxmauro 5f6538e
Changed shell engine to newer bash
mxmauro ae02e07
Added a common function to get process running times.
mxmauro 5dbcda3
Added log and comment because of lack of mlockall functionality on Wi…
mxmauro 08fb191
Removed indentation
mxmauro eb48485
Merged Windows dependencies installer script with configure_dev.sh
mxmauro d4de8ab
Updated Windows environment setup instructions
mxmauro 1d45ba4
Merge remote-tracking branch 'upstream/master'
mxmauro 8d3db9a
Merge branch 'master' into windows-version
mxmauro 41087ef
Fixed wrong change of SIGKILL signal to SIGTERM
mxmauro c1a10ec
Fixed typo configure dev script
mxmauro 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
Removed indentation
- Loading branch information
commit 08fb191eaec68978c936dd36d25a524eab21c447
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
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.
Instead of evaluating
ifneq (, $(findstring MINGW,$(UNAME)))
every time, would be clearer to make a boolean constant for it, and check it here and elsewhere.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.
Yes, may be. Bash and Linux is not my strong suite. :)