Skip to content
This repository was archived by the owner on May 27, 2020. It is now read-only.

Commit 2493884

Browse files
authored
Mac - Build: Brute force finding of libintl.a to link against (#117)
* Try adding -lintl arg * Search for libintl in homebrew folder
1 parent a85c11f commit 2493884

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

config/discover.ml

+8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ let uname () =
1111
let () = close_in ic in
1212
uname;;
1313

14+
let getLibIntlPath () =
15+
let ic = Unix.open_process_in "find /usr/local/Cellar -name libintl.a -print 2>/dev/null" in
16+
let path = input_line ic in
17+
let () = close_in ic in
18+
let () = prerr_endline ("libintl path: " ^ path) in
19+
path;;
20+
1421
let get_os =
1522
match Sys.os_type with
1623
| "Win32" -> Windows
@@ -57,6 +64,7 @@ let flags =
5764
@ cclib("-lXt")
5865
| _ -> []
5966
@ ccopt(libPath)
67+
@ cclib(getLibIntlPath())
6068
@ cclib("-lvim")
6169
@ cclib("-lm")
6270
@ cclib("-lncurses")

0 commit comments

Comments
 (0)