summaryrefslogtreecommitdiffhomepage
path: root/src/driver/mdso_driver_ctx.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-02-20 18:43:32 -0500
committermidipix <writeonce@midipix.org>2019-02-20 23:31:15 -0500
commit113d3fcaa8e7c14c65e8b45e0ab1baf93cb030a8 (patch)
tree054385cfa585c0f07b4bb6d62187c5312a50e767 /src/driver/mdso_driver_ctx.c
parentc6570d037a1def5d7d25d832b28ca3ce7398657c (diff)
downloadmdso-113d3fcaa8e7c14c65e8b45e0ab1baf93cb030a8.tar.bz2
mdso-113d3fcaa8e7c14c65e8b45e0ab1baf93cb030a8.tar.xz
driver: added --crc support: output computed crc32|64 of exported symbols.
Diffstat (limited to 'src/driver/mdso_driver_ctx.c')
-rw-r--r--src/driver/mdso_driver_ctx.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/driver/mdso_driver_ctx.c b/src/driver/mdso_driver_ctx.c
index f4a83c1..59450ac 100644
--- a/src/driver/mdso_driver_ctx.c
+++ b/src/driver/mdso_driver_ctx.c
@@ -250,6 +250,17 @@ int mdso_get_driver_ctx(
cctx.drvflags |= MDSO_DRIVER_GENERATE_OBJECTS;
break;
+ case TAG_CRC:
+ if (!(strcmp(entry->arg,"64"))) {
+ cctx.drvflags &= ~(uint64_t)MDSO_DRIVER_COMPUTE_CRC32;
+ cctx.drvflags |= MDSO_DRIVER_COMPUTE_CRC64;
+ } else {
+ cctx.drvflags &= ~(uint64_t)MDSO_DRIVER_COMPUTE_CRC64;
+ cctx.drvflags |= MDSO_DRIVER_COMPUTE_CRC32;
+ }
+
+ break;
+
case TAG_QUAD_PTR:
machine = entry;