Module Build_path_prefix_map
Rewrite paths for reproducible builds
Warning: this module is unstable and part of compiler-libs.
val encode_prefix : path_prefix -> stringval decode_prefix : string -> (path_prefix, error_message) Stdlib.result
type pair={target : path_prefix;source : path_prefix;}
val encode_pair : pair -> stringval decode_pair : string -> (pair, error_message) Stdlib.result
type map= pair option list
val encode_map : map -> stringval decode_map : string -> (map, error_message) Stdlib.resultval rewrite_opt : map -> path -> path optionrewrite_opt map pathtries to find a source inmapthat is a prefix of the inputpath. If it succeeds, it replaces this prefix with the corresponding target. If it fails, it just returnsNone.