mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
document meson apple workaround
workaround for https://github.com/mesonbuild/meson/issues/11165
This commit is contained in:
parent
58ca3af360
commit
523a42e6f0
8
INSTALL
8
INSTALL
@ -108,3 +108,11 @@ would call:
|
||||
Getting perl scripting to work needs a few things:
|
||||
|
||||
- TODO
|
||||
|
||||
|
||||
Apple MacOS / Darwin
|
||||
|
||||
At the time of writing, meson has an open issue with correctly linking
|
||||
libraries on macos.
|
||||
|
||||
See docs/meson-macos-ar.txt for a workaround.
|
||||
|
6
docs/meson-macos-ar.txt
Normal file
6
docs/meson-macos-ar.txt
Normal file
@ -0,0 +1,6 @@
|
||||
;; manual workaround for meson bug https://github.com/mesonbuild/meson/issues/11165
|
||||
;; fixes compilation with meson on apple macos
|
||||
;; usage: meson --native-file ./docs/meson-macos-ar.txt ...
|
||||
|
||||
[binaries]
|
||||
ar = ['/bin/sh', '-c', 'ar=${AR:-ar}; ranlib=${RANLIB:-ranlib -c -}; case "x$1" in xcsr*) $ar "$@" && $ranlib "$2" || exit $?; ;; *) exec $ar "$@"; ;; esac;', 'ar']
|
Loading…
Reference in New Issue
Block a user