This repository was archived by the owner on Nov 16, 2022. It is now read-only.
Allow cross-building Windows binaries from Linux#36
Open
friedkiwi wants to merge 6 commits intobarry65536:masterfrom
Open
Allow cross-building Windows binaries from Linux#36friedkiwi wants to merge 6 commits intobarry65536:masterfrom
friedkiwi wants to merge 6 commits intobarry65536:masterfrom
Conversation
added 6 commits
October 27, 2019 12:52
Added the +x flag to the perl scripts to enable building on non-NT platforms.
In modern Windows SDKs, InitGuid.h is deprecated in favour of guiddef.h. Mingw-w64 also follows this change.
Misused the new header, fixed in this commit.
This file prevents binaries and autogenerated files from polluting the build.
This patch allows the cross-compilation from Linux, which would later on enable e.g. CI integration.
Fixed missing shell statement to determine host.
dinkc64
reviewed
Nov 23, 2019
| @@ -3,7 +3,7 @@ | |||
| #include "aud_dsp.h" | |||
Collaborator
There was a problem hiding this comment.
Hi Yvan, we've moved the project over to fbneo - you should submit your PR there:
https://github.com/finalburnneo/FBNeo
Unfortunately, we can't accept this specific one, because we need to retain backwards compatibility with mingw gcc 3.4.5 (2 of the active devs use this one) - so a little ifdef-action will need to be used :)
best regards,
- dink
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 series of patches allow the cross-building using mingw32/64 from Linux (tested on Ubuntu 18.04). This would allow the easy integration of e.g. CI/CD at a later stage.