-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da273b7
commit 6453dd9
Showing
3 changed files
with
22 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# NOTE: Haskell/Hardian(it's build system) always refers to Android as "linux_android" but cabal | ||
# ambiguously refer to it as simply "android". | ||
# This causes problem with libraries: | ||
# It installs in "$arch-android-ghc$ghc_version" instead of "$arch-linux_android-ghc$ghc_version" | ||
# where Hadrian tries to find it. | ||
|
||
--- a/Cabal/src/Distribution/Simple/PreProcess.hs 2023-05-23 08:17:29.000000000 +0530 | ||
+++ b/Cabal/src/Distribution/Simple/PreProcess.hs 2023-07-26 16:24:23.651999803 +0530 | ||
@@ -708,7 +708,7 @@ | ||
IRIX -> ["irix"] | ||
HaLVM -> [] | ||
IOS -> ["ios"] | ||
- Android -> ["android"] | ||
+ Android -> ["linux_android"] | ||
Ghcjs -> ["ghcjs"] | ||
Wasi -> ["wasi"] | ||
Hurd -> ["hurd"] |
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