diff options
author | midipix <writeonce@midipix.org> | 2019-02-20 18:43:32 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-02-20 23:31:15 -0500 |
commit | 113d3fcaa8e7c14c65e8b45e0ab1baf93cb030a8 (patch) | |
tree | 054385cfa585c0f07b4bb6d62187c5312a50e767 /include | |
parent | c6570d037a1def5d7d25d832b28ca3ce7398657c (diff) | |
download | mdso-113d3fcaa8e7c14c65e8b45e0ab1baf93cb030a8.tar.bz2 mdso-113d3fcaa8e7c14c65e8b45e0ab1baf93cb030a8.tar.xz |
driver: added --crc support: output computed crc32|64 of exported symbols.
Diffstat (limited to 'include')
-rw-r--r-- | include/mdso/mdso.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mdso/mdso.h b/include/mdso/mdso.h index 160f89f..9d40ed3 100644 --- a/include/mdso/mdso.h +++ b/include/mdso/mdso.h @@ -35,6 +35,8 @@ extern "C" { #define MDSO_DRIVER_QUAD_PTR 0x0040 #define MDSO_DRIVER_GENERATE_ASM 0x0100 #define MDSO_DRIVER_GENERATE_OBJECTS 0x0200 +#define MDSO_DRIVER_COMPUTE_CRC32 0x0400 +#define MDSO_DRIVER_COMPUTE_CRC64 0x0800 #define MDSO_DRIVER_ANNOTATE_ALWAYS 0x1000 #define MDSO_DRIVER_ANNOTATE_NEVER 0x2000 @@ -159,6 +161,8 @@ mdso_api int mdso_create_implib_archive(const struct mdso_driver_ctx *); mdso_api int mdso_create_implib_sources(const struct mdso_driver_ctx *); mdso_api int mdso_create_implib_objects(const struct mdso_driver_ctx *); mdso_api int mdso_output_export_symbols(const struct mdso_driver_ctx *, const struct mdso_unit_ctx *); +mdso_api int mdso_output_expsyms_crc32 (const struct mdso_driver_ctx *, const struct mdso_unit_ctx *); +mdso_api int mdso_output_expsyms_crc64 (const struct mdso_driver_ctx *, const struct mdso_unit_ctx *); mdso_api int mdso_output_error_record (const struct mdso_driver_ctx *, const struct mdso_error_info *); mdso_api int mdso_output_error_vector (const struct mdso_driver_ctx *); |