-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aditya Alok <[email protected]>
- Loading branch information
1 parent
2f235bc
commit f749791
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
packages/ghc-cross/always-use-pic-on-android-for-dynexec.patch
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- ghc-9.12.1/compiler/GHC/Driver/DynFlags.hs 2024-12-16 00:59:45.000000000 +0530 | ||
+++ ghc-9.12.1.mod/compiler/GHC/Driver/DynFlags.hs 2025-01-04 19:52:30.600705081 +0530 | ||
@@ -1311,6 +1311,8 @@ | ||
--- ghc-9.10.1/compiler/GHC/Driver/DynFlags.hs 2024-05-10 10:35:48.000000000 +0530 | ||
+++ ghc-9.10.1.mod/compiler/GHC/Driver/DynFlags.hs 2025-01-06 18:52:56.790692416 +0530 | ||
@@ -1325,6 +1325,8 @@ | ||
(OSDarwin, ArchAArch64) -> [Opt_PIC] | ||
(OSLinux, ArchAArch64) -> [Opt_PIC, Opt_ExternalDynamicRefs] | ||
(OSLinux, ArchARM {}) -> [Opt_PIC, Opt_ExternalDynamicRefs] | ||
+ (OSLinux, ArchX86_64) -> [Opt_PIC, Opt_ExternalDynamicRefs] | ||
+ (OSLinux, ArchX86) -> [Opt_PIC, Opt_ExternalDynamicRefs] | ||
(OSLinux, ArchRISCV64 {}) -> [Opt_PIC, Opt_ExternalDynamicRefs] | ||
(OSOpenBSD, ArchX86_64) -> [Opt_PIC] -- Due to PIE support in | ||
-- OpenBSD since 5.3 release | ||
-- (1 May 2013) we need to |
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 |
---|---|---|
|
@@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://www.haskell.org/ghc/ | |
TERMUX_PKG_DESCRIPTION="The Glasgow Haskell Compiler" | ||
TERMUX_PKG_LICENSE="custom" | ||
TERMUX_PKG_MAINTAINER="Aditya Alok <[email protected]>" | ||
TERMUX_PKG_VERSION=9.12.1 | ||
TERMUX_PKG_VERSION=9.10.1 | ||
TERMUX_PKG_SRCURL="https://downloads.haskell.org/~ghc/$TERMUX_PKG_VERSION/ghc-$TERMUX_PKG_VERSION-src.tar.xz" | ||
TERMUX_PKG_SHA256=4a7410bdeec70f75717087b8f94bf5a6598fd61b3a0e1f8501d8f10be1492754 | ||
TERMUX_PKG_SHA256=bf386a302d4ee054791ffd51748900f15d71760fd199157922d120cc1f89e2f7 | ||
TERMUX_PKG_DEPENDS="libiconv, libffi, libgmp, libandroid-posix-semaphore, bionic-host" | ||
TERMUX_PKG_BUILD_IN_SRC=true | ||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" | ||
|