mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
3fba3bf53f
Had to pull in yet unreleased patch to avoid persistent memory alocator on darwin as the hack in release relies on x86_64 emulation for aarch64 ports. changelogs: - 5.2.1: https://lists.gnu.org/archive/html/info-gnu/2022-11/msg00008.html - 5.2.0: https://lists.gnu.org/archive/html/info-gnu/2022-09/msg00003.html
32 lines
909 B
Diff
32 lines
909 B
Diff
https://git.savannah.gnu.org/cgit/gawk.git/patch/?id=e0b7737930f8a677d3c509f8ce72b9130965ec0a
|
|
--- a/m4/pma.m4
|
|
+++ b/m4/pma.m4
|
|
@@ -23,15 +23,18 @@ then
|
|
[LDFLAGS="${LDFLAGS} -no-pie"
|
|
export LDFLAGS])
|
|
;;
|
|
- *darwin*)
|
|
- # 23 October 2022: See README_d/README.macosx for
|
|
- # the details on what's happening here. See also
|
|
- # the manual.
|
|
-
|
|
- # Compile as Intel binary all the time, even on M1.
|
|
- CFLAGS="${CFLAGS} -arch x86_64"
|
|
- LDFLAGS="${LDFLAGS} -Xlinker -no_pie"
|
|
- export CFLAGS LDFLAGS
|
|
+ *darwin*)
|
|
+ # 27 November 2022: PMA only works on Intel.
|
|
+ case $host in
|
|
+ x86_64-*)
|
|
+ LDFLAGS="${LDFLAGS} -Xlinker -no_pie"
|
|
+ export LDFLAGS
|
|
+ ;;
|
|
+ *)
|
|
+ # disable on all other macOS systems
|
|
+ use_persistent_malloc=no
|
|
+ ;;
|
|
+ esac
|
|
;;
|
|
*cygwin* | *CYGWIN* | *solaris2.11* | freebsd13.* | openbsd7.* )
|
|
true # nothing do, exes on these systems are not PIE
|