Add workarounds for aarch64 cross-compilation#54
Draft
georgefst wants to merge 1 commit into
Draft
Conversation
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.
With this branch,
./Build.hs --target=aarch64-none-linux-gnuactually works.The main thing that needs fixing before we can merge this is to split up the Elm generation in to a separate component, not directly depended on by the main executable. We'll need a
monpad-typescore library, used by both. This is a better design anyway, and will allow us to properly integrate the Elm generation in to the build script rather than running it manually when necessary as we currently do. When doing this refactor, we should bear in mind the long-term goal of porting the frontend from Elm to Haskell (blocked on dmjio/miso#724).There are a few other ugly things here for which we should work out better fixes, such as avoiding embedding the static files, disabling serving of other assets (
serveDirectoryWebApp), and using slightly different evdev types from Dhall.