-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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: don't preset CMAKE_SYSTEM_NAME #4342
Conversation
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.
Assuming it does not break MoroccanMalinois' changes.
I think there is no such danger presently. The way I understand it, one would have to make a new Makefile target and build translations natively before building Monero itself to take advantage of MorrocanMalinois' crosscompiling changes. But maybe there is still something I'm missing. |
Let it be autodiscovered instead to avoid cmake thinking it's crosscompiling builds where host = target. This resolves a cmake configure error in MSYS2 caused by CMAKE_CROSSCOMPILING checks in monero-project#4294.
67584ab
to
6929b52
Compare
I force pushed a change that will save anyone making a crosscompile Windows target from having to add |
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.
Reviewed
6929b52 Windows: don't preset CMAKE_SYSTEM_NAME (iDunk5400)
Let it be autodiscovered instead to avoid cmake thinking it's crosscompiling builds where host = target. This resolves a cmake configure error in MSYS2 caused by CMAKE_CROSSCOMPILING checks in #4294