From 4f1b202cf484d6d2e65c54f646c9133dbf5373cc Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 7 Mar 2016 11:55:08 -0500 Subject: driver: added context initialization for -prefer-pic and -prefer-non-pic. --- src/driver/slbt_driver_ctx.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src') diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index d7e8c14..1567b92 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -201,6 +201,14 @@ int slbt_get_driver_ctx( case TAG_OUTPUT: cctx.output = entry->arg; break; + + case TAG_PREFER_PIC: + cctx.drvflags |= SLBT_DRIVER_PRO_PIC; + break; + + case TAG_PREFER_NON_PIC: + cctx.drvflags |= SLBT_DRIVER_ANTI_PIC; + break; } } else nunits++; -- cgit v1.2.3