-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite
gen_link_flags
in OCaml (#1189)
- Loading branch information
Showing
3 changed files
with
55 additions
and
57 deletions.
There are no files selected for viewing
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
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,49 @@ | ||
let pkgconfig lib archive = | ||
let cmd = Fmt.str "pkg-config %s --variable libdir" lib in | ||
let output = Unix.open_process_in cmd |> input_line in | ||
Fmt.str "%s/%s" output archive | ||
|
||
let pp_lib ppf s = Fmt.pf ppf "-cclib %s" s | ||
|
||
let () = | ||
let mixed_flags = ["-noautolink"] in | ||
(* Note: for OCaml 5, use -lcamlstrnat and -lunixnat and mind zlib | ||
https://github.com/ocaml/ocaml/issues/12562 *) | ||
let mixed_cclib = [ | ||
"-lstdcompat_stubs"; | ||
"-lcamlzip"; | ||
"-lzarith"; | ||
"-lcamlstr"; | ||
"-lunix"; | ||
"-lz" | ||
] | ||
in | ||
let libs = ["gmp"] in | ||
let link_mode = Sys.argv.(1) and os = Sys.argv.(2) in | ||
let flags, cclib = | ||
match link_mode, os with | ||
| "dynamic", _ -> [], [] | ||
| "static", "linux" -> [], ["-static"; "-no-pie"] | ||
| "mixed", "linux" -> | ||
let cclib = mixed_cclib @ List.map (fun s -> "-l" ^ s) libs in | ||
mixed_flags, "-Wl,-Bdynamic" :: "-Wl,-Bstatic" :: cclib | ||
| "mixed", "macosx" -> | ||
let cclib = mixed_cclib @ | ||
List.map | ||
(fun lib -> | ||
let archive = | ||
if Stdcompat.String.starts_with | ||
~prefix:"lib" lib then | ||
Fmt.str "%s.a" lib | ||
else | ||
Fmt.str "lib%s.a" lib | ||
in | ||
pkgconfig lib archive | ||
) libs | ||
in | ||
mixed_flags, cclib | ||
| _ -> Fmt.invalid_arg "unsupported mode %s and OS %s" link_mode os | ||
in | ||
Fmt.pr "@[(-linkall %a %a)@]" | ||
Fmt.(list ~sep:sp string) flags | ||
Fmt.(list ~sep:sp pp_lib) cclib; |